.elementor-13 .elementor-element.elementor-element-773a38e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-d82e6f2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-067a93e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-77e56b7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-a8d6eb7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-7d8b5d1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-416faaa */@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #052f49;
  --navy-dark: #021f31;
  --blue: #0b658f;
  --cyan: #67cce6;
  --yellow: #f4bd3c;
  --white: #ffffff;
  --muted: #b7cbd6;
  --line: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  background: #f4f7f8;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(50, 168, 207, 0.18),
      transparent 32%
    ),
    linear-gradient(125deg, var(--navy-dark), var(--navy));
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 72px;
  width: min(100% - 80px, 1320px);
  min-height: 760px;
  margin-inline: auto;
  padding-block: 70px;
}


/* Content */

.hero__content {
  max-width: 610px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.hero__eyebrow span {
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -3.5px;
  line-height: 1.06;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero__description {
  max-width: 560px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.75;
}


/* Round buttons */

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-button svg {
  width: 18px;
  margin-left: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button--primary {
  color: var(--navy-dark);
  background: var(--yellow);
  box-shadow: 0 14px 35px rgba(244, 189, 60, 0.2);
}

.hero-button--primary:hover {
  background: #ffd15d;
}

.hero-button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}


/* Credentials */

.hero__credentials {
  display: flex;
  gap: 34px;
  margin-top: 43px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credential svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.credential strong,
.credential span {
  display: block;
}

.credential strong {
  font-size: 13px;
  font-weight: 700;
}

.credential span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}


/* Contact */

.hero__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
  font-size: 12px;
}

.hero__contact > span:first-child {
  color: var(--muted);
}

.hero__contact a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero__contact a:hover {
  color: var(--yellow);
}

.hero__contact-line {
  width: 1px;
  height: 15px;
  background: var(--line);
}


/* Clean gallery — no overlapping */

.hero__gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 590px;
}

.project-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--navy-dark);
}

.project-image--large {
  grid-row: 1 / 3;
}

.project-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(1, 24, 38, 0.85),
      transparent 50%
    );
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.project-image:hover img {
  filter: brightness(1.05);
  transform: scale(1.04);
}

.project-image figcaption {
  position: absolute;
  right: 23px;
  bottom: 22px;
  left: 23px;
  z-index: 2;
}

.project-image figcaption span,
.project-image figcaption strong {
  display: block;
}

.project-image figcaption span {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.project-image figcaption strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}


/* Tablet */

@media (max-width: 1050px) {
  .hero__container {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 760px);
    gap: 55px;
    padding-block: 80px;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__gallery {
    height: 600px;
  }
}


/* Mobile */

@media (max-width: 600px) {
  .hero__container {
    width: min(100% - 28px, 760px);
    padding-block: 60px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .hero__description {
    font-size: 15px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .hero__credentials {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero__contact-line {
    display: none;
  }

  .hero__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 190px;
    height: auto;
    gap: 10px;
  }

  .project-image {
    border-radius: 17px;
  }

  .project-image--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .project-image figcaption {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .project-image figcaption strong {
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c60de2c *//* =========================
   Section 2: Company Intro
========================= */

.company-intro {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #f6f8f9;
}

.company-intro::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(11, 101, 143, 0.055);
  border-radius: 50%;
  content: "";
}

.company-intro__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 90px;
  width: min(100% - 80px, 1320px);
  margin-inline: auto;
}


/* Image grid */

.company-intro__visual {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 250px);
  gap: 14px;
}

.intro-image {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #dce5e9;
}

.intro-image--main {
  grid-row: 1 / 3;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.intro-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(3, 47, 73, 0.18),
    transparent 48%
  );
  content: "";
}

.intro-image:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}


/* Content */

