:root {
  --blue: #0c557b;
  --blue2: #073653;
  --steel: #e9eef2;
  --dark: #102030;
  --muted: #607080;
  --accent: #18a2d6;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(9, 33, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background: #f8fbfd;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dce8ef;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff;
  font-size: 25px;
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: -4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-weight: 700;
  color: #315064;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #ffffff !important;
  padding: 14px 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--blue) !important;
  border: 1px solid #cfe0ea;
}

.btn.small {
  padding: 10px 16px;
  font-size: 14px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #072d45 0%, #0b5b85 55%, #edf5f9 55%);
  color: #ffffff;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 20px 0 18px;
  letter-spacing: -3px;
}

.hero p {
  font-size: 19px;
  color: #d9edf7;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-card {
  background: #ffffff;
  color: var(--dark);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.stat {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #dce8ef;
}

.stat b {
  display: block;
  font-size: 30px;
  color: var(--blue);
}

/* Sections */

.section {
  padding: 90px 0;
}

.section.alt {
  background: #eef5f8;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head span {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  margin: 8px 0 14px;
  letter-spacing: -1.5px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

/* Grid / Cards */

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 35px rgba(9, 33, 52, 0.08);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #e1f3fa;
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 16px;
}

/* Split Layout */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.rounded-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 10px solid #ffffff;
}

.list {
  padding-left: 18px;
}

.list li {
  margin: 10px 0;
}

.service-card ul {
  columns: 1;
  padding-left: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

/* Old Client Pills */

.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.client-pill {
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: #315064;
}

/* Professional Client Logo Carousel */

.client-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(20, 158, 210, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fcff 0%, #eef7fc 100%);
}

.client-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 91, 130, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 91, 130, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.client-showcase .container {
  position: relative;
  z-index: 2;
}

.client-showcase-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.client-showcase-head span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(13, 91, 130, 0.1);
  color: #0d5b82;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.client-showcase-head h2 {
  margin: 0 0 12px;
  color: #05233b;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.client-showcase-head p {
  margin: 0;
  color: #526b7d;
  font-size: 16px;
  line-height: 1.7;
}

.client-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 28px;
}

.client-carousel-wrap::before,
.client-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.client-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f4faff 0%, rgba(244, 250, 255, 0) 100%);
}

.client-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f4faff 0%, rgba(244, 250, 255, 0) 100%);
}

.client-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: clientMoveLeft 32s linear infinite;
  will-change: transform;
}

.client-carousel-wrap:hover .client-carousel {
  animation-play-state: paused;
}

.client-logo {
  position: relative;
  width: 200px;
  height: 100px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 91, 130, 0.12);
  box-shadow:
    0 12px 28px rgba(5, 35, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(20, 158, 210, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 158, 210, 0.38);
  box-shadow:
    0 18px 42px rgba(5, 35, 59, 0.13),
    0 0 0 4px rgba(20, 158, 210, 0.08);
}

.client-logo:hover::before {
  opacity: 1;
}

.client-logo img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes clientMoveLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #cbdbe5;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #ffffff;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: #e9f8ee;
  border: 1px solid #bfe7cb;
  color: #1d6b35;
  font-weight: 700;
}

.error {
  background: #fff1f1;
  border-color: #f0b8b8;
  color: #8a2424;
}

/* Footer */

.site-footer {
  background: #082d45;
  color: #cfe4ee;
  padding: 54px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 34px;
}

.footer-brand .brand-mark {
  background: #ffffff;
  color: var(--blue);
}

.footer-brand strong,
.site-footer h4 {
  color: #ffffff;
}

.site-footer a {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 18px;
  color: #9dc0d0;
  font-size: 14px;
}

/* Page Hero */

.page-hero {
  background: linear-gradient(135deg, #082d45, #0b6a98);
  color: #ffffff;
  padding: 85px 0;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  margin: 0 0 12px;
}

.page-hero p {
  color: #d7edf6;
  max-width: 740px;
  font-size: 18px;
}

/* Other */

.two-col-list {
  columns: 2;
}

.timeline {
  border-left: 3px solid var(--blue);
  padding-left: 24px;
}

.timeline .item {
  margin-bottom: 26px;
}

.timeline b {
  color: var(--blue);
}

/* Responsive */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    background: linear-gradient(135deg, #072d45, #0b5b85);
  }

  .hero .container,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
  }

  .stats,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    transform: none;
  }

  .two-col-list {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .client-carousel {
    gap: 14px;
    animation-duration: 25s;
  }

  .client-logo {
    width: 115px;
    height: 70px;
    padding: 10px;
    border-radius: 14px;
  }

  .client-logo img {
    max-height: 40px;
  }

  .client-carousel-wrap::before,
  .client-carousel-wrap::after {
    width: 40px;
  }
}

