@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: "nexusboldrounded_italic";
  src: url("nexusbold-roundeditalic-webfont.woff2") format("woff2"),
    url("nexusbold-roundeditalic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --primary-color: #000;
  --primary-color-hover: #9a3412;
  /* --primary-color: #ff7b00;
  --primary-color-hover: #b65800; */
  /* --primary-color-hover: #454f90; */
  /* --primary-color: #535fab;
  --primary-color-hover: #454f90; */
  --primary-orange: #c2410c;
  --primary-orange-hover: #9a3412;
  --primary-orange-soft: #fff1e8;
  --primary-orange-line: rgba(194, 65, 12, 0.18);
  --primary-blue: var(--primary-orange);
  --primary-blue-hover: var(--primary-orange-hover);
  --primary-blue-color: var(--primary-orange-hover);
  --background-color: #ffffff;
  --background-color-alt: #f4f4f4;
  --borderColor: #eaeaea;
  --grey: #ececec;
  --greyDarker: #dadada;
  /* --primary-hover-color: #373f73; */
  --primary-text-color: #222222;
  --secondary-text-color: #3f3a37;
  --primary-text-color-darker: #000;
  --surface-bg: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
  --surface-bg-soft: linear-gradient(180deg, #ffffff 0%, #fff1e8 100%);
  --surface-border: #f2d3c3;
  --surface-shadow: 0 22px 44px rgba(52, 32, 18, 0.07);
  --surface-shadow-soft: 0 14px 30px rgba(52, 32, 18, 0.05);
  --surface-radius: 2em;
}

* {
  font-family: "Space Grotesk", "Poppins", Candara, sans-serif, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

/*ANIMATABLE*/
/* initially hide animatable objects */
.animatable {
  visibility: hidden;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

/* show objects being animated */
.animatedScroll {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.reveal-up {
  -webkit-animation-name: revealUp;
  animation-name: revealUp;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@-webkit-keyframes revealUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 36px, 0) scale(0.985);
    transform: translate3d(0, 36px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 36px, 0) scale(0.985);
    transform: translate3d(0, 36px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

html,
body {
  position: relative;
  /* background:
    radial-gradient(circle at top left, rgba(194, 65, 12, 0.08), transparent 0 32%),
    linear-gradient(180deg, #ffffff 0%, #fff8f4 100%); */
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.rowFlex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wrapper {
  /* background-color: red; */
  /* border-radius: 30px; */
  padding: 0em 0em;
  width: 100%;
  max-width: 1400px;
  position: relative;
  /* overflow: hidden; */
}

#contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0em 2em;
}

h6 {
  color: rgba(255, 0, 0, 0);
  font-size: 4em;
  position: fixed;
  left: 5px;
  top: -139px;
  z-index: 999;
}

.boldText {
  font-family: "Poppins" !important;
}

#headerFadeScroll {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
}

#headerHome {
  background-color: var(--primary-color);
  /* background: rgb(21, 161, 255); */
  /* background: linear-gradient(90deg, rgba(21, 161, 255, 1) 0%, rgba(194, 65, 12, 1) 36%, rgba(31, 116, 255, 1) 100%); */
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* border-radius: 25px; */
}

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

#headerHome .headBgOverlay {
  position: relative;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#headerHome h1 {
  color: green;
  font-family: "nexusboldrounded_italic" !important;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-size: 28em;
  color: #fff;
  margin: -5px 0;
  position: absolute;
  bottom: -140px;
  padding: 0px 22px;
  left: 0px;
  overflow: visible;

}

#headerH1 {
  font-family: "nexusboldrounded_italic" !important;
}

#headerHome h1 span {
  font-weight: 400;
}

#headerHome hr {
  width: 50px;
  margin-top: 0;
}

#headerHome h2 {
  font-size: 16px;
  font-weight: 200;
  color: #ffffffcb;
  margin: 0px;
  margin-bottom: 10px;
}

#headerHome h3 {
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 25px;
}

.home-about-section {
  padding: 5.6em 0 2.6em 0;
}

.home-about-section .wrapContain {
  padding-top: 0;
}

.home-about-card {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--surface-radius);
  padding: 2em 1.4em;
  box-shadow: var(--surface-shadow);
}

.home-about-eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a3412;
}

.home-about-section h2 {
  margin: 0 0 0.9em;
  color: var(--primary-text-color);
  text-align: left;
  font-size: 1.8rem;
}

.home-about-section p {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.82;
  margin: 0 0 1.2em;
  max-width: 920px;
}

.home-about-signoff {
  margin-top: 1.8em;
  padding-top: 1em;
  border-top: 1px solid #d8e4f4;
  font-weight: 400;
  color: var(--primary-text-color);
}

.home-about-signoff span {
  display: block;
  margin-top: 6px;
  color: #9a3412;
  font-weight: 600;
}

.home-about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background-color: var(--primary-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-about-link:hover {
  background-color: var(--primary-blue-hover);
  color: #fff;
  transform: translateY(-1px);
}

.sub-header {
  margin: 8em auto 4em auto;
  text-align: center;
  padding: 0 15px;
}

.sub-header h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0px;
}

.sub-header p {
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.titleHeadCta {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  bottom: 310px;
  right: 30px;
}

.titleHeadCta button,
.titleHeadCta .hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 45px;
  padding: .6em 1.2em;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
  width: 160px;
  align-self: flex-end;
  z-index: 100;
  background-color: var(--primary-blue);
  color: #fff;
  /* border: 1px solid #fff; */
}

.titleHeadCta button:hover,
.titleHeadCta .hero-scroll-btn:hover {
  /* border: 0px solid #fff; */
  background-color: var(--primary-blue-hover);
}

#headerHome img {
  width: 120px;
  margin-top: 2rem;
}


h3 {
  font-size: 22px;
  margin: -5px 0px;
  font-weight: 400;
}

h4 {
  color: var(--secondary-text-color);
  /* color: var(--primary-text-color-darker); */
  text-align: center;
  margin: -20px auto 2.5em auto;
  font-size: 15px;
  font-weight: 400;
}

p {
  font-size: 15px;
  color: var(--secondary-text-color);
  line-height: 1.75;
  font-weight: 400;
}

#blueLink {
  color: var(--primary-color);
}


.navImgLogo {
  width: 34px;
  height: auto;
  margin: 0;
  display: block;
}

#navDZN {
  visibility: hidden;
  color: #000;
  margin-left: 8px;
}

.navScroll {
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(16, 28, 44, 0.12);
}

a {
  text-decoration: none;
  color: inherit;
  z-index: 99;
}

.menu {
  background-color: rgba(33, 33, 33, 0.97);
}

nav {
  width: 100%;
  /* background-color: var(--primary-color); */
  background-color: #fff;
  position: fixed;
  top: 55px;
  z-index: 9999999999999999 !important;
  padding: 0 5px;
  transition: box-shadow 0.22s ease, background-color 0.22s ease, backdrop-filter 0.22s ease;
}

nav ul {
  overflow: hidden;
  color: #000;
  padding: 0;
  text-align: center;
  margin: 0;
  -webkit-transition: max-height 0.4s;
  -ms-transition: max-height 0.4s;
  -moz-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  transition: max-height 0.4s;
}

nav ul li {
  display: inline-block;
  padding: 8px 0;
  transition: none;
  font-size: 15px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999990;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

nav ul li:hover {
  cursor: pointer;
  color: inherit;
  transition: none;
}

nav ul li a {
  font-family: "Poppins";
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  color: #162033;
  font-weight: 500;
  transition: none;
}

nav ul li a:hover {
  background: #f2f6fb;
  color: #9a3412;
}

nav ul li a.active {
  background: #fff1e8;
  color: var(--primary-blue);
  font-weight: 600;
}

nav .logo {
  display: none;
  color: var(--primary-text-color);
  align-items: center;
  height: 55px;
  margin: 0 0 0 20px;
  font-size: 1.8em;
  font-weight: 300;
}

nav .logo a {
  display: inline-flex;
  align-items: center;
}

/* nav .logo-handle {
  position: absolute;
  top: 10px;
  left: 10px;
} */

.handle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  background-color: #fff;
  /* background-color: var(--primary-color); */
  box-sizing: border-box;
  padding: 10px 10px;
  height: 55px;
  cursor: pointer;
  color: #000;
  width: 100%;
  z-index: 9999999999999999 !important;
  transition: box-shadow 0.22s ease, background-color 0.22s ease, backdrop-filter 0.22s ease;
}