.company-intro__content {
  max-width: 590px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-label span {
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.company-intro h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.08;
}

.company-intro h2 span {
  color: var(--blue);
}

.company-intro__lead {
  margin: 26px 0 0;
  color: #263f4d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.company-intro__text {
  margin: 15px 0 0;
  color: #687b85;
  font-size: 15px;
  line-height: 1.8;
}


/* Principles */

.company-intro__principles {
  display: grid;
  gap: 20px;
  margin-top: 33px;
  padding-top: 30px;
  border-top: 1px solid #dce4e8;
}

.principle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.principle__icon {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  color: var(--blue);
  background: #e5f2f6;
  border-radius: 50%;
  place-items: center;
}

.principle__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.principle strong,
.principle span {
  display: block;
}

.principle strong {
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 700;
}

.principle span {
  margin-top: 3px;
  color: #768790;
  font-size: 12px;
}


/* Rounded button */

.intro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 38px;
  padding: 0 27px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.intro-button svg {
  width: 18px;
  margin-left: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.intro-button:hover {
  background: var(--blue);
  transform: translateY(-3px);
}


/* Tablet */

@media (max-width: 1050px) {
  .company-intro {
    padding: 90px 0;
  }

  .company-intro__container {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 760px);
    gap: 65px;
  }

  .company-intro__content {
    max-width: 700px;
  }
}


/* Mobile */

@media (max-width: 600px) {
  .company-intro {
    padding: 72px 0;
  }

  .company-intro__container {
    width: min(100% - 28px, 760px);
    gap: 48px;
  }

  .company-intro__visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 170px;
    gap: 10px;
  }

  .intro-image {
    border-radius: 17px;
  }

  .intro-image--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .company-intro h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .company-intro__lead {
    font-size: 16px;
  }

  .intro-button {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-beffcf0 *//* =========================
   Section 3: Services
========================= */

.services {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(62, 180, 217, 0.13),
      transparent 25%
    ),
    var(--navy-dark);
}

.services__container {
  width: min(100% - 80px, 1320px);
  margin-inline: auto;
}


/* Heading */

.services__heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.section-label--light {
  color: var(--cyan);
}

.services h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.08;
}

.services h2 span {
  color: var(--cyan);
}

.services__heading-right {
  padding-bottom: 4px;
}

.services__heading-right p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.services__all-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-decoration: none;
  text-transform: uppercase;
}

.services__all-link svg {
  width: 18px;
  margin-left: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.services__all-link:hover svg {
  transform: translateX(5px);
}


/* Service grid */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  overflow: hidden;
  background: #07324b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover {
  background: #08405e;
  transform: translateY(-7px);
}

.service-card__image {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.service-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 31, 49, 0.55),
    transparent 55%
  );
  content: "";
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  filter: brightness(1.06);
  transform: scale(1.045);
}

.service-card__number {
  position: absolute;
  right: 17px;
  bottom: 15px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--navy-dark);
  background: var(--yellow);
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.service-card__content {
  padding: 26px 25px 28px;
}

.service-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  color: var(--cyan);
  background: rgba(103, 204, 230, 0.09);
  border-radius: 50%;
  place-items: center;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  min-height: 48px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.35;
}