@media (max-width: 560px) {
  .stats,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .brand strong {
    font-size: 18px;
  }
}

.project-feature-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(24, 162, 214, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
  overflow: hidden;
}

.project-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 22px 60px rgba(9, 33, 52, 0.12);
  position: relative;
  overflow: hidden;
}

.project-feature-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(24, 162, 214, 0.18), transparent 65%);
  pointer-events: none;
}

.project-feature-content {
  position: relative;
  z-index: 2;
}

.project-badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(12, 85, 123, 0.10);
  color: #0c557b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.project-feature-content h2 {
  margin: 16px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: #102030;
  letter-spacing: -1px;
}

.project-feature-content h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #0c557b;
}

.project-feature-content p {
  margin: 0 0 22px;
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.project-stat-box {
  background: #f4faff;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
}

.project-stat-box strong {
  display: block;
  color: #0c557b;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}

.project-stat-box span {
  display: block;
  color: #607080;
  font-size: 12px;
  font-weight: 700;
}

.project-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.project-highlights li {
  position: relative;
  padding-left: 32px;
  color: #315064;
  font-weight: 600;
}

.project-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c557b, #18a2d6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.project-feature-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.project-gallery-main,
.project-gallery-side {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 16px 36px rgba(9, 33, 52, 0.14);
}

.project-gallery-main img,
.project-gallery-side img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-gallery-main:hover img,
.project-gallery-side:hover img {
  transform: scale(1.04);
}

.project-gallery-side {
  width: 86%;
  margin-left: auto;
  margin-top: -36px;
}

@media (max-width: 900px) {
  .project-feature-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .project-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-gallery-side {
    width: 100%;
    margin-top: 0;
  }

  .project-gallery-main img,
  .project-gallery-side img {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .project-feature-section {
    padding: 60px 0;
  }

  .project-feature-card {
    padding: 20px;
    border-radius: 24px;
  }

  .project-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-feature-content h2 {
    font-size: 28px;
  }

  .project-gallery-main img,
  .project-gallery-side img {
    height: 210px;
  }
}

.units-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(24, 162, 214, 0.10), transparent 32%),
    linear-gradient(180deg, #eef5f8 0%, #f8fbfd 100%);
}

.units-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 85, 123, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 85, 123, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.units-showcase .container {
  position: relative;
  z-index: 2;
}

.units-grid {
  display: grid;
  gap: 34px;
}

.unit-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(9, 33, 52, 0.10);
  overflow: hidden;
  position: relative;
}

.unit-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 162, 214, 0.16), transparent 68%);
}

.unit-card.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.unit-card.reverse .unit-content {
  order: 2;
}

.unit-card.reverse .unit-gallery {
  order: 1;
}

.unit-content {
  position: relative;
  z-index: 2;
}

.unit-number {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(12, 85, 123, 0.10);
  color: #0c557b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.unit-content h3 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  color: #102030;
  letter-spacing: -1px;
}

.unit-content p {
  margin: 0 0 20px;
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.unit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.unit-list li {
  position: relative;
  padding-left: 32px;
  color: #315064;
  font-weight: 700;
}

.unit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c557b, #18a2d6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.unit-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.unit-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  border: 8px solid #ffffff;
  box-shadow: 0 14px 32px rgba(9, 33, 52, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.unit-gallery img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 46px rgba(9, 33, 52, 0.18);
}

.units-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .unit-card,
  .unit-card.reverse {
    grid-template-columns: 1fr;
  }

  .unit-card.reverse .unit-content,
  .unit-card.reverse .unit-gallery {
    order: unset;
  }

  .unit-gallery img {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .unit-card {
    padding: 22px;
    border-radius: 24px;
  }

  .unit-gallery {
    grid-template-columns: 1fr;
  }

  .unit-gallery img {
    height: 220px;
  }

  .units-cta {
    display: grid;
  }
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.process-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(24, 162, 214, 0.10), transparent 30%),
    linear-gradient(180deg, #eef5f8 0%, #f8fbfd 100%);
}

.process-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 85, 123, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 85, 123, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.process-showcase .container {
  position: relative;
  z-index: 2;
}

.process-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(9, 33, 52, 0.10);
  overflow: hidden;
  position: relative;
}