.handle .mobile-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.handle .mobile-logo .navImgLogo {
  margin: 0;
  width: 28px;
}

.handle i {
  font-size: 1.8em;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}

.contact-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn {
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: none;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #333;
  color: #fff;
}

.contact-btn i,
.contact-btn .contact-icon {
  font-size: 17px !important;
}

.contact-btn.call-btn i {
  font-size: 17px !important;
}


h2 {
  text-align: center;
  color: var(--primary-text-color);
  font-size: 20px;
  font-family: "Poppins", sans-serif, serif;
  font-weight: 700;
  margin: .5em auto 1.6em auto;
}

h2 span {
  font-family: "Poppins", Candara, sans-serif, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

.padding {
  margin: 40px 2em;
  padding: 0;
}

.darker {
  padding: 5em 0 !important;
  background-color: #3f87cf20;
  /* background-color: var(--background-color-alt); */
  /* border-top: 1px solid var(--borderColor); */
  /* border-bottom: 1px solid var(--borderColor); */
  border-radius: 2em;
}

.darker:first-child {
  border-top-left-radius: 0em;
  border-top-right-radius: 0em;
}

.wrapContain {
  max-width: 72.5em;
  margin: 0 auto;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
}

#workBtns {
  text-align: center;
  width: 300px;
  margin: 0 auto;
}

#moreBtn {
  margin-top: 40px;
}

button {
  display: block;
  padding: .6em 1.2em;
  height: 45px;
  background-color: #000;
  color: var(--primary-color);
  border-radius: 100px;
  border: 0px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
}

button:hover {
  background-color: var(--primary-color-hover);
  color: #fff
}

.showcase {
  margin-top: 50px;
  padding: 1rem;
}

.center {
  margin: 0 auto;
  text-align: center;
}

/* #big-tiles {
  display: none !important;
  margin-top: -10px;
  margin-bottom: 2.5em;
}

#big-tiles #big-tile-items li {
  width: 33.33%;
  float: left;
  margin: 1rem 0;
  font-size: 16px !important;
  height: 50%;
}

#big-tiles #big-tile-items {
  padding: 0;
  margin: 0;
}

#big-tiles ul {
  list-style: none;
}

#big-tiles .block {
  cursor: pointer;
  position: relative;
  height: auto;
  width: 100%;
}

#big-tiles figcaption {
  -webkit-backdrop-filter: blur(6px);
  position: absolute;
  bottom: 0px;
  height: 47px;
  background-color: rgba(33, 33, 33, 0.6);
  width: 100%;
  color: var(--primary-text-color);
  padding-top: 10px;
  padding-left: 10px;
  font-family: "Poppins" !important;
  font-size: 1em;
} */

#work {
  margin: 0 auto;
  /* margin-bottom: 2em; */
  width: 100%;
  max-width: 84em;
  padding: clamp(2rem, 3vw, 2.8rem);
  box-sizing: border-box;
  text-align: center;
}

#work h2,
#work h4 {
  text-align: center;
}

#work ul.showcaseToggle {
  color: var(--primary-text-color);
  font-size: 16px;
  text-align: center;
  margin-left: 0px;
  margin-top: 25px;
  padding: 0;
  clear: both;
}

#work ul.showcaseToggle li {
  cursor: pointer;
  display: block;
  background-color: var(--grey);
  /* background-color: #1f1f1f; */
  font-weight: 500;
  padding: 1em;
  margin-right: 5px;
  margin-bottom: 5px;
  width: calc(50% - 5px);
  float: left;
}

#work ul.showcaseToggle li:hover {
  background-color: var(--greyDarker);
  /* color: #fff; */
}

#work ul.showcaseToggle li a {
  color: var(--primary-text-color);
  text-decoration: none;
}

#work ul.showcaseToggle li a:active {
  color: var(--primary-color);
}

#work ul.showcaseToggle li a:hover {
  color: var(--primary-color);
}

#work .button:active,
#work .button.is-checked {
  color: #fff;
  background-color: var(--primary-color);
}

#work .button:active,
#work .button.is-checked:hover {
  color: #fff;
  background-color: var(--primary-color);
}

#work #workItems {
  --work-gap: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--work-gap);
  padding: 0;
  margin: 2.5rem auto 0;
  text-align: left;
}

#work #workItems li {
  width: calc(50% - (var(--work-gap) / 2));
  max-width: calc(50% - (var(--work-gap) / 2));
  flex: 0 1 calc(50% - (var(--work-gap) / 2));
  float: none;
  font-size: 16px !important;
  margin: 0;
  padding: 0;
}

#work #workItems li .innerbox {
  border-radius: 26px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 29, 43, 0.08);
  background: #fff;
}

#work ul {
  list-style: none;
}

#work .block {
  cursor: pointer;
  position: relative;
  height: auto;
  width: 100%;
  --showcase-bg-start: #0c2038;
  --showcase-bg-end: #3678d8;
  --showcase-text: #ffffff;
  --showcase-muted: rgba(255, 255, 255, 0.78);
  --showcase-line: rgba(255, 255, 255, 0.18);
  --showcase-chip-bg: rgba(255, 255, 255, 0.14);
  --showcase-chip-color: #ffffff;
  --showcase-shadow: rgba(11, 23, 38, 0.18);
}

#work .containerWork {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#work .showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: clamp(18rem, 29vw, 23rem);
  padding: clamp(1.35rem, 1rem + 1vw, 2rem);
  color: var(--showcase-text);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.24), transparent 0 24%),
    radial-gradient(circle at 12% 86%, rgba(255, 255, 255, 0.12), transparent 0 28%),
    linear-gradient(145deg, var(--showcase-bg-start), var(--showcase-bg-end));
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#work .showcase-card::before,
#work .showcase-card::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

#work .showcase-card::before {
  width: 12rem;
  height: 12rem;
  right: -3.2rem;
  top: -3.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(8px);
  opacity: 0.95;
}

#work .showcase-card::after {
  display: none;
}

#work .showcase-card:hover,
#work .showcase-card:focus-visible {
  transform: scale(1.018);
  box-shadow: 0 24px 52px var(--showcase-shadow);
}

#work .showcase-card:hover::before,
#work .showcase-card:focus-visible::before {
  transform: scale(1.08) translate(-8px, 10px);
}

#work .showcase-card:hover::after,
#work .showcase-card:focus-visible::after {
  opacity: 0;
  transform: none;
}

#work .showcase-kicker,
#work .showcase-tags,
#work .showcase-tag,
#work .showcase-cta {
  position: relative;
  z-index: 1;
}

#work .showcase-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--showcase-line);
  background: var(--showcase-chip-bg);
  color: var(--showcase-chip-color);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

#work .showcase-main {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

#work .showcase-main h3 {
  margin: 0;
  max-width: 12ch;
  color: var(--showcase-text);
  font-size: clamp(2rem, 1.1rem + 2vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

#work .showcase-main p {
  max-width: 26ch;
  margin: 1rem 0 0;
  color: var(--showcase-muted);
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 400;
}

#work .showcase-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
}

#work .showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 75%;
}

#work .showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  border: 1px solid var(--showcase-line);
  color: var(--showcase-chip-color);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

#work .showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--showcase-text);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#work .showcase-cta i {
  transition: transform 0.35s ease;
}

#work .showcase-card:hover .showcase-cta i,
#work .showcase-card:focus-visible .showcase-cta i {
  transform: translateX(4px);
}

#work .showcase-thoughtrewired {
  --showcase-bg-start: #13285f;
  --showcase-bg-end: #3b6ff0;
  --showcase-shadow: rgba(19, 40, 95, 0.28);
}

#work .showcase-dalessio {
  --showcase-bg-start: #302118;
  --showcase-bg-end: #a96f3d;
  --showcase-shadow: rgba(48, 33, 24, 0.28);
}