.service-card p {
  min-height: 67px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card__link svg {
  width: 17px;
  margin-left: 10px;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.service-card__link:hover svg {
  transform: translateX(5px);
}


/* Bottom CTA */

.services__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.services__cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services__cta strong {
  color: var(--white);
}

.services__button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  color: var(--navy-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.services__button svg {
  width: 18px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.services__button:hover {
  background: #ffd15d;
  transform: translateY(-3px);
}


/* Tablet */

@media (max-width: 1050px) {
  .services {
    padding: 90px 0;
  }

  .services__container {
    width: min(100% - 48px, 900px);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile */

@media (max-width: 650px) {
  .services {
    padding: 72px 0;
  }

  .services__container {
    width: min(100% - 28px, 900px);
  }

  .services__heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .services h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-card__image {
    height: 250px;
  }

  .service-card h3,
  .service-card p {
    min-height: 0;
  }

  .services__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .services__button {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0266579 *//* =========================
   Section 4: Projects
========================= */

.projects {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #f6f8f9;
}

.projects__container {
  width: min(100% - 80px, 1320px);
  margin-inline: auto;
}


/* Heading */

.projects__heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.projects h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.08;
}

.projects h2 span {
  color: var(--blue);
}

.projects__heading-side {
  padding-bottom: 3px;
}

.projects__heading-side > p {
  margin: 0;
  color: #687b85;
  font-size: 14px;
  line-height: 1.8;
}

.projects__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  margin-top: 22px;
  padding: 0 25px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.projects__button svg {
  width: 18px;
  margin-left: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.projects__button:hover {
  background: var(--blue);
  transform: translateY(-3px);
}


/* Project grid */

.projects__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 295px);
  gap: 16px;
}

.project {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
  border-radius: 24px;
  text-decoration: none;
}

.project--featured {
  grid-row: 1 / 3;
}

.project > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.7s ease,
    transform 0.7s ease;
}

.project:hover > img {
  filter: brightness(1.04);
  transform: scale(1.045);
}

.project__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 27, 42, 0.94) 0%,
      rgba(2, 31, 48, 0.34) 54%,
      rgba(2, 31, 48, 0.3) 100%
    );
}

.project__top {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project__category {
  padding: 9px 14px;
  color: var(--navy-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.project__number {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
}

.project__content {
  position: absolute;
  right: 27px;
  bottom: 26px;
  left: 27px;
}

.project__content p {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project__content h3 {
  max-width: 450px;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.25;
}

.project--featured .project__content h3 {
  font-size: clamp(30px, 3vw, 43px);
}

.project__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  opacity: 0;
  text-transform: uppercase;
  transition:
    max-height 0.35s ease,
    margin 0.35s ease,
    opacity 0.35s ease;
}

.project:hover .project__action {
  max-height: 48px;
  margin-top: 19px;
  opacity: 1;
}

.project__action > span {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 50%;
  place-items: center;
}

.project__action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}


/* Tablet */

@media (max-width: 1000px) {
  .projects {
    padding: 90px 0;
  }

  .projects__container {
    width: min(100% - 48px, 850px);
  }

  .projects__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 440px 280px;
  }

  .project--featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}


/* Mobile */

@media (max-width: 650px) {
  .projects {
    padding: 72px 0;
  }

  .projects__container {
    width: min(100% - 28px, 850px);
  }

  .projects__heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .projects h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .projects__button {
    width: 100%;
  }

  .projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project,
  .project--featured {
    grid-column: auto;
    grid-row: auto;
    height: 360px;
    border-radius: 18px;
  }

  .project__top {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .project__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project__content h3,
  .project--featured .project__content h3 {
    font-size: 25px;
  }

  .project__action {
    max-height: 48px;
    margin-top: 17px;
    opacity: 1;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cb1ddb3 *//* =========================
   Section 5: Work Process
========================= */

.work-process {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #ffffff;
}

.work-process__container {
  width: min(100% - 80px, 1320px);
  margin-inline: auto;
}


/* Heading */

.work-process__heading {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.work-process h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.08;
}

.work-process h2 span {
  color: var(--blue);
}

.work-process__intro {
  margin: 0 0 4px;
  color: #687b85;
  font-size: 14px;
  line-height: 1.8;
}


/* Wide project image */

.work-process__image {
  position: relative;
  height: 430px;
  overflow: hidden;
  margin: 0;
  background: #dce5e9;
  border-radius: 26px;
}

.work-process__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 31, 49, 0.8),
      transparent 50%
    );
  content: "";
}

.work-process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.7s ease,
    transform 0.7s ease;
}

.work-process__image:hover img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.work-process__image figcaption {
  position: absolute;
  right: 35px;
  bottom: 31px;
  left: 35px;
  z-index: 2;
}

.work-process__image figcaption span,
.work-process__image figcaption strong {
  display: block;
}

.work-process__image figcaption span {
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.work-process__image figcaption strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}


/* Process steps */

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
}

.process-list::before {
  position: absolute;
  top: 25px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #d9e2e6;
  content: "";
}

.process-step {
  position: relative;
  padding: 0 29px;
  border-right: 1px solid #e1e7ea;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-step__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.process-step__number {
  display: grid;
  width: 51px;
  height: 51px;
  color: var(--white);
  background: var(--navy);
  border: 6px solid var(--white);
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.process-step__icon {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--blue);
  background: #e9f4f7;
  border-radius: 50%;
  place-items: center;
}

.process-step__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.process-step h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.process-step p {
  margin: 11px 0 0;
  color: #71838c;
  font-size: 12px;
  line-height: 1.75;
}


/* Bottom action */

.work-process__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid #dfe6e9;
}

