:root {
  --ink: #0a2540;
  --royal: #2563eb;
  --purple: #7c3aed;
  --teal: #14b8a6;
  --bg: #f8fafc;
  --dark: #0b1220;
  --dark2: #111827;
  --card: #ffffff;
  --line: rgba(10, 37, 64, 0.09);
  --line-dark: rgba(255, 255, 255, 0.1);
  --muted: #5b6b82;
  --muted-dark: #c1d8ffe3;
  --grad-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-2: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
  --grad-3: linear-gradient(135deg, #7c3aed 0%, #14b8a6 100%);
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(10, 37, 64, 0.14);
  --shadow-lg: 0 24px 60px -16px rgba(10, 37, 64, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
}

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


body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mono {
  font-family: "JetBrains Mono", monospace;
}

.container{
    max-width: 90%!important;
  }

 .col-lg-4 {
    width: 32%!important;
  }
  .col-lg-3 {
      width: 24%!important;
  }

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none!important;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  position: relative;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--royal);
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--teal);
}
.eyebrow.on-dark::before {
  background: var(--teal);
}







.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 9999;
  background: var(--grad-1);
}

.scroll-to-top-btn:hover {
  background: var(--grad-1);
}




/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);

  transition: 0.4s ease;

  /* display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap; */
}
.btn-primary {
  background: var(--grad-1);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.6);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid var(--line-dark) !important;

  /* display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);

  transition: 0.4s ease; */
}
.btn-ghost-dark:hover {
  border-color: #fff !important;
  transform: translateY(-2px);

  /* transform: translateY(-6px);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.35),
    inset 0 2px 2px rgba(255, 255, 255, 0.5); */
}
.btn-white {
  background: #fff;
  color: var(--dark2);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
}
.btn-white:hover {
  transform: translateY(-2px);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s ease;
}
.nav-inner {
  width: 100%;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  transition: all 0.35s ease;
}
.nav.scrolled .nav-inner {
  width: 100%;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  border: 1px solid rgba(10, 37, 64, 0.06);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .btn {
  padding: 11px 22px;
  font-size: 14px;
}
.hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.14) 0%,
    rgba(124, 58, 237, 0.06) 45%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 .grad-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta div {
  font-size: 13px;
  color: var(--muted);
}
.hero-meta strong {
  display: block;
  font-family: "Manrope";
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.hero-visual {
  position: relative;
}
.thread-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  border-radius: 30px;
}
.thread-card img {
  width: 100%;
  object-fit: cover;
  height: 550px;
  border-radius: 30px;
}
/* Marquee */
.marquee-wrap {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 32s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-family: "JetBrains Mono";
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section headers */
.section-head {
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section-pad {
  padding: 120px 0;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.industry-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.icon-badge {
  margin: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
}
.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--royal);
}
.industry-card span {
  font-size: 17px;
  font-weight: 600;
}

/* Services */
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.service-row:nth-child(even) .service-visual {
  order: 2;
}
.service-row:nth-child(even) .service-copy {
  order: 1;
}
.service-tag {
  font-family: "JetBrains Mono";
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.service-copy h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.service-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0px;
}
.tag-list li {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
}
.service-visual {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 20px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Process */
.process-dark {
  background: var(--dark2);
  color: #fff;
  padding: 130px 0;
}
.process-dark .section-head h2,
.process-dark .section-head p {
  color: #fff;
}
.process-dark .section-head p {
  color: var(--muted-dark);
}
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 60px;
}
.process-line {
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--purple), var(--teal));
  z-index: 0;
  opacity: 0.5;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.process-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-dot svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.process-step h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Manrope";
}
.process-step p {
  color: var(--muted-dark);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pf-thumb {
  width: 100%;
  object-fit: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pf-thumb img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.pf-body {
  padding: 22px 24px 26px;
}
.pf-industry {
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 8px;
  display: block;
}
.pf-body h4 {
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  min-height: 45px;
  color: #0a2540;
}
.pf-body p {
  text-decoration: none;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0px;
  height: 140px;
}
.pf-result {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.pf-result div {
  font-size: 11.5px;
  color: var(--muted);
}
.pf-result strong {
  display: block;
  font-family: "Manrope";
  font-size: 17px;
  color: var(--ink);
}

/* Case Study */
.case-study {
  background: linear-gradient(180deg, #fff, var(--bg));
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: 64px;
  box-shadow: var(--shadow-lg);
}
.cs-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.cs-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.cs-stats div strong {
  font-family: "Manrope";
  font-size: 30px;
  display: block;
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs-stats div span {
  font-size: 12.5px;
  color: var(--muted);
}
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.cs-col h5 {
  font-family: "JetBrains Mono";
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.cs-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.cs-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.cs-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
}
.cs-step .num {
  font-family: "JetBrains Mono";
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.cs-step h6 {
  font-size: 15px;
  font-family: "Manrope";
  font-weight: 700;
  margin-bottom: 6px;
}
.cs-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  transition: 0.3s;
}
.why-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card h4 {
  font-size: 16.5px;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Results */
/* .results {
  background: var(--dark2);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/images/cliend.jpg);
  object-fit: cover;
} */

.results {
  background:
    linear-gradient(rgba(0, 18, 58, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/excited-businessman-calling-partner-meeting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;

  /* background-image: url("/images/excited-businessman-calling-partner-meeting.jpg"); */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 2; */
}

.results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
}
.result-cell {
  background: #111827ab;
  padding: 44px 36px;
}
.result-cell strong {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 44px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.result-cell span {
  font-size: 18px;
  color: var(--muted-dark);
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg {
  width: 15px;
  height: 15px;
  fill: var(--teal);
}
.testi-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 13px;
}
.testi-person h6 {
  font-size: 15px;
  font-weight: 700;
}
.testi-person span {
  font-size: 12px;
  color: var(--muted);
}

/* Tech stack */
.stack-groups {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.stack-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stack-row .label {
  font-family: "JetBrains Mono";
  font-size: 12px;
  color: var(--muted);
  width: 110px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* Final CTA */
.final-cta {
  /* background: url(/images/success.png); */
  /* background-image:
    linear-gradient(rgba(0, 0, 0, 0.63) 055), url("/images/cliend.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  height: 450px;
  border-radius: 36px;
  margin: 0 32px 0;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden; */

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.57)),
    url("../images/cliend.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 450px;
  border-radius: 36px;
  margin: 0 32px;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.28),
    #000000a1 55%
  );
}
.final-cta h2 {
  position: relative;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 52px);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.final-cta p {
  position: relative;
  color: var(--muted-dark);
  font-size: 17px;
  margin-bottom: 44px;
}
.final-cta .cta-row {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-col h5 {
  font-size: 25px;
  font-weight: 700;
  font-family: "JetBrains Mono";
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col li {
  margin-bottom: 11px;
}
.footer-col ul{
  padding-left: 10px;
}
.footer-col a {
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--royal);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.service-visual {
  height: 315px;
}


@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 150px 0 70px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0;
  }
  .col-lg-3 {
  width: 47% !important;
}
  .service-row:nth-child(even) .service-visual,
  .service-row:nth-child(even) .service-copy {
    order: 0;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 36px;
  }
  .process-line {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .case-study {
    padding: 36px 24px;
    border-radius: 22px;
  }
.nav-cta {
  display: none;
}

}

@media (max-width: 870px) {
 .col-lg-4 {
    flex: 0 0 auto;
    width: 32%!important;
  }
.col-lg-4 {
    flex: 0 0 auto;
    width: 48% !important;
  }
.col-lg-3 {
  width: 47% !important;
}


}

@media (max-width: 640px) {
  .col-lg-4 {
    width: 100% !important;
  }
  .col-lg-3 {
  width: 100% !important;
}
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .cs-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta {
    margin: 0 16px;
    padding: 60px 24px;
  }
  .container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
