/* Ver5 PDF Style - Pontem Group */
:root {
  --navy: #1e3a5f;
  --navy-link: #204070;
  --navy-dark: #16283f;
  --light-gray: #f2f3f5;
  --border: #e1e4e8;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: var(--navy);
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
}
p {
  margin: 0 0 12px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
}

/* ---------- NAV ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
.navbar .logo {
  height: 36px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy-link);
  cursor: pointer;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.navbar a {
  text-decoration: none;
  color: var(--navy-link);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 15px;
  padding-bottom: 4px;
}
.navbar a.active {
  border-bottom: 2px solid var(--navy-link);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: url("../img/hero-bridge.jpg") center/cover no-repeat;
  color: #fff;
  padding: 140px 10% 160px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 35, 0.85) 0%,
    rgba(30, 58, 95, 0.55) 55%,
    rgba(30, 58, 95, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  max-width: 680px;
  text-transform: uppercase;
}
.hero p {
  font-size: 20px;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero .find-more {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

/* ---------- BANNERS ---------- */
.banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.banner h2 {
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.banner-light {
  background: var(--light-gray);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.about-photo img {
  border-radius: 2px;
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.about-photo figcaption {
  font-size: 13px;
  color: #5b6b80;
  margin-top: 10px;
  font-style: italic;
}
.about-logo {
  height: 70px;
  margin-bottom: 18px;
}
.about-copy p {
  font-size: 16px;
}

.timeline-wrap {
  padding-bottom: 80px;
}
.timeline-wrap h2 {
  margin-bottom: 48px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}
.timeline-item {
  text-align: center;
  position: relative;
}
.timeline-year {
  font-weight: 700;
  margin-bottom: 12px;
}
.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--navy);
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.timeline-dot svg {
  width: 22px;
  height: 22px;
}
.timeline-dot i {
  font-size: 20px;
  line-height: 1;
}
.timeline-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 12px;
  color: #cfd9e6;
}

.core-values-title {
  text-align: center;
  margin-bottom: 36px;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.core-values {
  max-width: 820px;
  margin: 0 auto;
}
.value-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 12px 0;
}
.value-name {
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.value-text {
  font-size: 15px;
}

/* Why Work With Us - exact spec */
.why-us {
  background: #203a60;
  color: #fff;
  padding: 100px 60px;
  display: flex;
  gap: 80px;
  max-width: none;
}
.why-heading {
  flex: 0 0 35%;
}
.why-heading h2 {
  display: flex;
  flex-direction: column;
  font-size: 98px;
  font-weight: 900;
  line-height: 0.9;
  color: #c5d1e0;
  text-transform: uppercase;
  margin: 0;
  text-align: right;
}
.why-body {
  flex: 1;
  max-width: 650px;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e8f0;
}
.why-body p {
  margin-bottom: 28px;
}
.why-body p:last-child {
  margin-bottom: 0;
}
.why-body strong {
  text-decoration: underline;
  color: #fff;
}
.why-body u {
  text-decoration: underline;
}

.testimonial {
  background: #fff;
}
.testimonial .section-inner {
  max-width: 820px;
  text-align: center;
}
.testimonial-label {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.tc-viewport {
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-viewport blockquote {
  font-size: 19px;
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 14px;
}
.testimonial-logo {
  /* real logo assets are 400x270 (~1.48:1) — constrain both axes so object-fit:contain scales them without distortion */
  max-height: 88px;
  max-width: 130px;
  width: auto;
  margin: 16px auto 0;
  object-fit: contain;
}
.tc-viewport.clickable {
  cursor: pointer;
}
.testimonial-see-project {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  padding: 0;
  color: var(--navy-link);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.testimonial-see-project:hover {
  text-decoration: underline;
}
.tc-arrow {
  flex: 0 0 auto;
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-arrow:hover {
  background: var(--navy);
  color: #fff;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.tc-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #c7d0dc;
  padding: 0;
  cursor: pointer;
}
.tc-dots button.active {
  background: var(--navy);
}

/* ---------- SERVICES ---------- */
.services-title {
  text-align: center;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#services h3 {
  font-size: 26px;
  margin-bottom: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--navy);
  color: #fff;
  padding: 26px 22px;
  min-height: 190px;
}
.service-card h4 {
  font-size: 18px;
}
.service-card p {
  font-size: 14px;
  color: #dbe4ef;
  margin: 0;
}

/* ---------- PROJECTS ---------- */
.projects-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 0;
}
.projects-head h2 {
  font-size: 38px;
  text-transform: uppercase;
}

.filter-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-tile {
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  background: var(--light-gray);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.15s;
}
.filter-tile:hover {
  background: #e4e7eb;
}
.filter-tile.active {
  background: var(--navy);
  color: #fff;
}

.projects-list {
  display: flex;
  flex-direction: column;
}
.project-card {
  display: grid;
  grid-template-columns: 220px 260px 1fr;
  gap: 28px;
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.project-card:nth-child(odd) {
  background: var(--light-gray);
}
.project-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
}
.project-meta h3 {
  font-size: 19px;
  margin-bottom: 2px;
}
.project-location {
  color: #5b6b80;
  font-weight: 600;
  margin-bottom: 8px;
}
.project-meta p {
  font-size: 13px;
  margin-bottom: 4px;
}
.project-services {
  margin-bottom: 2px !important;
}
.project-meta ul {
  margin: 0 0 4px;
  padding-left: 16px;
  font-size: 13px;
}
.project-desc {
  color: #3a4d64;
  font-size: 14px;
}
.project-card-highlight {
  outline: 3px solid var(--navy-link);
  outline-offset: -3px;
  transition: outline-color 0.3s;
}

/* -- embedded per-project testimonial -- */
.project-testimonial {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--navy-link);
  border-radius: 6px;
}
.pt-quote p {
  font-size: 13px;
  font-style: italic;
  color: #3a4d64;
  margin-bottom: 8px;
}
.pt-author {
  font-size: 12.5px;
  color: var(--navy);
}
.pt-logo {
  flex-shrink: 0;
  text-align: center;
}
.pt-logo img {
  /* real logo assets are 400x270 (~1.48:1) — constrain both axes so object-fit:contain scales them without distortion */
  max-height: 88px;
  max-width: 130px;
  object-fit: contain;
}
.pt-logo span {
  font-weight: 700;
  color: #5b6b80;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* ---------- TEAM ---------- */
.team-title {
  text-align: center;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.team-section h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.team-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.team-row:nth-of-type(odd) {
  background: var(--light-gray);
}
.team-row:last-child {
  border-bottom: none;
}
.team-row-label {
  grid-column: 1;
  grid-row: 1;
  color: var(--navy-link);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.team-row-main {
  grid-column: 1;
  grid-row: 2;
}
.team-row-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 10px;
  background: #dde3ea;
}
.team-row-main h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.team-row-main .team-credentials {
  font-size: 12px;
  color: #5b6b80;
}
.team-row-bio {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
}
.team-row-bio-text {
  font-size: 13.5px;
  color: #3a4d64;
  line-height: 1.6;
  margin-bottom: 12px;
}
.team-row-contact {
  font-size: 12px;
  margin-bottom: 8px;
  word-break: break-word;
}
.team-row-contact a {
  color: var(--navy-link);
}
.team-row-icons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.team-row-icons a {
  color: var(--navy);
  font-size: 15px;
}
.team-row-icons a:hover {
  color: var(--navy-link);
}

/* ---------- CAREERS ---------- */
.careers-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.careers-grid.reverse {
  grid-template-columns: 1fr 1.3fr;
}
.careers-grid.reverse .careers-photo {
  order: -1;
}
.careers-photo img {
  border-radius: 2px;
  height: 320px;
  width: 100%;
  object-fit: cover;
}
.careers-copy h3 {
  font-size: 24px;
}
.careers-title {
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.adp-widget {
  margin: 24px 0;
}
.careers-note {
  padding: 0 16px;
  color: #3a4d64;
}
.careers-note a {
  color: var(--navy-link);
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- TRUSTED BY (sits inside the hero, over the photo) ---------- */
.hero .trusted-bar {
  margin-top: 44px;
}
.trusted-label {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 13px;
  margin-bottom: 14px;
}
.trusted-logos-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: trusted-scroll 26s linear infinite;
}
.trusted-logos:hover {
  animation-play-state: paused;
}
.trusted-card {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trusted-card img {
  /* real logo assets are 400x270 (~1.48:1) — constrain both axes so object-fit:contain scales them without distortion */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.trusted-card span {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-logos {
    animation: none;
  }
}

/* ---------- NEWS ---------- */
#news {
  background:
    linear-gradient(180deg, rgba(10, 20, 35, 0.85), rgba(30, 58, 95, 0.75)),
    url("../img/hero-bridge.jpg") center/cover no-repeat;
}
.news-box {
  text-align: center;
  padding: 110px 24px;
}
.news-title {
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.news-placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.news-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-card-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.news-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 20px;
}
.news-card-date {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.news-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.news-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- CONTACT ---------- */
#contact {
  background:
    linear-gradient(180deg, rgba(10, 20, 35, 0.9), rgba(30, 58, 95, 0.85)),
    url("../img/hero-bridge.jpg") center/cover no-repeat;
  padding: 20px 0;
}
.contact-box {
  background: var(--light-gray);
  max-width: 640px;
  border-radius: 6px;
  padding: 56px 48px;
  text-align: center;
}
.contact-box h2 {
  font-size: 34px;
}
.contact-box > p {
  margin-bottom: 28px;
}
#contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#contact-form input,
#contact-form textarea {
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #e9ebee;
  color: var(--navy);
}
#contact-form button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 6px;
}
#contact-form button:hover {
  background: var(--navy-dark);
}
#contact-form button:disabled {
  opacity: 0.6;
  cursor: default;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.form-status.success {
  color: #1e6b3a;
}
.form-status.error {
  color: #a12626;
}

footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 48px 24px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact {
  align-items: flex-start;
}
.footer-phone,
.footer-email {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover,
.footer-email:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-social a {
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}
.footer-social a:hover {
  color: var(--navy-link);
}
.footer-terms {
  font-size: 13px;
  color: #5b6b80;
  text-decoration: underline;
  margin-top: 4px;
}
.footer-terms:hover {
  color: var(--navy);
}
.footer-brand {
  align-items: center;
}
.footer-logo {
  height: 48px;
}
.footer-address {
  align-items: flex-end;
  text-align: right;
}
.footer-address h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.footer-address p {
  margin: 0;
  color: #5b6b80;
  font-size: 14px;
  line-height: 1.5;
}
.back-to-top {
  position: absolute;
  right: 24px;
  top: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.back-to-top:hover {
  background: var(--navy-dark);
}
.footer-bottom {
  text-align: center;
  padding: 28px 0 24px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: #8a97a8;
}
.footer-bottom p {
  margin: 0;
}
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact,
  .footer-address {
    align-items: center;
    text-align: center;
  }
  .back-to-top {
    top: -22px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid,
  .careers-grid,
  .careers-grid.reverse {
    grid-template-columns: 1fr;
  }
  .careers-grid.reverse .careers-photo {
    order: 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-row {
    grid-template-columns: 130px 1fr;
    gap: 20px;
  }

  /* vertical timeline */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 34px;
    position: relative;
  }
  .timeline::before {
    top: 6px;
    bottom: 6px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 18px;
    grid-template-rows: auto auto auto;
    text-align: left;
  }
  .timeline-year {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
  }
  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0;
  }
  .timeline-title {
    grid-column: 2;
    grid-row: 2;
  }
  .timeline-text {
    grid-column: 2;
    grid-row: 3;
  }

  .why-us {
    flex-direction: column;
    gap: 36px;
    padding: 64px 40px;
  }
  .why-heading {
    flex: none;
  }
  .why-heading h2 {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    font-size: clamp(16px, 5vw, 32px);
    line-height: 1.1;
    text-align: center;
  }
  .why-body {
    max-width: none;
  }

  .project-card {
    grid-template-columns: 1fr;
  }
  .project-img img {
    height: 240px;
  }
  .project-testimonial {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-row {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .value-name {
    text-align: left;
  }

}
@media (max-width: 640px) {
  .navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .navbar ul.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero {
    padding: 100px 6% 100px;
  }
  .hero-video {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .team-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .team-row-label,
  .team-row-main,
  .team-row-bio {
    grid-column: 1;
  }
  .team-row-label {
    grid-row: 1;
  }
  .team-row-main {
    grid-row: 2;
    max-width: 200px;
    margin: 0 auto;
  }
  .team-row-bio {
    grid-row: 3;
    margin-top: 16px;
    text-align: center;
  }
  .team-row-icons {
    justify-content: center;
  }
  .contact-box {
    padding: 36px 22px;
  }

  .why-us {
    padding: 48px 24px;
  }

  .projects-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .project-img img {
    height: 200px;
  }
  .project-card {
    padding: 24px 16px;
  }

  .testimonial-carousel {
    gap: 10px;
  }
  .tc-arrow {
    width: 34px;
    height: 34px;
  }
  .tc-viewport blockquote {
    font-size: 16px;
  }
}