#work .showcase-truenorth {
  --showcase-bg-start: #29443d;
  --showcase-bg-end: #9f7a4f;
  --showcase-shadow: rgba(56, 40, 17, 0.24);
}

#work .showcase-soundsphere {
  --showcase-bg-start: #5a0d63;
  --showcase-bg-end: #ff0beb;
  --showcase-shadow: rgba(90, 13, 99, 0.28);
}

#work .showcase-avenyn {
  --showcase-bg-start: #10334f;
  --showcase-bg-end: #2882b7;
  --showcase-shadow: rgba(16, 51, 79, 0.26);
}

#work .showcase-castor {
  --showcase-bg-start: #1d3d44;
  --showcase-bg-end: #6d9f8c;
  --showcase-shadow: rgba(15, 48, 54, 0.25);
}

#work .showcase-pizarros {
  --showcase-bg-start: #6f171e;
  --showcase-bg-end: #e54242;
  --showcase-shadow: rgba(111, 23, 30, 0.28);
}

#work .showcase-host {
  --showcase-bg-start: #232778;
  --showcase-bg-end: #6e6fda;
  --showcase-shadow: rgba(35, 39, 120, 0.28);
}

#work .showcase-cannections {
  --showcase-bg-start: #234f17;
  --showcase-bg-end: #4c9a2a;
  --showcase-shadow: rgba(35, 79, 23, 0.26);
}

.section {
  margin: 8em 0;
  padding: 3em 0;
  clear: both;
}

#services {
  margin-top: 0px;
  background: transparent !important;
}

#services.section,
#testimonials.section,
#contact .section.padding {
  margin: clamp(3.2em, 6vw, 5.2em) 0;
}

#testimonials.section {
  margin-top: clamp(4.4em, 7.2vw, 6.6em);
  margin-bottom: clamp(1.6em, 3vw, 2.4em);
}

#work.section.padding {
  margin-top: clamp(3.2em, 6vw, 5.2em);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(7.2em, 10.5vw, 9.8em);
}

#services.section {
  width: min(calc(100% - 2rem), 84em);
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(0.8em, 1.8vw, 1.4em);
  padding: clamp(2rem, 3vw, 2.8rem);
}

#contact .section.padding {
  padding: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0;
}

#services .wrapContain {
  max-width: none;
  padding: 0;
}

#services h2 {
  margin-bottom: 0.55rem;
}

#services h4 {
  margin-top: 0;
}

.service-box-full {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(194, 65, 12, 0.14);
  padding: 22px;
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--surface-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#services .service-box-full {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
  border: 1px solid rgba(194, 65, 12, 0.16);
  box-shadow: 0 18px 42px rgba(52, 32, 18, 0.06);
}

#services .service-box-full:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 65, 12, 0.28);
  box-shadow: 0 18px 30px rgba(52, 32, 18, 0.08);
}

#rocketImg {
  max-height: 150px;
  display: flex;
  justify-content: flex-end;
}

.service-box-full .cloudLogo {
  display: none;
}

.service-box-full h4 {
  color: #000;
  font-size: 14px !important;
  margin: 0px;
  margin-bottom: 6px !important;
  text-align: left;
  font-family: "Poppins" !important;
}

.service-box-full p {
  font-size: 14px !important;
  margin: 0px 20px 0 0;
  line-height: 1.5;
  font-weight: 400;
}

.service-box-full button {
  margin-top: 20px;
  background-color: #d5d5ff;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-radius: 50px;
  border: none;
  padding: 6px 16px;
  height: 40px;
  transition: 0.15s;
}

.service-box-full button:hover {
  background-color: #ffafe2;

}

.twoColTiles {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.split {
  width: 100% !important;
  margin: 0px;
}

.split img {
  max-height: 100px !important;
}


.service-icons {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.service-box {
  float: left;
  width: 33.33%;
  /* margin: 1em auto 1em auto; */
  text-align: center;
  padding-top: 25px;
  /* background-color: #f7f6ff */
}

.service-icons i {
  font-size: 26px;
  padding: 1.2em 1.8em;
  border-radius: 20px;
  transition: .2s;
  margin-bottom: 0.3em;
  /* background-color: var(--primary-color); */
  /* background-color: var(--background-color); */

  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.065), 0 1px 3px rgba(0, 0, 0, 0.06); */

  /* color: #f7f6ff; */
  color: var(--primary-color);
  /* background-color: rgba(255, 255, 255, 0.089); */
}

.service-icons i:hover {
  cursor: pointer;
  background-color: #e7e5ee;
  transition: .2s;
  transform: scale(1.02);
}

.service-icons img:hover~h4 {
  color: var(--primary-color);
}

.service-icons i:hover~li {
  color: #000;
}

.service-icons h4 {
  color: var(--primary-text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px 0px;
  margin-top: 0px;
  text-align: center;
}

.webHostingBox h4 {
  font-weight: 500;
  margin-bottom: 4px;
}

.webHostingBox i {
  margin-bottom: 10px;
  font-size: 1.6em;
}

.webHostingBox p {
  font-weight: 400;
}

#testimonials.testimonials-section {
  --social-inline-pad: clamp(1.2em, 3vw, 3em);
  max-width: 72.5em;
  margin-left: auto;
  margin-right: auto;
  padding: 3.2em 0 3em;
  background: var(--surface-bg-soft);
  border: 1px solid var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
}

#testimonials .testimonial-heading-row,
#testimonials #carousel,
#testimonials #reviews {
  max-width: 72.5em;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

#testimonials #reviews {
  margin: 0 auto;
  padding-top: clamp(0.2em, 0.8vw, 0.6em);
  padding-left: var(--social-inline-pad) !important;
  padding-right: var(--social-inline-pad) !important;
}

#testimonials #carousel {
  margin-top: 15px;
  padding-top: 0;
  padding-left: var(--social-inline-pad) !important;
  padding-right: var(--social-inline-pad) !important;
}

#testimonials .testimonial-heading-row {
  border-top: 1px solid var(--surface-border);
  padding-left: var(--social-inline-pad) !important;
  padding-right: var(--social-inline-pad) !important;
  padding-top: clamp(1.2em, 2.2vw, 1.9em);
  padding-bottom: 6px;
  margin-top: clamp(1.2em, 2.4vw, 2em);
  margin-bottom: 0 !important;
}

#testimonials .testimonial-heading-row h2 {
  text-align: left;
  margin: 0;
  margin-top: 1em;
}

#testimonials p {
  color: var(--primary-text-color);
  font-size: 14px;
}

/* .process-box {
  position: relative;
  float: left;
  width: 100%;
  margin: 1em 0;
  margin-right: 6%;
  padding: 2em 2em;
    background-color: var(--greyDarker);

  border-bottom: 1px solid #f2f2f230;
}

.process-box:last-child {
  margin-right: 0px;
}

.process-box i {
  position: absolute;
  font-size: 3em;
  top: 32px;
  right: 30px;
  color: #272727;
}

.process-box h4 {
  font-size: 2em;
  margin-top: 0;
  color: var(--primary-text-color);
  margin-left: 30px;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Poppins" !important;
}

.process-box ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.process-box li {
  text-align: left;
  padding-left: 1em;
  text-indent: -.7em;
  color: var(--primary-text-color);
  font-size: 18px;
}

.process-box li::before {
  content: "• ";
  color: var(--primary-color);
  padding-right: 10px;
} */

form {
  font-size: 0;
  border: none;
  color: var(--primary-text-color);
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
}

#topForm input {
  /* Mobile only */
  margin-bottom: 14px !important;
}

#topForm input[type=text],
#topForm input[type=email] {
  -webkit-appearance: none;
  margin: 0 0 0 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 44px;
  padding: 8px 12px;
  font-size: 15px;
  background-color: #ffffff;
  border: 1px solid #f2d3c3;
  border-radius: 12px;
}

#topForm input[type=text]:focus,
#topForm input[type=email]:focus {
  background-color: #ffffff;
  border-color: #d97706;
  outline: none;
}