.work-process__footer p {
  margin: 0;
  color: #61747e;
  font-size: 14px;
}

.process-button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.process-button svg {
  width: 18px;
  margin-left: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-button:hover {
  background: var(--blue);
  transform: translateY(-3px);
}


/* Tablet */

@media (max-width: 1000px) {
  .work-process {
    padding: 90px 0;
  }

  .work-process__container {
    width: min(100% - 48px, 850px);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .process-list::before {
    display: none;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }
}


/* Mobile */

@media (max-width: 650px) {
  .work-process {
    padding: 72px 0;
  }

  .work-process__container {
    width: min(100% - 28px, 850px);
  }

  .work-process__heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .work-process h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .work-process__image {
    height: 330px;
    border-radius: 18px;
  }

  .work-process__image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .work-process__image figcaption strong {
    font-size: 17px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3),
  .process-step:last-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #e1e7ea;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step__top {
    margin-bottom: 17px;
  }

  .work-process__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-button {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d7d99c8 *//* =========================
   Section 6: Project Enquiry
========================= */

.project-enquiry {
  padding: 110px 0;
  background: #eaf0f3;
}

.project-enquiry__container {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  width: min(100% - 80px, 1320px);
  min-height: 690px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--navy-dark);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 31, 49, 0.14);
}


/* Image */

.project-enquiry__visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.project-enquiry__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 31, 49, 0.93),
      rgba(2, 31, 49, 0.05) 65%
    );
  content: "";
}

.project-enquiry__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.7s ease,
    transform 0.7s ease;
}

.project-enquiry__visual:hover img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.project-enquiry__visual-content {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  z-index: 2;
  color: var(--white);
}

.project-enquiry__visual-content p {
  margin: 0 0 11px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.project-enquiry__visual-content h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.12;
}


/* Content */

.project-enquiry__content {
  padding: 65px 70px;
  color: var(--white);
}

.project-enquiry__content h3 {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
}

.project-enquiry__intro {
  max-width: 490px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}


/* Form */

.enquiry-form {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span {
  color: #d7e5ec;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  outline: none;
  font-family: inherit;
  font-size: 12px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 17px;
}

.form-field textarea {
  min-height: 105px;
  padding: 15px 17px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--cyan);
}

.enquiry-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 54px;
  margin-top: 4px;
  padding: 0 27px;
  color: var(--navy-dark);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.55px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.enquiry-form__button svg {
  width: 18px;
  margin-left: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.enquiry-form__button:hover {
  background: #ffd15d;
  transform: translateY(-3px);
}


/* Direct contacts */

.project-enquiry__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 31px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.enquiry-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.enquiry-contact__icon {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  color: var(--cyan);
  background: rgba(103, 204, 230, 0.09);
  border-radius: 50%;
  place-items: center;
}

.enquiry-contact__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.enquiry-contact small,
.enquiry-contact strong {
  display: block;
}

.enquiry-contact small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.enquiry-contact strong {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.enquiry-contact:hover strong {
  color: var(--yellow);
}


/* Tablet */

@media (max-width: 1000px) {
  .project-enquiry {
    padding: 90px 0;
  }

  .project-enquiry__container {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 760px);
  }

  .project-enquiry__visual {
    min-height: 480px;
  }

  .project-enquiry__content {
    padding: 60px;
  }
}


/* Mobile */

@media (max-width: 650px) {
  .project-enquiry {
    padding: 72px 0;
  }

  .project-enquiry__container {
    width: min(100% - 28px, 760px);
    border-radius: 20px;
  }

  .project-enquiry__visual {
    min-height: 360px;
  }

  .project-enquiry__visual-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .project-enquiry__visual-content h2 {
    font-size: 32px;
  }

  .project-enquiry__content {
    padding: 45px 24px;
  }

  .project-enquiry__content h3 {
    font-size: 38px;
  }

  .enquiry-form__row {
    grid-template-columns: 1fr;
  }

  .enquiry-form__button {
    width: 100%;
  }

  .project-enquiry__contacts {
    align-items: flex-start;
    flex-direction: column;
  }
}/* End custom CSS */