@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&family=Roboto:wght@400;500;700;900&display=swap");

:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f8fafc;
  --panel: #ffffff;
  --blue: #0b4eea;
  --blue-dark: #0735a8;
  --cyan: #24a0ff;
  --orange: #0b4eea;
  --red: #0735a8;
  --green: #25d366;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(16, 24, 40, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--red); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; font-family: "Inter", Arial, Helvetica, sans-serif; }
h1 { font-size: clamp(25px, 6vw, 50px); }
h2 { font-size: clamp(18px, 4vw, 30px); }
h3 { font-size: 22px; }
p { color: var(--muted); margin: 0; }
.lead { font-size: 19px; color: #475467; max-width: 720px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  gap: 8px;

  position: relative;
  overflow: hidden;

  transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      color 0.3s ease,
      border-color 0.3s ease;
}
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 12px 26px rgba(11,78,234,.22); }
.btn.secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn.dark { background: var(--ink); color: #fff; }

/* Global Button Hover */

.btn:hover{
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 18px 40px rgba(11,78,234,.25);
}

.btn:active{
    transform: translateY(-1px) scale(0.98);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}
.brand img { width: 225px; height: auto; }
.menu { display: flex; align-items: center; gap: 8px; }
.menu a, .drop-btn {
  border: 0;
  background: transparent;
  padding: 12px 10px;
  font: inherit;
  font-weight: 700;
  color: #344054;
  border-radius: 6px;
}
.menu a:hover, .drop:hover .drop-btn, .menu a.active { background: #eef4ff; color: var(--blue); }
.drop { position: relative; }
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 275px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 8px;
  display: none;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: grid; }
.drop-menu a { display: block; padding: 10px 12px; }
.hamburger { display: none; border: 1px solid var(--line); background: #fff; border-radius: 6px; width: 44px; height: 44px; font-size: 22px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(11,78,234,.16), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(36,160,255,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
  border-bottom: 1px solid #dbe7ff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,78,234,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(11,78,234,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 72px 0 54px;
}
.hero-copy { display: grid; gap: 24px; }
.hero-actions, .section-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfddff; margin-top: 18px; }
.metric { padding: 20px 18px 0 0; }
.metric strong { display: block; font-size: 30px; }
.hero-visual {
  min-height: 560px;
  display: grid;
  align-items: center;
}
.hero-stack { display: grid; gap: 18px; }
.tech-video {
  position: relative;
  min-height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: #071024;
  border: 1px solid #224ca6;
  box-shadow: var(--shadow);
}
.tech-video canvas { width: 100%; height: 100%; display: block; min-height: 290px; }
.video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  align-items: end;
}
.video-label b { font-family: "Inter", Arial, sans-serif; font-size: 20px; }
.video-label span { color: #c7d7ff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 800; }
.founder-hero, .cutout-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 54%, rgba(11,78,234,.18), transparent 38%),
    linear-gradient(180deg, transparent, rgba(11,78,234,.08));
}
.founder-hero::before, .cutout-panel::before {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 58%;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(135deg, rgba(11,78,234,.24), rgba(36,160,255,.12));
  filter: blur(.2px);
}
.founder-hero img, .cutout-panel img {
  position: relative;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 40px rgba(7,16,36,.22));
}
.hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 6px;
  box-shadow: 0 16px 45px rgba(7,16,36,.12);
}
.hero-note b { color: var(--ink); font-size: 18px; }
.hero-note span { color: var(--muted); }
.brand-board {
  background: #111827;
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.campaign-card {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.bars { display: grid; gap: 9px; }
.bar { height: 10px; border-radius: 99px; background: #e4e7ec; overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); padding: 16px; border-radius: 8px; }
.mini b { display: block; font-size: 24px; }

section { padding: 86px 0; }
.section-head { display: grid; gap: 12px; max-width: 840px; margin-bottom: 34px; }
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  display: grid;
  gap: 14px;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); transition: .2s ease; }
.service-card .icon, .portfolio-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.band { background: var(--soft); border-block: 1px solid var(--line); }
.dark-band { background: #101828; color: #fff; }
.dark-band p { color: #d0d5dd; }
.process { counter-reset: step; }
.process .card { position: relative; padding-top: 60px; }
.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--blue);
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.photo-panel { border-radius: 8px; overflow: visible; background: transparent; }
.photo-panel img { aspect-ratio: 4 / 4.2; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 26px 38px rgba(16,24,40,.2)); }
.quote-panel { display: grid; gap: 18px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { color: #475467; padding-left: 30px; position: relative; }
.check-list li::before { content: ""; width: 18px; height: 18px; position: absolute; left: 0; top: 3px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--cyan)); }
.page-hero {
  background: linear-gradient(135deg, #101828, #1d2939);
  color: #fff;
  padding: 90px 0 70px;
}
.page-hero p { color: #d0d5dd; }
.page-hero .container { display: grid; gap: 18px; }
.portfolio-grid { grid-template-columns: repeat(5, 1fr); }
.work-tile {
  min-height: 180px;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: end;
  color: #fff;
  background: linear-gradient(135deg, #101828, #0b4eea);
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.work-tile:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px rgba(11,78,234,.24);
  filter: saturate(1.12);
}
.work-tile::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; }
.work-tile::after {
  content: "Open";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-6px);
  transition: .2s ease;
}
.work-tile:hover::after { opacity: 1; transform: translateY(0); }
.work-tile.website-item::after { content: "Open Website"; }
.work-tile b { position: relative; z-index: 1; font-family: "Inter", Arial, sans-serif; font-size: 18px; }
.work-tile.image-tile { background: #101828; padding: 0; }
.work-tile.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.work-tile.image-tile b {
  width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(16,24,40,.84));
}
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.portfolio-modal.open { display: flex; }
.portfolio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,16,36,.82);
  backdrop-filter: blur(10px);
}
.portfolio-modal__panel {
  position: relative;
  width: min(1060px, 100%);
  min-height: min(720px, calc(100vh - 56px));
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0,0,0,.36);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}
.portfolio-modal__stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 24%, rgba(36,160,255,.18), transparent 28%),
    linear-gradient(135deg, #071024, #0b4eea);
  color: #fff;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.portfolio-modal__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .55;
}
.portfolio-preview-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  min-height: 390px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  padding: 34px;
  display: grid;
  align-content: end;
  gap: 16px;
}
.portfolio-preview-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed #9bb7ff;
  border-radius: 8px;
}
.portfolio-preview-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(34px, 6vw, 72px);
  color: var(--blue);
}
.portfolio-preview-card p {
  position: relative;
  z-index: 1;
  font-size: 18px;
}
.portfolio-modal__stage img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}
.portfolio-modal__meta {
  padding: 24px 30px;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.portfolio-modal__meta h2 { font-size: clamp(26px, 4vw, 42px); }
.portfolio-modal__close,
.portfolio-modal__nav {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(7,16,36,.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.portfolio-modal__close {
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}
.portfolio-modal__nav {
  top: 44%;
  width: 54px;
  height: 70px;
  border-radius: 8px;
  font-size: 48px;
  line-height: 1;
}
.portfolio-modal__nav--left { left: 18px; }
.portfolio-modal__nav--right { right: 18px; }
.portfolio-modal__close:hover,
.portfolio-modal__nav:hover { background: var(--blue); }
.banner-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #071024;
  min-height: 520px;
  border: 1px solid #1b3d84;
  box-shadow: var(--shadow);
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.1s ease;
}
.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,36,.82) 0%, rgba(7,16,36,.52) 42%, rgba(7,16,36,.18) 100%);
  pointer-events: none;
}
.banner-slide.active { opacity: 1; transform: scale(1); }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.banner-copy {
  position: absolute;
  left: clamp(22px, 6vw, 76px);
  bottom: clamp(28px, 7vw, 86px);
  width: min(620px, calc(100% - 44px));
  color: #fff;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(7,16,36,.62);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.banner-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
  max-width: 680px;
}
.banner-copy p { color: #dbe7ff; font-size: 18px; }
.banner-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.banner-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8);
  background: transparent;
}
.banner-dots button.active { background: #fff; }
.industry-card {
  overflow: hidden;
  padding: 0;
}
.industry-card img { width: 100%; height: 230px; object-fit: cover; }
.industry-card div { padding: 24px; display: grid; gap: 10px; }
.infographic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.orbit-map {
  min-height: 430px;
  position: relative;
  border-radius: 8px;
  background: radial-gradient(circle at center, #eef4ff 0 12%, #fff 12% 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.orbit-map::before, .orbit-map::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px dashed #9bb7ff;
  border-radius: 50%;
}
.orbit-map::after { inset: 105px; }
.orbit-node {
  position: absolute;
  width: 118px;
  min-height: 64px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbe7ff;
  box-shadow: 0 12px 28px rgba(11,78,234,.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  color: #0735a8;
  font-weight: 900;
}
.orbit-node.center { left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--blue); color: #fff; width: 140px; min-height: 82px; }
.orbit-node.n1 { left: 12%; top: 12%; }
.orbit-node.n2 { right: 10%; top: 15%; }
.orbit-node.n3 { right: 8%; bottom: 16%; }
.orbit-node.n4 { left: 12%; bottom: 14%; }
.stats-rings { display: grid; gap: 16px; }
.stat-ring {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.ring {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) var(--value), #e5edff 0);
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-weight: 900;
}
.ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}
.ring span {
  position: relative;
  z-index: 1;
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-box { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: grid; gap: 14px; }
.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}
.form textarea { min-height: 128px; resize: vertical; }
.footer {
  background: #071024;
  color: #fff;
  padding: 56px 0 24px;
}
.footer p, .footer a { color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer h3 { font-size: 16px; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.client-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}
.client-strip img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  font-size: 24px;
  font-weight: 900;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(37,211,102,.42);
}
.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hamburger { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px;
    align-items: stretch;
    flex-direction: column;
  }
  .menu.open { display: flex; }
  .drop-menu { position: static; width: 100%; box-shadow: none; margin-top: 4px; }
  .nav-cta { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: auto; }
  .founder-hero img { height: 520px; }
  .grid.three, .grid.two, .grid.four, .portfolio-grid, .footer-grid, .client-strip, .infographic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  section { padding: 62px 0; }
  .grid.three, .grid.two, .grid.four, .portfolio-grid, .footer-grid, .client-strip, .infographic { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .brand img { width: 176px; }
  .hero-grid { padding-top: 48px; }
  .hero-actions .btn, .section-actions .btn { width: 100%; }
  .founder-hero img { height: 420px; }
  .banner-showcase { min-height: 480px; }
  .orbit-node { width: 98px; font-size: 13px; }
  .portfolio-modal { padding: 14px; }
  .portfolio-modal__stage { min-height: 420px; padding: 74px 18px 34px; }
  .portfolio-modal__nav { top: auto; bottom: 118px; width: 46px; height: 52px; font-size: 36px; }
  .portfolio-modal__meta { padding: 18px; }
  .footer-bottom { display: grid; }
}





.client-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.client-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 115px;
  transition: all 0.35s ease;
  overflow: hidden;
  text-decoration: none;
}

.client-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* Hover Effects */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #d6d6d6;
}