#topForm textarea {
  -webkit-appearance: none;
  width: 100%;
  min-height: 170px;
  height: 170px;
  margin: -2px 0 0 0;
  padding: 12px;
  font-size: 15px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #f2d3c3;
  resize: vertical;
}

#topForm textarea:focus {
  background-color: #ffffff;
  border-color: #d97706;
  outline: none;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#topForm select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #ffffff;
  width: 100%;
  height: 44px;
  padding: 8px 40px 8px 12px;
  margin-bottom: 14px;
  font-size: 15px;
  border: 1px solid #f2d3c3;
  border-radius: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z" fill="%2300000085"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 30px;
}

/* Style adjustments for when the select box is focused */
#topForm select:focus {
  background-color: #ffffff;
  border-color: #d97706;
  outline: none;
}


.btn-submit {
  -webkit-appearance: none;
  margin: 1.5em 0;
  border: none;
  /* width: 100%; */
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--primary-blue);
  border-radius: 60px;
  transition: 0.15s;
  color: #fff;
}

.btn-submit i {
  margin-left: 8px;
}

.btn-submit:hover {
  background-color: var(--primary-blue-hover);
}

#contact #form,
#contact .feedback {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#contact .feedback {
  margin-top: 0.4rem;
  min-height: 0;
}

#contact .feedback p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d8e4f2;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

#contact .feedback.is-error p {
  border-color: #f0caca;
  background: #fff4f4;
  color: #8f2c2c;
}

#contact .feedback:empty {
  display: none;
}


.testimonial-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(0.7rem, 1.2vw, 1rem) clamp(0.2rem, 1vw, 0.8rem) 0.55rem;
  transition: height 320ms ease;
  touch-action: pan-y;
}

.testimonial-slider:focus-visible {
  outline: 2px solid #c2410c;
  outline-offset: 3px;
}

.testimonial-item {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s;
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
}

.testimonial-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-item p {
  font-size: clamp(1.06rem, 1.75vw, 1.28rem);
  line-height: 1.85;
  text-align: left;
  margin: 0;
}

.testimonial-author {
  margin-top: 1rem !important;
  font-style: normal;
  font-weight: 600;
  color: #9a3412 !important;
  letter-spacing: 0.01em;
}

.prev-btn,
.next-btn {
  font-size: 14px;
  cursor: pointer;
  position: static;
  transform: none;
  background-color: #ffffff;
  color: #9a3412;
  border: 1px solid #f2d3c3;
  border-radius: 50px;
  height: 38px;
  width: 38px;
  padding: 0;
  flex: 0 0 38px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

.prev-btn:focus-visible,
.next-btn:focus-visible {
  outline: 2px solid #c2410c;
  outline-offset: 2px;
}

.slider-contain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.6rem;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  flex-wrap: nowrap;
}

.slider-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 24px;
}

.slider-pagination .dot {
  display: inline-flex;
  height: 12px;
  width: 12px;
  border-radius: 999px;
  border: 1px solid #f1c8b3;
  background-color: #fff1e8;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.slider-pagination .dot:hover {
  transform: scale(1.12);
}

.slider-pagination .dot:focus-visible {
  outline: 2px solid #c2410c;
  outline-offset: 2px;
}

.slider-pagination .dot.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

@media only screen and (max-width: 39em) {
  #work {
    padding: 0 1rem;
  }

  #work h2 {
    margin: 0 auto 0.85rem;
  }

  #work h4 {
    max-width: 26rem;
    margin: 0 auto 1.8rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  #work #workItems {
    --work-gap: 1.35rem;
    margin-top: 1.95rem;
  }

  #work #workItems li {
    width: 100%;
    max-width: 100%;
    flex: 0 1 100%;
  }

  #work .showcase-card {
    display: block;
    min-height: auto;
    padding: 1.9rem 1.95rem 1.9rem;
  }

  #work .showcase-main {
    margin: 2.15rem 0 0;
    padding-top: 0;
  }

  #work .showcase-main h3 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    line-height: 1.02;
  }

  #work .showcase-main p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.72;
    margin-top: 1.2rem;
  }

  #work .showcase-meta {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    margin-top: 1.9rem;
  }

  #work .showcase-tags {
    max-width: 100%;
    gap: 0.65rem;
  }

  #work .showcase-kicker,
  #work .showcase-tag {
    min-height: 2.1rem;
    padding: 0.38rem 0.72rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  #work .showcase-kicker {
    text-transform: none;
  }

  #work .showcase-cta {
    width: 100%;
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 1rem;
    margin-top: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.95rem;
  }

  #work .showcase-card:hover,
  #work .showcase-card:focus-visible {
    transform: none;
    box-shadow: none;
  }

  #work .showcase-card:hover::before,
  #work .showcase-card:focus-visible::before {
    transform: none;
  }

  .home-about-section h2 {
    font-size: 2.1rem;
  }

  .home-about-section p {
    font-size: clamp(1.28rem, 4.4vw, 1.42rem);
    line-height: 1.8;
  }

  #testimonials.testimonials-section {
    --social-inline-pad: 1.65rem;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  #testimonials #reviews {
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.6rem;
    padding-bottom: 0.45rem;
    padding-left: var(--social-inline-pad);
    padding-right: var(--social-inline-pad);
  }

  .reviews-header h4 {
    font-size: 1.42rem;
    line-height: 1.65;
  }

  #testimonials #reviews .btn-google {
    margin-bottom: 14px;
  }

  #testimonials .testimonial-heading-row {
    margin-top: clamp(1.2em, 2.4vw, 2em);
    padding-top: calc(clamp(1.2em, 2.2vw, 1.9em) + 18px);
    padding-left: var(--social-inline-pad);
    padding-right: var(--social-inline-pad);
  }

  .testimonial-slider {
    width: calc(100% - 1.4rem);
    padding: 1rem 0.2rem 1.15rem;
  }

  .testimonial-item p {
    font-size: clamp(1.03rem, 4.2vw, 1.14rem);
    line-height: 1.75;
  }

  .slider-pagination {
    display: flex !important;
    direction: ltr;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: auto;
    margin: 0;
    flex-wrap: nowrap;
  }

  .slider-contain {
    margin-top: 2.1rem;
  }

  .prev-btn,
  .next-btn {
    height: 36px;
    width: 36px;
    flex-basis: 36px;
  }
}

@media only screen and (max-width: 48em) {
  #testimonials .testimonial-heading-row {
    margin-top: clamp(1.2em, 2.4vw, 2em) !important;
    padding-top: calc(clamp(1.2em, 2.2vw, 1.9em) + 18px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .animatable,
  .animatedScroll,
  .reveal-up,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    visibility: visible !important;
    -webkit-animation: none !important;
    animation: none !important;
  }

  .testimonial-item,
  .testimonial-slider,
  .slider-pagination .dot {
    transition: none !important;
  }
}


footer {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 4em 0 6em 0;
}

#footerImgOttawa {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 350px;
  z-index: 9
}

/* Landscape phone to portrait tablet */
@media screen and (max-width: 39em) {
  nav ul {
    max-height: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 8px;
    transition: max-height 0.4s ease;
  }


  .showing {
    max-height: 30em;
  }

  nav ul li {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    text-align: left;
    border-radius: 12px;
    transition: background-color 0.2s ease;
  }

  nav ul li.menu-item:first-child {
    margin-top: 8px;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
  }

  nav ul li:hover {
    background-color: transparent;
    color: inherit;
  }

  nav ul li a:hover,
  nav ul li a:focus-visible {
    background-color: #f2f6fb;
    color: var(--primary-blue);
  }

  nav ul li a.active {
    background: #fff1e8;
    color: var(--primary-blue);
  }

  nav ul li.contact-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 12px 10px;
    background: none;
  }

  nav ul li.contact-actions .contact-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  nav ul li.contact-actions:hover,
  nav ul li.contact-actions:focus-within {
    background: none;
    color: inherit;
    margin-left: 0;
  }

  .handle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .handle .navImgLogo {
    width: 26px;
  }

}

