:root {
  --accent: #0b5ed7;
  --accent-dark: #0847a5;
  --accent-soft: #eaf2ff;
  --ink: #122033;
  --text: #2b3b4f;
  --soft: #f3f6fb;
  --line: #dfe7f2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 45%, #ffffff 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.2;
}

h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.16rem;
  margin-bottom: 0.65rem;
}

p {
  margin-bottom: 1rem;
}

.section {
  padding: 4.5rem 0;
}

.soft-bg {
  background: var(--soft);
}

.section-head {
  max-width: 680px;
  margin-bottom: 1.7rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.lead {
  font-size: 1.03rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--white);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-row.center {
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6edf7;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.14);
}

.site-header.is-sticky {
  box-shadow: 0 16px 34px rgba(18, 32, 51, 0.18);
}

.top-notice-bar {
  background: #0b5ed7;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.top-notice-track {
  display: flex;
  width: max-content;
  animation: notice-slide 22s linear infinite;
}

.top-notice-text {
  margin: 0;
  padding: 0.38rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
}

.brand img,
.footer-logo {
  width: 104px;
  height: auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f7187;
  font-weight: 700;
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.main-nav a,
.nav-dropdown-toggle {
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.12rem 0.24rem;
  border-radius: 6px;
  transition: color 0.2s ease, font-weight 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--accent);
  font-weight: 800;
  background: var(--accent-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-dropdown-caret {
  font-size: 0.66rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 245px;
  padding: 0.45rem;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(18, 32, 51, 0.12);
  display: grid;
  gap: 0.22rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}

.nav-dropdown-menu a {
  display: block;
  color: #1f3856;
  font-size: 0.91rem;
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #eaf2ff;
  color: #0b5ed7;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret,
.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 42px;
  height: 38px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
}

.hero {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(18, 32, 51, 0.44) 0%, rgba(11, 94, 215, 0.24) 100%), url('../images/background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0f1f35;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-lottie-band {
  border-bottom: 1px solid #dfe9fb;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.hero-lottie-wrap {
  border: 1px solid #d7e4fa;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.8rem;
  box-shadow: 0 16px 38px rgba(8, 33, 73, 0.08);
}

.hero-lottie {
  min-height: 280px;
}

.web-solutions {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  border-top: 1px solid #dfe9fb;
  border-bottom: 1px solid #dfe9fb;
}

.web-solutions-head {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 2rem;
}

.web-solutions-head h2 {
  color: #0b2c53;
}

.web-solutions-head p {
  margin: 0;
  color: #36506e;
  font-size: 1.02rem;
}

.web-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.web-solution-card {
  background: #ffffff;
  border: 2px solid #0b5ed7;
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: flex-start;
  gap: 0.9rem;
  box-shadow: 0 12px 30px rgba(10, 40, 90, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.web-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10, 40, 90, 0.11);
  border-color: #2d7ff9;
}

.web-solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #c8dbf7;
  background: #ecf4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.web-solution-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #0b5ed7;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.web-solution-card h3 {
  margin: 0 0 0.45rem;
  color: #0b2c53;
  font-size: 1.22rem;
}

.web-solution-card p {
  margin: 0;
  color: #36506e;
  font-size: 0.98rem;
  line-height: 1.55;
}

.industries-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-top: 1px solid #dfe9fb;
  border-bottom: 1px solid #dfe9fb;
}

.industries-head {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 2.2rem;
}

.industries-head h2 {
  color: #0b2c53;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.industries-head p {
  margin: 0;
  color: #36506e;
  font-size: 1.02rem;
  line-height: 1.55;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #d6e4fb;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(13, 33, 62, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13, 33, 62, 0.1);
  border-color: #0b5ed7;
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eaf2ff;
  border: 1px solid #c8dbf7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0b5ed7;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h3 {
  margin: 0;
  color: #0b2c53;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.4;
}