.process-feature-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 162, 214, 0.16), transparent 68%);
}

.process-feature-content {
  position: relative;
  z-index: 2;
}

.process-badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(12, 85, 123, 0.10);
  color: #0c557b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.process-feature-content h3 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  color: #102030;
  letter-spacing: -1px;
}

.process-feature-content p {
  margin: 0 0 22px;
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.process-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.process-stat-box {
  background: #f4faff;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
}

.process-stat-box strong {
  display: block;
  color: #0c557b;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.process-stat-box span {
  display: block;
  color: #607080;
  font-size: 12px;
  font-weight: 700;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.process-step-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 8px 20px rgba(9, 33, 52, 0.05);
  font-weight: 700;
  color: #315064;
}

.step-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c557b, #18a2d6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.process-feature-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.process-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  border: 8px solid #ffffff;
  box-shadow: 0 14px 32px rgba(9, 33, 52, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-gallery-item img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 46px rgba(9, 33, 52, 0.18);
}

@media (max-width: 900px) {
  .grid.two {
    grid-template-columns: 1fr;
  }

  .process-feature-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .process-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-gallery-item img {
    height: 240px;
  }
}

@media (max-width: 560px) {
  .process-stats-grid,
  .process-steps-grid,
  .process-feature-gallery {
    grid-template-columns: 1fr;
  }

  .process-gallery-item img {
    height: 220px;
  }
}
/* Projects Page - Electric Control Panels Showcase */

.panels-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(24, 162, 214, 0.11), transparent 32%),
    linear-gradient(180deg, #eef5f8 0%, #f8fbfd 100%);
}

.panels-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 85, 123, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 85, 123, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.panels-showcase .container {
  position: relative;
  z-index: 2;
}

.panels-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(9, 33, 52, 0.10);
  position: relative;
  overflow: hidden;
}

.panels-feature-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 162, 214, 0.16), transparent 68%);
}

.panels-gallery,
.panels-content {
  position: relative;
  z-index: 2;
}

.panels-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panels-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  border: 8px solid #ffffff;
  box-shadow: 0 14px 32px rgba(9, 33, 52, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panels-image img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 46px rgba(9, 33, 52, 0.18);
}

.panels-content h3 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  color: #102030;
  letter-spacing: -1px;
}

.panels-content p {
  margin: 0 0 22px;
  color: #607080;
  font-size: 16px;
  line-height: 1.8;
}

.panel-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin: 22px 0;
}

.panel-stat {
  background: #f4faff;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  padding: 15px 10px;
  text-align: center;
}

.panel-stat strong {
  display: block;
  color: #0c557b;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.panel-stat span {
  display: block;
  color: #607080;
  font-size: 12px;
  font-weight: 700;
}

/* Manufacturing Scope Section */

.manufacturing-showcase {
  background:
    radial-gradient(circle at bottom left, rgba(24, 162, 214, 0.08), transparent 30%),
    #f8fbfd;
}

.manufacturing-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}

.manufacturing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.manufacturing-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  padding: 17px;
  box-shadow: 0 10px 26px rgba(9, 33, 52, 0.06);
}

.manufacturing-item span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c557b, #18a2d6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.manufacturing-item p {
  margin: 0;
  color: #315064;
  font-weight: 700;
  line-height: 1.45;
}

.manufacturing-cta {
  background: linear-gradient(135deg, #082d45, #0b6a98);
  color: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(9, 33, 52, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manufacturing-cta h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.manufacturing-cta p {
  margin: 0 0 22px;
  color: #d7edf6;
}

.manufacturing-cta .btn {
  align-self: flex-start;
}

/* Responsive */

@media (max-width: 1000px) {
  .panels-feature-card,
  .manufacturing-card {
    grid-template-columns: 1fr;
  }

  .manufacturing-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .panels-feature-card {
    padding: 22px;
    border-radius: 24px;
  }

  .panels-gallery {
    grid-template-columns: 1fr;
  }

  .panels-image img {
    height: 230px;
  }

  .manufacturing-list {
    grid-template-columns: 1fr;
  }

  .manufacturing-cta {
    padding: 24px;
  }

  .manufacturing-cta .btn {
    width: 100%;
  }
}