@media only screen and (min-width: 39em) and (max-width: 59.99em) {
  #work {
    padding: 0 1.5rem;
  }

  #work h4 {
    max-width: 38rem;
    margin: 0.65rem auto 2.1rem;
    line-height: 1.55;
  }

  #work #workItems {
    --work-gap: 1.45rem;
    margin-top: 2.15rem;
  }

  #work #workItems li .innerbox {
    border-radius: 24px;
  }

  #work .showcase-card {
    min-height: 23rem;
    padding: 1.7rem 1.55rem 1.6rem;
  }

  #work .showcase-main {
    padding-top: 3rem;
  }

  #work .showcase-main h3 {
    max-width: 14ch;
    font-size: clamp(2rem, 1.3rem + 1.5vw, 2.55rem);
  }

  #work .showcase-main p {
    max-width: 100%;
    font-size: 1.03rem;
    line-height: 1.62;
    margin-top: 1.15rem;
  }

  #work .showcase-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.9rem;
  }

  #work .showcase-tags {
    max-width: 100%;
    gap: 0.5rem;
  }

  #work .showcase-kicker,
  #work .showcase-tag {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  #work .showcase-kicker {
    text-transform: none;
  }

  #work .showcase-cta {
    margin-top: 0.75rem;
  }
}

@media only screen and (min-width: 39em) {
  #headerHome .headBgOverlay {
    /* margin-top: 5.5em; */
    /* margin-bottom: 6em; */
  }

  #headerHome {
    /* border-radius: 25px; */
    /* margin-top: 5.6em; */
    /* margin-bottom: 3em; */
  }

  #headerHome img {
    width: 130px;
    margin: 0;
  }

  #headerHome h2 {
    font-size: 20px;
  }

  #headerHome h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 30px;
  }

  #headerFadeScroll {
    /* visibility: visible; */
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    position: fixed;
    top: 0px;
    transition: top 0.2s ease-in-out;
    width: 100%;
    /* background-color: var(--primary-color); */
    background-color: #fff;

  }

  nav .logo {
    display: flex;
    align-items: center;
    height: 75px;
    margin: 0 0 0 20px;
  }

  nav ul {
    float: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    right: 0px;
  }

  nav ul li.menu-item:not(.contact-actions) {
    margin: 0 6px;
  }

  /* Desktop: hide email button, keep single call button */
  nav ul li.contact-actions {
    gap: 0;
    margin-left: 12px;
  }

  nav ul li.contact-actions .email-btn {
    display: none;
  }

  nav ul li.contact-actions .call-btn {
    margin-right: 8px;
  }

  nav ul li {
    display: inline;
    margin-right: 0;
  }

  nav ul li:hover {}

  nav ul li a {
    color: #162033;
    font-size: 17px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 999px;
  }

  nav ul li a:hover {
    background: #f2f6fb;
    color: #9a3412;
    cursor: pointer;
    text-decoration: none;
  }

  nav ul li a:active {
    color: var(--primary-text-color);
  }

  nav ul li a.active:hover {
    background: #ffe3d2;
    color: var(--primary-blue);
  }

  .handle {
    display: none;
    position: absolute;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }

  h4 {
    font-size: 16px;
    margin-bottom: 0px;
    margin: 0.5em auto 3em auto;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
  }

  .home-about-section {
    padding: 5.6em 0 0 2.8em;
  }

  .home-about-card {
    padding: 2.4em 2.2em;
  }

  .home-about-section h2 {
    font-size: 2.4rem;
  }
}

/* Portrait tablet to landscape narrow desktop */
@media only screen and (min-width: 48em) {
  .padding {
    margin: 40px 0em;
  }

  #work.section.padding {
    margin-left: auto;
    margin-right: auto;
  }

  #work #workItems li {
    width: calc(50% - (var(--work-gap) / 2));
    max-width: calc(50% - (var(--work-gap) / 2));
    flex: 0 1 calc(50% - (var(--work-gap) / 2));
    float: none;
    margin: 0;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  #headerHome .head {
    padding-top: 70px;
  }

  #headerHome .head h1 {
    margin-top: 0px;
  }

  #headerHome .headBgOverlay {
    height: 56svh;
    margin-top: 5.5em;
    margin-bottom: 6em;
    max-height: 640px;
  }

  #headerHome {
    /* border-radius: 25px; */
    margin-top: 5.6em;
    /* margin-bottom: 3em; */
    /* background-color: red; */
  }

  #headerHome img {
    margin-right: 0px;
    width: 140px;
  }

  #headerHome h1 {
    /* color: blue; */
    font-size: 38em;
    bottom: -300px;
    left: 0px;
    /* //safari fix padding h1 */
    padding: 0px 36px;
  }

  .titleHeadCta {
    position: absolute;
    bottom: 260px;
    right: 30px;
  }

  .home-about-section {
    padding: 2.6em 0 3.2em;
  }

  .home-about-card {
    padding: 2.8em 2.8em 2.5em;
    border-radius: 26px;
  }

  #work ul.showcaseToggle {
    color: #b8b8b8;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
  }

  #work ul.showcaseToggle li {
    font-size: 15px !important;
    cursor: pointer;
    display: inline;
    margin: 5px -2px;
    width: none;
    float: none;
    padding: 6px 25px;
    border-radius: 0px;
    color: var(--primary-text-color);
  }

  /* Styles for the first tab item */
  #work ul.showcaseToggle li:first-child {
    border-top-left-radius: 10px;
  }

  /* Styles for the last tab item */
  #work ul.showcaseToggle li:last-child {
    border-top-right-radius: 10px;
  }

  #work ul.showcaseToggle li:hover {
    /* color: #fff; */
  }

  #work ul.showcaseToggle li:active {
    background-color: var(--primary-color);
    opacity: 0.50;
    color: #fff;
  }

  #work .button:active,
  #work .button.is-checked {
    background-color: var(--primary-color);
    color: #fff;
    /* font-weight: 600; */
  }

  #work ul.showcaseToggle li a {
    color: #333333;
    text-decoration: none;
  }

  .twoColTiles {
    flex-direction: row;
  }

  .service-icons {
    width: 100%;
    margin: -1em auto 2em auto;
  }

  .service-box {
    width: 20%;
  }

  .service-icons i {
    font-size: 24px;
    padding: 1.2em 2.4em;
  }

  .service-icons h4 {
    font-size: 14px;
  }

  .service-box-full {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #rocketImg {
    max-height: 180px;
  }

  .service-box-full .cloudLogo {
    width: 100px;
    display: flex;
    margin-right: 30px;
    border-right: 1px solid var(--greyDarker);
  }

  .service-box-full h4 {
    font-size: 16px !important;
  }

  .service-box-full p {
    font-size: 15px !important;
  }

  #topForm input {
    /* Mobile only */
    margin-bottom: 14px !important;
  }

  form #topForm input[type=text],
  form #topForm input[type=email] {
    width: 49%;
    height: 42px;
    font-size: 15px;
    padding: 7px 12px;
  }

  form #topForm input[type=text]:nth-child(2n),
  form #topForm input[type=email]:nth-child(2n) {
    margin-left: 1.9%;
  }

  #topForm select {
    -webkit-appearance: none;
    width: 100%;
    height: 42px;
    padding: 7px 40px 7px 12px;
    margin-bottom: 14px !important;
    font-size: 15px;
  }

  #topForm select:focus {
    background-color: var(--greyDarker);

    outline: none;
  }

  form #topForm textarea {
    min-height: 170px;
    height: 170px;
    font-size: 15px;
    padding: 12px;
  }

  form .btn-submit {
    width: 150px;
    padding: 10px 6px;
  }
}