.industries-cta {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.btn-industries {
  display: inline-block;
  background: #0b5ed7;
  color: #ffffff;
  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-industries:hover {
  background: #0847a5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 94, 215, 0.25);
}

.industry-directory {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.industry-directory-head {
  max-width: 820px;
}

.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.industry-feature-card {
  background: #ffffff;
  border: 1px solid #d6e4fb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(13, 33, 62, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-feature-card:hover {
  transform: translateY(-4px);
  border-color: #0b5ed7;
  box-shadow: 0 16px 30px rgba(13, 33, 62, 0.11);
}

.industry-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #c8dbf7;
  background: #eaf2ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.industry-feature-icon svg {
  width: 23px;
  height: 23px;
  stroke: #0b5ed7;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-feature-card h3 {
  margin: 0 0 0.45rem;
  color: #0b2c53;
}

.industry-feature-card p {
  margin: 0 0 0.75rem;
  color: #36506e;
  line-height: 1.55;
}

.industry-tag-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.industry-tag-list li {
  border-left: 3px solid #0b5ed7;
  padding-left: 0.58rem;
  color: #26415f;
  font-size: 0.94rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: 580px;
  padding: 1.6rem 0;
}

.split,
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero .reveal {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  max-width: 650px;
}

.hero .eyebrow {
  color: #e0e8ff;
}

.hero h1 {
  color: #ffffff;
  max-width: 580px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
  margin-bottom: 0.7rem;
  overflow-wrap: anywhere;
}

.hero .typewriter {
  color: #70c0ff;
  display: inline-block;
  position: relative;
  margin: 0 0.2rem;
  word-spacing: normal;
  white-space: nowrap;
  min-width: 16ch;
  font-weight: 200;
}

.hero .typewriter::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #70c0ff;
  margin-left: 0.12rem;
  vertical-align: -0.13em;
  animation: cursor-blink 0.9s steps(1) infinite;
}

.hero .btn-row {
  margin-top: 1rem;
  padding-top: 0;
  max-width: 430px;
  width: 100%;
}

.hero .btn-row .btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-summary-strip {
  margin-top: -1px;
  padding: 1.6rem 0 0.4rem;
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.hero-summary-card {
  border: 1px solid #c8dbf7;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
  box-shadow: 0 18px 38px rgba(13, 33, 62, 0.11);
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.2rem;
}

.hero-summary-header {
  max-width: 700px;
}

.hero-summary-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.hero-summary-header h3 {
  color: #0b2c53;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.hero-summary-header p {
  margin: 0;
  color: #36506e;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat {
  border: 1px solid #c9dcfa;
  border-radius: 14px;
  background: #ffffff;
  padding: 1.1rem 0.95rem;
  text-align: left;
  min-height: 186px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 20px rgba(10, 40, 90, 0.07);
}

.hero-stat h3 {
  color: #0b2c53;
  font-size: 1.24rem;
  line-height: 1.2;
  margin: 0.62rem 0 0.45rem;
}

.hero-stat p {
  margin: 0;
  color: #36506e;
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-summary-card .btn-row {
  margin-top: 1rem;
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #b9d4fb;
  background: #e8f2ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 21px;
  height: 21px;
  stroke: #0b5ed7;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  display: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 94, 215, 0.94);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
}

.hero-kpi-grid {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-kpi {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe7fa;
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  text-align: center;
}

.hero-kpi strong {
  display: block;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-kpi span {
  font-size: 0.74rem;
  font-weight: 600;
}

.process-band {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-band h2,
.process-band h3,
.process-band p {
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: #ffffff;
  border: 1px solid #dce7f8;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(13, 33, 62, 0.06);
}

.process-card .step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.tech-zone {
  background: #ffffff;
  color: var(--text);
}

.tech-zone h2,
.tech-zone h3 {
  color: var(--ink);
}

.tab-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d8e4f7;
  border-radius: 12px;
  overflow: hidden;
}

.tab-btn {
  border: 0;
  border-right: 1px solid #d8e4f7;
  background: #ffffff;
  color: var(--ink);
  padding: 0.85rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn:last-child {
  border-right: 0;
}

.tab-btn.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.tab-panel {
  display: none;
  padding-top: 1.4rem;
}

.tab-panel.is-active {
  display: block;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.badge {
  border: 1.5px solid #2d7ff9;
  border-radius: 12px;
  text-align: center;
  padding: 0.95rem 0.5rem;
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(45, 127, 249, 0.1);
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.image-wrap img,
.banner-image-section img,
.card img {
  border-radius: 10px;
  border: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-stack {
  display: grid;
  gap: 1.1rem;
}

.service-item {
  background: #ffffff;
  border: 1px solid #d6e4fb;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: 0 14px 30px rgba(13, 33, 62, 0.07);
}

.service-image {
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.service-content {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content p {
  margin-bottom: 0.8rem;
}

.service-content a {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.15rem;
  border-radius: 7px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.service-content a:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.service-sublist {
  display: grid;
  gap: 0.45rem;
  margin: 0.5rem 0 0.85rem;
  list-style: none;
}

.service-sublist li {
  border-left: 3px solid #0b5ed7;
  padding-left: 0.55rem;
  color: #26415f;
  font-size: 0.95rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(13, 33, 62, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13, 33, 62, 0.1);
}

.card a {
  color: var(--accent);
  font-weight: 700;
}

.card a:hover {
  color: var(--accent-dark);
}

.service-block h2 {
  font-size: 1.3rem;
}

.page-banner {
  padding: 4rem 0 2rem;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.projects-page-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, rgba(15, 44, 79, 0.78) 0%, rgba(11, 94, 215, 0.56) 100%), url('../images/project.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.projects-page-banner .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 3.2rem 0 2rem;
}

.projects-page-banner h1,
.projects-page-banner p,
.projects-page-banner .eyebrow {
  color: #ffffff;
}

.projects-page-banner h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
}

.projects-page-banner p {
  max-width: 680px;
  line-height: 1.6;
}

.projects-banner-note {
  margin-top: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-page-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, rgba(15, 31, 53, 0.85) 0%, rgba(11, 94, 215, 0.6) 100%), url('../images/about-us.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #ffffff;
}

.about-page-banner .container {
  position: relative;
  z-index: 2;
}

.about-page-banner h1,
.about-page-banner p,
.about-page-banner .eyebrow {
  color: #ffffff;
}

.about-page-banner h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  margin-bottom: 0.9rem;
}

.about-page-banner p {
  max-width: 740px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.about-banner-note {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #70c0ff;
}

.projects-directory-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  padding: 0.85rem;
  border: 1px solid #d9e6fb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(13, 33, 62, 0.05);
}

.project-filter-btn {
  border: 1px solid #c8dbf7;
  background: #f8fbff;
  color: #1d3857;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.project-filter-btn:hover {
  border-color: #0b5ed7;
  background: #eaf2ff;
  color: #0b5ed7;
}

.project-filter-btn.is-active {
  background: #0b5ed7;
  border-color: #0b5ed7;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(11, 94, 215, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.case-studies-grid {
  display: grid;
  gap: 1rem;
}

.case-study-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 32, 51, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.case-study-card.is-reverse {
  grid-template-columns: 1fr 1.05fr;
}

.case-study-media {
  min-height: 100%;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 1.45rem 1.45rem 1.35rem;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.case-study-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  border: 1px solid #c9dcfa;
  background: #eef5ff;
  color: #0b5ed7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.case-study-heading {
  margin-bottom: 0.6rem;
}

.case-study-lead {
  font-size: 0.98rem;
  color: #36506e;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0;
}

.case-study-panel {
  border: 1px solid #dde7f4;
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.95rem 1rem;
}

.case-study-panel h4 {
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.case-study-panel ul {
  padding-left: 1.05rem;
  margin: 0;
}

.case-study-panel li {
  margin-bottom: 0.3rem;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.case-study-metric {
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid #c9dcfa;
  padding: 0.75rem 0.8rem;
}

.case-study-metric strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.case-study-metric span {
  display: block;
  color: #36506e;
  font-size: 0.88rem;
  line-height: 1.45;
}

.case-study-note {
  margin-top: 1rem;
  color: #36506e;
  font-size: 0.95rem;
}

.project-card {
  border: 1px solid #d6e4fb;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(13, 33, 62, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(13, 33, 62, 0.12);
  border-color: #b9d5fb;
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.project-card h3 {
  margin: 0;
  padding: 1rem 0.95rem 0.36rem;
  color: #0b2c53;
  font-size: 1.08rem;
}

.project-card p {
  margin: 0;
  padding: 0 0.95rem 1rem;
  color: #3c5574;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-card.is-hidden {
  display: none;
}

.custom-project-cta {
  position: relative;
  background: linear-gradient(125deg, rgba(11, 94, 215, 0.17) 0%, rgba(12, 36, 67, 0.1) 100%), url('../images/project.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid #d7e4fa;
  border-bottom: 1px solid #d7e4fa;
}

.custom-project-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 25, 45, 0.58), rgba(11, 94, 215, 0.35));
}

.custom-project-cta .container {
  position: relative;
  z-index: 1;
}

.custom-project-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d2e3ff;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(12, 30, 57, 0.2);
  padding: 2rem;
  text-align: center;
}

.custom-project-card h2 {
  color: #0b2c53;
  margin-bottom: 0.65rem;
}

.custom-project-card > p {
  max-width: 700px;
  margin: 0 auto 1.2rem;
  color: #36506e;
  line-height: 1.58;
}

.custom-project-features {
  margin-bottom: 1.3rem;
}

.custom-project-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.custom-project-features li {
  background: #f4f8ff;
  border: 1px solid #d4e4fd;
  border-radius: 10px;
  padding: 0.6rem 0.72rem;
  font-weight: 700;
  color: #244464;
  text-align: left;
}

.custom-project-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 0.78rem 1.35rem;
  font-size: 0.96rem;
}

.custom-call-btn {
  border-color: #0b5ed7;
  color: #0b5ed7;
  background: #ffffff;
}

.custom-call-btn:hover {
  background: #0b5ed7;
  color: #ffffff;
}

.custom-project-subtext {
  margin: 0.9rem 0 0;
  color: #527095;
  font-size: 0.92rem;
  font-weight: 600;
}

.text-list {
  display: grid;
  gap: 0.65rem;
}

.text-list li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.text-list.compact li {
  font-weight: 500;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.cta-block {
  background: #eff5ff;
}

.cta-inner {
  text-align: center;
}

.banner-image-section {
  position: relative;
}

.banner-image-section img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 19, 34, 0.7), rgba(9, 19, 34, 0.2));
  color: var(--white);
  padding: 2rem;
  display: grid;
  align-content: center;
}

.banner-overlay h1,
.banner-overlay p {
  color: var(--white);
  max-width: 620px;
}

.industries-banner {
  min-height: 360px;
}

.industries-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.industries-banner-overlay {
  background: linear-gradient(100deg, rgba(11, 18, 33, 0.78), rgba(11, 94, 215, 0.42));
}

.industries-banner-overlay .container {
  display: grid;
  gap: 0.75rem;
}

.industries-banner-overlay h1 {
  margin: 0;
}

.industries-banner-overlay p {
  margin: 0;
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.industries-intro {
  font-weight: 600;
}

.industries-closeout {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  padding-top: 0;
}

.industries-closeout-card {
  background: linear-gradient(135deg, #0b5ed7 0%, #0847a5 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 18px 38px rgba(13, 33, 62, 0.16);
}

.industries-closeout-card h2,
.industries-closeout-card p {
  color: #ffffff;
}

.industries-closeout-card h2 {
  margin-bottom: 0.8rem;
}

.industries-closeout-card p {
  margin: 0 auto 1rem;
  max-width: 820px;
  line-height: 1.65;
}

.industries-closeout-card .btn {
  background: #ffffff;
  color: #0b5ed7;
  border-color: #ffffff;
}

.industries-closeout-card .btn:hover {
  background: #eaf2ff;
  color: #0847a5;
}

.industries-closeout-note {
  margin-top: 1rem;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* About Page Stats Section */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid #d6e4fb;
  border-radius: 18px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 33, 62, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stat-card:hover {
  transform: translateY(-8px);
  border-color: #0b5ed7;
  box-shadow: 0 20px 40px rgba(13, 33, 62, 0.12);
}

.about-stat-icon {
  width: 62px;
  height: 62px;
  background: #eaf2ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat-card:hover .about-stat-icon {
  background: #0b5ed7;
  transform: rotateY(180deg);
}

.about-stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0b5ed7;
  fill: none;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon svg {
  stroke: #ffffff;
}

.about-stat-number {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  color: #0b5ed7;
  margin-bottom: 0.5rem;
  font-family: 'Libre Baskerville', serif;
}

.about-stat-card h3 {
  font-size: 1.18rem;
  color: #122033;
  margin-bottom: 0.75rem;
}

.about-stat-card p {
  font-size: 0.94rem;
  color: #36506e;
  line-height: 1.55;
  margin: 0;
}

/* Mission & Vision Section */
.about-value-card {
  padding: 2.8rem 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #d6e4fb;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(13, 33, 62, 0.05);
}

.about-value-card h2 {
  font-family: 'Libre Baskerville', serif;
  color: #0b5ed7;
  margin-bottom: 1.25rem;
  font-size: 1.95rem;
}

.about-value-card p {
  font-size: 1.02rem;
  color: #2b3b4f;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.about-detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.about-detail-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.95rem;
  font-size: 0.96rem;
  color: #36506e;
  line-height: 1.5;
}

.about-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background: rgba(11, 94, 215, 0.12);
  border: 1.5px solid #0b5ed7;
  border-radius: 4px;
}

.vision-highlight {
  background: linear-gradient(90deg, #eaf2ff 0%, #f4f8ff 100%);
  border-left: 4px solid #0b5ed7;
  padding: 1.2rem 1.4rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 14px rgba(11, 94, 215, 0.04);
}

.vision-highlight strong {
  display: block;
  font-size: 0.97rem;
  color: #122033;
  line-height: 1.5;
}

.about-lottie {
  width: 100%;
  max-width: 320px;
  height: 220px;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  display: grid;
  gap: 0.55rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid #c9d7ea;
  border-radius: 7px;
  background: #fff;
}

.form-message {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.site-footer {
  background: #0f1f35;
  color: #d8e3f3;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.6rem 0;
}

.site-footer h3,
.site-footer a,
.footer-company {
  color: #ffffff;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid #2a3d59;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes notice-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Awards & Recognition Section */
.awards-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #fafbff 100%);
}

.awards-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.awards-head .eyebrow {
  display: block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #0b5ed7;
}

.awards-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin-bottom: 0.7rem;
  color: #122033;
}

.awards-head p {
  font-size: 1.05rem;
  color: #36506e;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.awards-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.awards-slider-wrapper[dir="rtl"] {
  direction: rtl;
  flex-direction: row-reverse;
}

.awards-slider-container {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(13, 33, 62, 0.08);
}

.awards-slider {
  display: flex;
  gap: 1.5rem;
  padding: 2.2rem 1.8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.awards-slider[dir="rtl"] {
  direction: rtl;
}

.awards-slider::-webkit-scrollbar {
  display: none;
}

.awards-slide {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: #f8f9ff;
  border: 1px solid #e8ecf7;
  transition: all 0.3s ease;
  cursor: grab;
}

.awards-slide:hover {
  background: #f0f4ff;
  border-color: #0b5ed7;
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.12);
  transform: translateY(-4px);
}

.award-logo {
  width: 110px;
  height: 110px;
  margin-bottom: 1rem;
  display: block;
  object-fit: contain;
}

.award-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #122033;
  margin-bottom: 0.3rem;
}

.award-subtitle {
  font-size: 0.8rem;
  color: #36506e;
  margin: 0;
}

.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b5ed7;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(11, 94, 215, 0.2);
}

.slider-btn:hover:not(:disabled) {
  background: #0847a5;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(11, 94, 215, 0.35);
}

.slider-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.slider-btn-prev {
  order: -1;
}

.slider-btn-next {
  order: 1;
}

.awards-slider-wrapper[dir="rtl"] .slider-btn-prev {
  order: 1;
}

.awards-slider-wrapper[dir="rtl"] .slider-btn-next {
  order: -1;
}