.client-card:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
  .client-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .client-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-card {
    min-height: 95px;
    padding: 20px;
  }
}


/* HERO SECTION WITH BANNER IMAGE */

.page-hero{
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Banner Image */
    background:
    linear-gradient(
        rgba(3, 12, 32, 0.82),
        rgba(3, 12, 32, 0.82)
    ),
    url("assets/About page Hero.png");

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

/* Content Width */
.page-hero .container{
    position: relative;
    z-index: 2;
}

/* Small Label */
.page-hero .eyebrow{
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Heading */
.page-hero h1{
    max-width: 950px;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

/* Description */
.page-hero .lead{
    max-width: 760px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

/* RESPONSIVE */

@media (max-width: 992px){

    .page-hero{
        min-height: 520px;
        padding: 100px 0;
    }

    .page-hero h1{
        font-size: 56px;
    }

    .page-hero .lead{
        font-size: 20px;
    }
}

@media (max-width: 576px){

    .page-hero{
        min-height: auto;
        padding: 90px 0 70px;
    }

    .page-hero h1{
        font-size: 40px;
    }

    .page-hero .lead{
        font-size: 17px;
        line-height: 1.6;
    }
}


/* FAQ SECTION */

.faq-section{
    padding: 100px 0;
    background: #f8fafc;
}

.section-head.center{
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 60px;
}

.faq-container{
    max-width: 900px;
    margin: auto;
}

.faq-item{
    background: #fff;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.faq-item:hover{
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.faq-question{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 28px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.faq-question span{
    font-size: 28px;
    color: #2563eb;
    transition: 0.3s ease;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p{
    padding: 0 30px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

/* ACTIVE FAQ */

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-question span{
    transform: rotate(45deg);
}

/* MOBILE */

@media(max-width:768px){

    .faq-question{
        font-size: 17px;
        padding: 22px;
    }

    .faq-answer p{
        padding: 0 22px 25px;
        font-size: 15px;
    }

}

.btn.primary{
    position:relative;
    overflow:hidden;
}

.btn.primary::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.6s;
}

.btn.primary:hover::before{
    left:130%;
}

.btn.primary:hover{
    transform:translateY(-4px) scale(1.08);
}

.quick-links a{
    transition: all 0.3s ease;
}

.quick-links a:hover{
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 30px rgba(11,78,234,.15);
    border-color:#0b4eea;
    color:#0b4eea;
}