/* Standard Desktop */
@media only screen and (min-width: 60em) {
  .delay-1 {
    animation-delay: .10s;
  }

  .delay-2 {
    animation-delay: .20s;
  }

  .delay-3 {
    animation-delay: .30s;
  }

  .delay-4 {
    animation-delay: .40s;
  }

  .delay-5 {
    animation-delay: .50s;
  }

  .delay-6 {
    animation-delay: .60s;
  }

  .delay-7 {
    animation-delay: .70s;
  }

  #big-tiles {
    display: block !important;
  }

  .sub-header {
    margin: 10em auto 4em auto;
  }

  .sub-header h1 {
    font-size: 1.8rem
  }

  .sub-header p {
    font-size: 1rem
  }

  #work {
    max-width: 96em;
  }

  #work #workItems {
    --work-gap: 1.4rem;
    justify-content: flex-start;
  }

  #work #workItems li {
    width: calc((100% - (var(--work-gap) * 2)) / 3);
    max-width: calc((100% - (var(--work-gap) * 2)) / 3);
    flex: 0 1 calc((100% - (var(--work-gap) * 2)) / 3);
    float: none;
    margin: 0;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: 0;
    position: relative;
  }

  #work .showcase-card {
    min-height: 21rem;
  }

  #work .showcase-main p {
    font-size: 1.12rem;
  }

  .service-icons h4 {
    font-size: 16px;
  }
}

/* Google Reviews */
#reviews {
  background: transparent;
}

.google-reviews {
  display: grid;
  gap: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-header h2 {
  margin: 0 0 8px;
  text-align: left;
}

.reviews-header h4 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(52, 32, 18, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-google:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(52, 32, 18, 0.24);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.review-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #f2d3c3;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(52, 32, 18, 0.08);
}

.review-card p {
  font-size: clamp(1.14rem, 1.7vw, 1.3rem);
  line-height: 1.82;
  margin: 0;
}

.review-rating {
  color: #f4b400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.reviewer {
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 10px;
}

@media only screen and (min-width: 39em) {
  #reviews.section.padding .google-reviews {
    padding: 2.4em 2.2em;
  }
}

@media only screen and (min-width: 48em) {
  #reviews.section.padding .google-reviews {
    padding: 2.8em 2.8em 2.5em;
    border-radius: 26px;
  }
}

/* Widescreen Desktop */
@media only screen and (min-width: 72.5em) {

  #headerHome {
    border-radius: 25px;
    margin-top: 5.6em;
    margin-bottom: 3em;
  }

  .darker:first-child {
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
  }

  #headerHome .headBgOverlay {
    height: 60svh;
    max-width: 100em;
    max-height: 720px;
  }

  #headerHome h1 {
    /* color: red; */
    font-size: 40em;
    bottom: -300px;
    left: 0px
  }

  .titleHeadCta {
    position: absolute;
    bottom: -50px;
    right: 40px
  }

  #headerHome img {
    width: 160px;
  }

  #work #workItems {
    justify-content: flex-start;
    margin-top: 2.5rem;
  }

  #work #workItems li {
    width: calc((100% - (var(--work-gap) * 3)) / 4);
    max-width: calc((100% - (var(--work-gap) * 3)) / 4);
    flex: 0 1 calc((100% - (var(--work-gap) * 3)) / 4);
    float: none;
    margin: 0;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: 0;
    position: relative;
  }

  #work .showcase-card {
    min-height: 22rem;
  }

  #work .showcase-main h3 {
    max-width: 14ch;
  }

  #work .showcase-main p {
    max-width: 24ch;
  }
}

/* 2026 polish pass: same brand, tighter components */
:root {
  --hndzn-blue-soft: rgba(194, 65, 12, 0.10);
  --hndzn-blue-line: rgba(194, 65, 12, 0.18);
  --hndzn-ink: #111827;
  --hndzn-muted: #4b5565;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(194, 65, 12, 0.28);
  outline-offset: 3px;
}

button,
.home-about-link,
.btn-google,
.btn-submit,
.contact-btn,
.pricing-page .cta-button {
  min-height: 44px;
}

nav,
.handle {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.navScroll {
  background-color: rgba(255, 255, 255, 0.94);
}

body.nav-open {
  overflow: hidden;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.proof-item {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--surface-shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  color: var(--primary-text-color);
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  line-height: 1.1;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.proof-item span {
  margin-top: 6px;
  color: var(--secondary-text-color);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 400;
}

.deliverables-panel {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(194, 65, 12, 0.10), rgba(255, 255, 255, 0.92) 42%),
    #ffffff;
  box-shadow: var(--surface-shadow-soft);
}

.deliverables-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.deliverables-heading h3 {
  margin: 0;
  color: var(--primary-text-color);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  font-weight: 700;
}

.deliverables-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
  font-weight: 400;
  color: var(--body-copy);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(194, 65, 12, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.deliverable-item i {
  flex: 0 0 auto;
  color: var(--primary-blue);
  font-size: 1.6rem;
}

.deliverable-item span {
  min-width: 0;
  color: var(--primary-text-color);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.process-section {
  width: min(calc(100% - 2rem), 84em);
  margin: clamp(4em, 7vw, 6.5em) auto 0;
  padding: clamp(2rem, 3vw, 2.8rem);
  border-radius: var(--surface-radius);
  background: #0b1220;
  box-shadow: 0 24px 60px rgba(12, 26, 43, 0.16);
}

.process-section .wrapContain {
  max-width: none;
  padding: 0;
}

.process-heading h2,
.process-heading h4 {
  color: #fff;
}

.process-heading h2 {
  margin-bottom: 0.45rem;
}

.process-heading h4 {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.process-step {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(194, 65, 12, 0.22);
  color: #fed7aa;
  font-size: 1rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

#topForm input[type=text],
#topForm input[type=email],
#topForm select,
#topForm textarea {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

#topForm input[type=text]:focus,
#topForm input[type=email]:focus,
#topForm select:focus,
#topForm textarea:focus {
  border-color: rgba(194, 65, 12, 0.48);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.10);
}

#contact .section.padding {
  scroll-margin-top: 110px;
}

#about {
  scroll-margin-top: 96px;
}

@media only screen and (max-width: 39em) {
  .home-about-card {
    padding: 1.55em 1.25em;
    border-radius: 22px;
  }

  .home-about-section {
    padding-top: 3.5em;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 14px;
  }

  #services.section {
    width: calc(100% - 1rem);
    padding: 1.15rem;
  }

  .twoColTiles {
    gap: 12px;
    margin-top: 16px !important;
  }

  .service-box-full {
    min-height: 112px;
    padding: 18px;
    border-radius: 18px;
  }

  .service-box-full .rowFlex {
    align-items: flex-start;
  }

  .webHostingBox i {
    font-size: 1.35em;
  }

  .service-box-full h4 {
    font-size: 15px !important;
  }

  .service-box-full p {
    margin-right: 0;
    font-size: 14px !important;
    line-height: 1.55;
  }

  .deliverables-panel {
    border-radius: 20px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    width: calc(100% - 1rem);
    padding: 1.25rem;
    border-radius: 22px;
  }

  .process-heading h2,
  .process-heading h4 {
    text-align: left;
  }

  .process-heading h4 {
    margin: 0;
  }

  nav {
    top: 55px;
    padding: 0 8px 10px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(16, 28, 44, 0.10);
  }

  nav ul.showing {
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  nav ul li a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  nav ul li.contact-actions .contact-btn {
    min-height: 46px;
  }

  .handle {
    box-shadow: 0 8px 20px rgba(16, 28, 44, 0.08);
  }

  #contact {
    padding: 0 1rem;
  }

  #contact .section.padding {
    padding: 1.3rem 0;
  }

  #topForm input[type=text],
  #topForm input[type=email],
  #topForm select {
    height: 48px;
  }

.btn-submit {
  width: 100%;
}
}

.btn-submit:disabled,
.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.76;
}

.btn-submit.is-loading i {
  margin-left: 8px;
}

@media only screen and (min-width: 39em) {
  .proof-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 48em) {
  .deliverables-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 24px;
  }

  .deliverables-heading {
    margin-bottom: 0;
  }

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

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

/* Final scale and contrast pass */
:root {
  --component-radius: 24px;
  --component-border: rgba(194, 65, 12, 0.18);
  --component-shadow: 0 18px 42px rgba(52, 32, 18, 0.07);
  --body-copy: #2f3b4d;
}

body,
p,
h4 {
  color: var(--body-copy);
}

b,
strong,
h1,
h2,
h3,
.service-box-full h4,
.deliverables-heading h3,
.process-step h3,
.proof-item strong {
  font-weight: 800;
}

nav ul li a,
.contact-btn,
.home-about-link,
.btn-google,
.btn-submit,
.hero-scroll-btn,
.pricing-page .cta-button {
  font-weight: 700;
}

.home-about-card,
.proof-item,
.service-box-full,
.deliverables-panel,
#work #workItems li .innerbox,
#testimonials.testimonials-section,
.review-card,
.process-section,
.pricing-page .pricing-card,
.pricing-page .cta-row,
.pricing-page .budget-cta-row,
.contact-form,
.contact-info {
  border-radius: var(--component-radius);
}

.home-about-card,
.proof-item,
.service-box-full,
.deliverables-panel,
.review-card {
  border-color: var(--component-border);
  box-shadow: var(--component-shadow);
}

.home-about-section h2,
#services h2,
#work h2,
#testimonials h2,
#contact h2,
.process-heading h2 {
  max-width: 920px;
  font-size: clamp(2.05rem, 3vw, 3.45rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 700;
}

.home-about-section h2 {
  line-height: 1.18;
}

#services h4,
#work h4,
#contact h4,
.process-heading h4 {
  max-width: 720px;
  font-size: clamp(1.12rem, 1.35vw, 1.42rem);
  line-height: 1.62;
  color: #2f3b4d;
}

.home-about-section p {
  color: var(--body-copy);
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.78;
}

.proof-item span,
.deliverables-subtitle,
.service-box-full p,
.process-step p,
.review-card p,
.testimonial-item p {
  color: var(--body-copy);
}

.process-heading h4,
.process-step p {
  color: rgba(255, 255, 255, 0.84);
}

.process-step {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-step span {
  color: #ffffff;
  background: rgba(194, 65, 12, 0.34);
}

.showcase-main p,
#work .showcase-main p {
  color: rgba(255, 255, 255, 0.86);
}

.showcase-kicker,
.showcase-tag {
  border-color: rgba(255, 255, 255, 0.28);
}

.service-box-full,
.proof-item,
.deliverable-item,
.process-step,
.review-card {
  min-width: 0;
}

@media only screen and (min-width: 60em) {
  .wrapContain {
    max-width: 82em;
  }

  .home-about-card {
    padding: clamp(3rem, 4vw, 4.4rem);
  }

  .proof-strip {
    gap: 18px;
    margin-top: 22px;
  }

  .proof-item {
    padding: 22px 24px;
    min-height: 112px;
  }

  .proof-item strong {
    font-size: clamp(1.35rem, 1.6vw, 1.85rem);
  }

  .proof-item span {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  #services.section,
  #work {
    max-width: 94em;
    padding: clamp(3rem, 4vw, 4.5rem);
  }

  .twoColTiles {
    gap: 24px;
    margin-top: 24px;
  }

  .service-box-full {
    min-height: 180px;
    padding: 34px;
  }

  .service-box-full h4 {
    font-size: 1.25rem !important;
    line-height: 1.22;
  }

  .service-box-full p {
    margin-top: 8px;
    margin-right: 0;
    font-size: 1rem !important;
    line-height: 1.62;
  }

  .webHostingBox i {
    font-size: 2rem;
  }

  .deliverables-panel {
    margin-top: 34px;
    padding: 34px;
    gap: 34px;
  }

  .deliverables-heading h3 {
    font-size: clamp(1.7rem, 2vw, 2.25rem);
  }

  .deliverables-subtitle {
    font-size: 1.08rem;
  }

  .deliverables-grid {
    gap: 14px;
  }

  .deliverable-item {
    min-height: 68px;
    padding: 16px;
  }

  .deliverable-item i {
    font-size: 1.4rem;
  }

  .deliverable-item span {
    font-size: 1rem;
  }

  #work #workItems {
    --work-gap: 1.6rem;
  }

  #work .showcase-card {
    min-height: 26rem;
    padding: 2rem;
  }

  #work .showcase-main h3 {
    font-size: clamp(2.35rem, 2.6vw, 3.1rem);
  }

  #work .showcase-main p {
    font-size: 1.08rem;
  }

  #testimonials.testimonials-section {
    max-width: 82em;
    padding: 4.2em 0 4em;
  }

  .review-grid {
    gap: 22px;
  }

  .review-card {
    padding: 26px;
  }

  .process-section {
    width: min(calc(100% - 2rem), 94em);
    padding: clamp(3rem, 4vw, 4.5rem);
  }

  .process-grid {
    gap: 18px;
  }

  .process-step {
    min-height: 260px;
    padding: 26px;
  }

  .process-step h3 {
    font-size: 1.35rem;
  }

  .process-step p {
    font-size: 1rem;
  }

  #contact #form,
  #contact .feedback {
    max-width: 880px;
  }
}

@media only screen and (min-width: 90em) {
  .wrapper,
  #headerHome {
    max-width: 1560px;
  }

  #services.section,
  #work,
  .process-section {
    max-width: 100em;
  }

  #work .showcase-card {
    min-height: 28rem;
  }
}

@media only screen and (max-width: 39em) {
  .home-about-section h2,
  #services h2,
  #work h2,
  #testimonials h2,
  #contact h2,
  .process-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.18;
  }

  .home-about-section p {
    font-size: 1.14rem;
    line-height: 1.76;
  }

  #services h4,
  #work h4,
  #contact h4,
  .process-heading h4 {
    font-size: 1.12rem;
    line-height: 1.58;
  }

  .proof-item span,
  .service-box-full p,
  .deliverables-subtitle,
  .deliverable-item span,
  #work .showcase-main p,
  .review-card p,
  .testimonial-item p,
  .process-step p {
    font-size: 1.3rem !important;
    line-height: 1.68;
  }

  .proof-item strong,
  .service-box-full h4,
  .deliverables-heading h3,
  .process-step h3 {
    font-size: 1.28rem !important;
  }
}

body,
button,
input,
textarea,
select,
nav ul li a,
h2,
h2 span,
h3,
h4,
p,
.boldText,
.service-box-full h4,
.process-box h4 {
  font-family: "Space Grotesk", "Poppins", Candara, sans-serif, Segoe, "Segoe UI", Optima, Arial, sans-serif !important;
}

#headerHome h1,
#headerH1 {
  font-family: "nexusboldrounded_italic" !important;
}

/* Targeted proportion fixes from desktop review */
#services .service-box-full {
  align-items: flex-start;
  justify-content: center;
}

#services .service-box-full .rowFlex,
#services .webHostingBox {
  width: 100%;
}

#services .service-box-full .rowFlex {
  align-items: center;
}

#services .webHostingBox i {
  color: #2f3b4d;
}

#services .service-box-full h4 {
  color: #000;
}

#services .service-box-full p {
  color: #2f3b4d;
}

.slider-pagination .dot {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
  flex: 0 0 12px !important;
  border-radius: 999px !important;
  padding: 0 !important;
}

.slider-pagination .dot.active {
  width: 28px !important;
  min-width: 28px !important;
  flex-basis: 28px !important;
}

.slider-pagination {
  gap: 10px;
}

.slider-dots {
  gap: 9px;
}

.process-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 65, 12, 0.18), transparent 0 30%),
    #0b1220;
}

.process-heading {
  max-width: 820px;
  margin: 0 auto;
}

.process-heading h2,
.process-heading h4 {
  text-align: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media only screen and (min-width: 60em) {
  #services.section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  #services .twoColTiles {
    gap: 18px;
    margin-top: 18px;
  }

  #services .service-box-full {
    min-height: 235px;
    padding: clamp(2rem, 2.1vw, 2.45rem);
  }

  #services .webHostingBox i {
    font-size: clamp(2.15rem, 2.2vw, 2.55rem);
    margin-bottom: 1.15rem;
  }

  #services .service-box-full h4 {
    font-size: clamp(1.42rem, 1.45vw, 1.72rem) !important;
    line-height: 1.16;
    margin-bottom: 0.85rem !important;
  }

  #services .service-box-full p {
    max-width: 33rem;
    font-size: clamp(1.08rem, 1.05vw, 1.24rem) !important;
    line-height: 1.68;
  }

  #testimonials.testimonials-section {
    max-width: 90em;
  }

  .review-card p {
    font-size: clamp(1.12rem, 1.2vw, 1.28rem);
    line-height: 1.72;
  }

  .testimonial-item p {
    font-size: clamp(1.12rem, 1.25vw, 1.32rem);
    line-height: 1.72;
  }

  .process-section {
    width: min(calc(100% - 3rem), 92em);
    padding: clamp(3.1rem, 3.6vw, 4rem);
  }

  .process-grid {
    gap: 16px;
    margin-top: 2.6rem;
  }

  .process-step {
    min-height: 0;
    padding: clamp(1.55rem, 1.7vw, 2rem);
  }

  .process-step span {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  .process-step h3 {
    margin-top: 1.45rem;
    font-size: clamp(1.45rem, 1.35vw, 1.72rem);
  }

  .process-step p {
    font-size: clamp(1.02rem, 1vw, 1.16rem);
    line-height: 1.62;
  }
}

@media only screen and (min-width: 90em) {
  #services .service-box-full {
    min-height: 250px;
  }

  .process-section {
    max-width: 96em;
  }
}

@media only screen and (max-width: 39em) {
  .slider-pagination .dot.active {
    width: 24px !important;
    min-width: 24px !important;
    flex-basis: 24px !important;
  }

  .process-heading,
  .process-heading h2,
  .process-heading h4 {
    text-align: left;
  }
}

/* Final services/deliverables layout correction */
@media only screen and (min-width: 60em) {
  #services .twoColTiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: 20px;
  }

  #services .twoColTiles>a {
    min-width: 0;
    height: 100%;
  }

  #services .service-box-full {
    min-height: 178px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  #services .service-box-full p {
    max-width: 36rem;
  }

  .deliverables-panel {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    padding: clamp(2.2rem, 3vw, 3.2rem);
  }

  .deliverables-subtitle {
    font-size: clamp(1.18rem, 1.24vw, 1.38rem);
    line-height: 1.72;
    color: #2f3b4d;
  }

  .deliverable-item {
    min-height: 64px;
  }

  .deliverable-item span {
    font-size: clamp(1.04rem, 1vw, 1.16rem);
  }
}

@media only screen and (min-width: 90em) {
  #services .service-box-full {
    min-height: 188px;
  }
}

/* Service card padding balance */
@media only screen and (min-width: 60em) {
  #services.section {
    width: min(calc(100% - 4rem), 98em);
    padding: clamp(2.8rem, 4vw, 4.4rem) 0;
  }

  #services .wrapContain {
    max-width: 88em;
    margin: 0 auto;
  }

  #services .service-box-full {
    padding: clamp(2.2rem, 2.35vw, 2.75rem);
  }

  #services .service-box-full {
    border-radius: 26px;
  }
}

@media only screen and (max-width: 39em) {
  #services .service-box-full {
    padding: 1.75rem;
  }
}

/* Process section visual upgrade */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 65, 12, 0.24), transparent 0 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 0 24%),
    linear-gradient(145deg, #07101f 0%, #0b1220 48%, #111b2b 100%);
}

.process-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.process-heading h2 {
  margin-bottom: 0.75rem;
}

.process-step {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 0%, rgba(194, 65, 12, 0.20), transparent 0 34%);
}

.process-step::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(194, 65, 12, 0.95), rgba(255, 255, 255, 0.26));
}

@media only screen and (min-width: 60em) {
  .process-grid {
    position: relative;
    z-index: 1;
    gap: 16px;
    margin-top: 2.7rem;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(194, 65, 12, 0), rgba(194, 65, 12, 0.62), rgba(194, 65, 12, 0));
    z-index: -1;
  }

  .process-step {
    padding: clamp(1.75rem, 1.9vw, 2.25rem);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  }

  .process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 174, 236, 0.52);
  }

  .process-step span {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 8px rgba(194, 65, 12, 0.12);
  }

  .process-step h3 {
    margin-top: 1.7rem;
  }
}

@media only screen and (max-width: 39em) {
  .process-step::after {
    left: 1.25rem;
    right: 1.25rem;
  }
}

@media only screen and (max-width: 39em) {
  .process-section {
    padding: 1.75rem;
  }

  .process-grid {
    margin-top: 1.9rem;
    gap: 16px;
  }

  .process-step {
    padding: 1.45rem;
  }
}

/* Mobile readability and minimal section treatment */
.home-about-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.home-about-signoff {
  border-top-color: rgba(194, 65, 12, 0.16);
}

@media only screen and (max-width: 39em) {
  .wrapContain {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .home-about-section {
    padding-bottom: 1.5rem;
  }

  .home-about-card {
    padding: 0.25rem 0.1rem;
  }

  .proof-strip {
    margin-top: 1.45rem;
    gap: 12px;
  }

  .proof-item {
    padding: 1.1rem;
    border-radius: 18px;
  }

  #services.section,
  #work,
  #testimonials.testimonials-section,
  .process-section {
    width: calc(100% - 1.1rem);
  }

  #services.section {
    padding: 1.45rem 1.05rem;
  }

  .service-box-full {
    padding: 1.55rem;
    min-height: 146px;
  }

  #services .webHostingBox i {
    margin-bottom: 1rem;
  }

  #services .service-box-full h4 {
    margin-bottom: 0.7rem !important;
  }

  #services .service-box-full p {
    line-height: 1.7;
  }

  .deliverables-panel {
    padding: 1.25rem;
  }

  .deliverable-item {
    padding: 0.95rem 1rem;
  }

  #work {
    padding: 1.45rem 0.55rem;
  }

  #work .showcase-card {
    padding: 1.55rem;
  }

  #testimonials.testimonials-section {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
    border-color: rgba(194, 65, 12, 0.12);
    box-shadow: 0 14px 32px rgba(52, 32, 18, 0.05);
  }

  .review-card {
    padding: 1.2rem;
  }

  .testimonial-slider {
    width: 100%;
  }

  .process-section {
    padding: 1.6rem 1.15rem;
  }

  .process-step {
    padding: 1.3rem;
    border-radius: 18px;
  }

  #contact {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

/* Clean process section reset */
.process-section {
  background: #0b1220;
  overflow: hidden;
}

.process-heading {
  max-width: 760px;
}

.process-heading h2 {
  margin-bottom: 0.65rem;
}

.process-heading h4 {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid::before,
.process-step::before,
.process-step::after {
  display: none !important;
}

.process-step {
  background: #202938;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.process-step:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.24);
}

.process-step span {
  background: #315f91;
  color: #ffffff;
  box-shadow: none;
}

.process-step p {
  color: rgba(255, 255, 255, 0.82);
}

@media only screen and (min-width: 60em) {
  .process-section {
    padding: clamp(3rem, 3.8vw, 4.2rem);
  }

  .process-grid {
    gap: 18px;
    margin-top: 2.8rem;
  }

  .process-step {
    min-height: 0;
    padding: clamp(1.7rem, 1.8vw, 2.15rem);
  }

  .process-step span {
    width: 46px;
    height: 46px;
  }
}

/* Dark deliverables panel to match pricing hero tone */
#services .deliverables-panel {
  background:
    radial-gradient(circle at 84% 4%, rgba(194, 65, 12, 0.28) 0%, rgba(194, 65, 12, 0) 38%),
    linear-gradient(135deg, #05070c 0%, #0b1220 58%, #111827 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 58px rgba(5, 7, 12, 0.18);
}

#services .deliverables-heading h3 {
  color: #ffffff;
}

#services .deliverables-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

#services .deliverable-item {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

#services .deliverable-item i {
  color: #c2410c;
}

#services .deliverable-item span {
  color: #ffffff;
}

@media only screen and (max-width: 48em) {
  #services .deliverables-panel {
    padding: 1.85rem 1.35rem;
  }

  .home-about-link {
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
  }

  .proof-strip {
    margin-top: 2.4rem;
  }

  #headerHome {
    margin-top: 55px;
  }

  #headerHome .headBgOverlay {
    margin-top: 0;
  }

  nav {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.nav-open nav {
    padding: 0 8px 10px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(16, 28, 44, 0.10);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}
