/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  color-scheme: light;

  --white-color:                  #ffffff;
  --primary-color:                #315f7f;
  --secondary-color:              #1688a8;
  --accent-color:                 #8ed9e8;
  --section-bg-color:             #f4fbfd;
  --dark-color:                   #102f49;
  --p-color:                      #496277;
  --soft-shadow-color:            rgba(16, 47, 73, 0.14);

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 60px;
  --h2-font-size:                 42px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               14px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family); 
}

main {
  position: relative;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
  line-height: inherit;
}

h4 {
  font-size: var(--h4-font-size);
  line-height: inherit;
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}

.text-warning {
  color: var(--accent-color) !important;
}

.text-danger {
  color: var(--secondary-color) !important;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  box-shadow: 0 12px 28px var(--soft-shadow-color);
}

.custom-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  transform: translateY(-1px);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.site-masthead {
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1020;
}

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(142, 217, 232, 0.45);
  box-shadow: 0 16px 40px rgba(16, 47, 73, 0.12) !important;
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}

.navbar-brand {
  align-items: flex-end;
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  display: inline-flex;
  gap: 13px;
  line-height: 1.05;
  max-width: min(560px, 72vw);
  min-width: 0;
  white-space: normal;
}

.navbar-brand-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  margin-bottom: 0.03em;
  opacity: 0.7;
  width: clamp(64px, 5.8vw, 86px);
}

.navbar-brand-text {
  display: inline-block;
  min-width: 0;
}

.navbar-nav {
  gap: 14px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 999px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  background: rgba(142, 217, 232, 0.18);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: linear-gradient(90deg, rgba(16, 47, 73, 0.96), rgba(49, 95, 127, 0.88));
  backdrop-filter: saturate(135%) blur(12px);
  -webkit-backdrop-filter: saturate(135%) blur(12px);
  border-bottom: 2px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(16, 47, 73, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 10;
}

.site-header .container {
  padding: 0 18px;
}

.topbar-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 34px;
}

.topbar-actions,
.topbar-link {
  align-items: center;
  display: flex;
}

.topbar-actions {
  flex: 0 0 auto;
  gap: 8px;
  justify-content: flex-end;
  margin-left: auto;
}

.topbar-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white-color);
  gap: 10px;
  line-height: 1;
  min-height: 34px;
  padding: 6px 13px;
  white-space: nowrap;
}

.topbar-link:hover,
.topbar-link:focus {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white-color);
}

.topbar-email {
  padding-inline: 11px;
}

.topbar-email-text {
  font-size: 0.92em;
}

.site-header-icon {
  color: var(--white-color);
  opacity: 0.95;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: clamp(390px, 50vh, 505px);
}

.carousel {
  padding-right: 0;
  padding-left: 0;
}

.hero-carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-image-wrap::before {
  content: "";
  background: linear-gradient(90deg, rgba(16, 47, 73, 0.76), rgba(16, 47, 73, 0.3) 48%, rgba(16, 47, 73, 0.08) 100%);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
}

.carousel-caption {
  z-index: 9;
  top: 60%;
  bottom: 0;
  left: 0;
  text-align: left;
  width: min(920px, 72%);
  margin-right: 12px;
  margin-left: 12px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62), 0 1px 3px rgba(0, 0, 0, 0.68);
}

.carousel-caption h1,
.carousel-caption h2 {
  color: var(--white-color);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
}

.carousel-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 50px;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 70px;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  width: 56px;
  height: 56px;
}


/*---------------------------------------
  TRUST SECTION
-----------------------------------------*/
.trust-section {
  background: transparent;
  left: 0;
  margin-top: 0;
  padding: 18px 0 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 12;
}

.trust-panel {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(115%) blur(8px);
  -webkit-backdrop-filter: saturate(115%) blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-left: 4px solid rgba(22, 136, 168, 0.58);
  border-radius: 12px;
  box-shadow:
    0 14px 34px rgba(16, 47, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) auto;
  padding: 20px 22px;
  pointer-events: auto;
}

.trust-badge-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
}

.trust-bbb-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  min-height: 88px;
  padding: 0;
  width: 100%;
}

.trust-bbb-link:hover,
.trust-bbb-link:focus {
  filter: drop-shadow(0 10px 18px rgba(16, 47, 73, 0.16));
  transform: translateY(-1px);
}

.trust-bbb-seal {
  display: block;
  height: auto;
  max-width: 154px;
  width: 100%;
}

.trust-copy .small-title {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.trust-license-claim {
  display: none;
}

.trust-copy h2 {
  color: var(--dark-color);
  font-size: 26px;
  line-height: 1.1;
  margin: 4px 0 8px;
}

.trust-copy p {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 12px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-points span {
  background: rgba(244, 251, 253, 0.9);
  border: 1px solid rgba(49, 95, 127, 0.16);
  border-radius: 999px;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  padding: 9px 12px;
}

.trust-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-width: 210px;
}

.trust-call-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  text-align: center;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.trust-call-btn:hover,
.trust-call-btn:focus {
  background: linear-gradient(135deg, var(--primary-color), #12314e);
  box-shadow: 0 14px 30px rgba(16, 47, 73, 0.28);
  color: var(--white-color);
}

.trust-review-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(49, 95, 127, 0.28);
  border-radius: 999px;
  color: var(--dark-color);
  display: inline-flex;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.trust-review-link:hover,
.trust-review-link:focus {
  background: linear-gradient(135deg, #5fa2c5, var(--secondary-color));
  border-color: rgba(82, 146, 180, 0.82);
  box-shadow: 0 12px 26px rgba(16, 47, 73, 0.18);
  color: var(--white-color);
  transform: translateY(-1px);
}


/*---------------------------------------
  PROJECT SHOWCASE
  Repeat .chd-project-card figures in the HTML to add images.
-----------------------------------------*/
.chd-project-showcase {
  background: linear-gradient(180deg, var(--section-bg-color), var(--white-color));
  border-top: 1px solid rgba(49, 95, 127, 0.1);
  overflow: hidden;
  padding: clamp(36px, 4vw, 56px) 0 clamp(38px, 5vw, 66px);
  width: 100%;
}

.chd-project-showcase-intro {
  margin: 0 auto 28px;
  max-width: 1320px;
  padding: 0 24px;
}

.chd-project-showcase-intro .small-title {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.chd-project-showcase-intro h2 {
  color: var(--dark-color);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 10px 0 12px;
}

.chd-project-showcase-intro p {
  color: var(--p-color);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
  margin: 0;
  max-width: 860px;
}

.chd-project-showcase-track {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 24px;
}

.chd-project-card {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white-color);
  border: 1px solid rgba(49, 95, 127, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 47, 73, 0.1);
  margin: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chd-project-card:hover {
  box-shadow: 0 18px 44px rgba(16, 47, 73, 0.14);
  transform: translateY(-2px);
}

.chd-project-card:hover img,
.chd-project-card:focus-within img {
  transform: scale(1.015);
}

.chd-project-card img {
  background: rgba(235, 249, 252, 0.9);
  cursor: zoom-in;
  display: block;
  height: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.chd-project-card img:hover,
.chd-project-card img:focus {
  opacity: 0.94;
}

.chd-project-card img:focus-visible {
  outline: 3px solid rgba(142, 217, 232, 0.9);
  outline-offset: -7px;
}

.chd-project-card figcaption {
  background: var(--white-color);
  border-top: 1px solid rgba(49, 95, 127, 0.1);
  padding: 18px 20px 20px;
}

.chd-project-card figcaption span {
  color: var(--dark-color);
  display: block;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 7px;
}

.chd-project-card figcaption small {
  color: var(--p-color);
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.legacy-content-body .project-gallery-section {
  background: transparent;
  border-top: 0;
  margin: 0 0 34px;
  overflow: visible;
  padding: 0;
}

.legacy-content-body .project-gallery-section .chd-project-showcase-intro {
  margin-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.legacy-content-body .project-gallery-section .chd-project-showcase-track {
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  padding-left: 0;
  padding-right: 0;
}

.legacy-content-body .project-gallery-section .chd-project-card {
  display: flex;
  flex-direction: column;
}

.mfp-title {
  color: var(--white-color);
  font-family: var(--body-font-family);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.mfp-title span,
.mfp-title small {
  display: block;
}

.mfp-title small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
  line-height: 1.45;
  margin-top: 7px;
  max-width: 760px;
}

.mfp-title a {
  color: var(--secondary-color);
}

/* END PROJECT SHOWCASE */


/*---------------------------------------
  SERVICE DIRECTORY
-----------------------------------------*/
.service-directory {
  margin-top: 30px;
}

.service-directory > h2 {
  margin-bottom: 8px;
}

.service-jump-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 28px;
}

.service-jump-list a {
  background: rgba(235, 249, 252, 0.78);
  border: 1px solid rgba(142, 217, 232, 0.54);
  border-radius: 8px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 14px;
}

.service-jump-list a:hover,
.service-jump-list a:focus {
  background: var(--white-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

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

.service-card {
  background: var(--white-color);
  border: 1px solid rgba(142, 217, 232, 0.5);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(16, 47, 73, 0.1);
  overflow: hidden;
  scroll-margin-top: 24px;
}

.service-card-image-link {
  display: block;
}

.service-card > .service-card-image-link img {
  display: block;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-card-gutter > .service-card-image-link img {
  object-position: center top;
}

.service-card-content {
  padding: 20px;
}

.service-card h3 {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.service-card h3 a {
  color: inherit;
}

.service-card p {
  margin-bottom: 16px;
}

.service-card-link {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

.service-card-link:hover,
.service-card-link:focus {
  color: var(--secondary-color);
}


/*---------------------------------------
  MIGRATION BASELINE
-----------------------------------------*/
.migration-content-section {
  background: linear-gradient(180deg, var(--white-color), rgba(244, 251, 253, 0.82));
}

.migration-content-section.section-padding {
  padding-top: clamp(42px, 4.8vw, 64px);
}

.hero + .about.section-padding,
.hero + .migration-content-section.section-padding,
.hero + .services.section-padding {
  padding-top: clamp(32px, 3.6vw, 52px);
}

.migration-content-card,
.migration-sidebar-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white-color);
  border: 1px solid rgba(49, 95, 127, 0.11);
  border-radius: 12px;
  box-shadow:
    0 14px 34px rgba(16, 47, 73, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.migration-content-card {
  padding: clamp(26px, 4vw, 44px);
}

.migration-content-card--single {
  margin-left: auto;
  margin-right: auto;
}

.page-utility-links {
  align-items: center;
  border-bottom: 1px solid rgba(49, 95, 127, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  padding-bottom: 18px;
}

.page-utility-links a {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
}

.page-utility-links a:hover,
.page-utility-links a:focus {
  color: var(--dark-color);
}

.legacy-content-intro {
  border-bottom: 1px solid rgba(49, 95, 127, 0.13);
  margin-bottom: 28px;
  padding-bottom: 24px;
}

.legacy-content-intro h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.1;
  margin: 8px 0 12px;
}

.legacy-content-body h2,
.legacy-content-body h3 {
  margin-top: 1.4em;
}

.legacy-content-body img {
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(16, 47, 73, 0.12);
  display: inline-block;
  height: auto;
  margin: 8px 12px 18px 0;
  max-width: 100%;
}

.legacy-content-body .project-gallery-section .chd-project-showcase-intro h2 {
  margin-top: 10px;
}

.legacy-content-body .project-gallery-section .chd-project-card img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: clamp(220px, 20vw, 320px);
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.legacy-content-body .project-gallery-section .chd-project-card figcaption {
  margin-top: 0;
  padding-top: 18px;
}

.legacy-content-body ul,
.legacy-content-body ol {
  padding-left: 1.25rem;
}

.customer-review-quotes {
  margin: 38px 0 42px;
}

.customer-review-quotes__heading {
  margin-bottom: 22px;
}

.customer-review-quotes__heading h2 {
  margin: 8px 0 0;
}

.customer-review-quote {
  background: #f4fbfd;
  border: 1px solid rgba(49, 95, 127, 0.14);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 47, 73, 0.07);
  color: var(--dark-color);
  height: 100%;
  margin: 0;
  padding: 24px;
}

.customer-review-quote p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.review-service-themes {
  border-top: 1px solid rgba(49, 95, 127, 0.13);
  padding-top: 4px;
}

.migration-page-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 251, 253, 0.96)),
    rgba(244, 251, 253, 0.94);
  border: 1px solid rgba(49, 95, 127, 0.1);
  border-left: 4px solid var(--secondary-color);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  margin-top: 34px;
  padding: 22px;
}

.migration-page-cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.legacy-sidebar-extra--migrated {
  border-top: 1px solid rgba(49, 95, 127, 0.13);
  margin-top: 28px;
  padding-top: 24px;
}

.migration-sidebar {
  display: grid;
  gap: 18px;
}

.migration-sidebar-card {
  padding: 24px;
}

.migration-sidebar-card h2 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.service-areas-directory-nav .migration-sidebar-card {
  max-height: none;
}

.service-areas-directory-nav h3 {
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
  margin: 18px 0 6px;
  text-transform: uppercase;
}

.service-areas-directory-nav h2 + h3 {
  margin-top: 0;
}

.migration-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.migration-link-list li + li {
  border-top: 1px solid rgba(49, 95, 127, 0.12);
}

.migration-link-list a,
.migration-link-list-label {
  color: var(--dark-color);
  display: block;
  font-weight: var(--font-weight-medium);
  padding: 10px 0;
}

.migration-link-list a:hover,
.migration-link-list a:focus {
  color: var(--secondary-color);
}

@media screen and (min-width: 992px) {
  .service-areas-directory-nav {
    align-self: start;
    position: sticky;
    top: 24px;
  }

  .service-areas-directory-nav .migration-sidebar-card {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about.section-padding {
  padding-top: clamp(56px, 6vw, 82px);
}

.about-image-wrap {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-flyer-image {
  background: var(--white-color);
  height: auto;
  object-fit: contain;
  padding: 12px;
}

.about-thumb {
  background: var(--primary-color);
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 40px;
}

.about-action-row {
  align-items: stretch;
  margin-top: 18px;
  row-gap: 18px;
}

.about-action-card {
  box-shadow: 0 18px 44px rgba(16, 47, 73, 0.13);
  min-height: 154px;
  overflow: hidden;
  padding: clamp(24px, 2.5vw, 32px);
  position: relative;
  text-align: center;
}

.about-action-card::after {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-action-card .about-info {
  position: relative;
  z-index: 1;
}

.about-action-card h5 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
  margin-bottom: 20px !important;
}

.about-action-card-dark {
  background: linear-gradient(145deg, var(--dark-color), #234568);
}

.about-action-card-blue {
  background: linear-gradient(145deg, var(--secondary-color), #3f7798);
}

.about-card-btn {
  --bs-btn-active-color: var(--white-color);
  --bs-btn-hover-color: var(--white-color);
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--dark-color);
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  justify-content: center;
  line-height: 1.15;
  min-height: 42px;
  padding: 10px 17px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-action-card .about-card-btn:hover,
.about-action-card .about-card-btn:focus {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white-color) !important;
  box-shadow: 0 10px 24px rgba(16, 47, 73, 0.2);
  text-decoration: none;
  transform: translateY(-1px);
}

.about-card-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

@media screen and (min-width: 1200px) {
  .about > .container > .row {
    display: grid;
    gap: 0 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about > .container > .row > [class*="col-"] {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  .about > .container > .row > [class*="col-"]:first-child {
    display: contents;
  }

  .about-image-wrap {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .about > .container > .row > [class*="col-"]:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .about-action-row {
    grid-column: 2;
    grid-row: 2;
    margin-top: -72px;
  }
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services {
  background: var(--section-bg-color);
}

.services.section-padding {
  padding-top: 72px;
  padding-bottom: clamp(46px, 5vw, 68px);
}

.services-feature-photo {
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 47, 73, 0.12);
  height: clamp(260px, 32vw, 390px);
  object-fit: cover;
  width: 100%;
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  color: var(--p-color);
  display: block;
  text-align: left;
}

.nav-tabs .nav-link {
  border-radius: 10px;
  border: 0;
  border-left: 7px solid rgba(49, 95, 127, 0.45);
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 30px;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.68);
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-left-color: var(--secondary-color);
  background: var(--white-color);
  box-shadow: 0 1rem 3rem var(--soft-shadow-color);
}

.nav-tabs .nav-link.active h3,
.nav-tabs .nav-link:focus h3, 
.nav-tabs .nav-link:hover h3 {
  color: var(--primary-color);
}

/*---------------------------------------
  CONTACT INFO               
-----------------------------------------*/
.contact-thumb {
  margin: 0 auto;
}

.contact-info {
  border-radius: 12px;
  padding: 40px;
}

.contact-direct-line a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  max-width: 100%;
}

.contact-icon {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-container-wrap {
  background:
    linear-gradient(135deg, var(--primary-color), var(--dark-color));
  padding: clamp(42px, 5vw, 64px) 0;
}

.contact-container-wrap .contact-info.bg-white {
  box-shadow: 0 18px 42px rgba(16, 47, 73, 0.14);
}

.contact-container-wrap .contact-info {
  padding: clamp(30px, 4vw, 44px);
}

.contact-container-wrap .contact-info,
.contact-container-wrap .contact-info h4,
.contact-container-wrap .contact-info h5,
.contact-container-wrap .contact-info p,
.contact-container-wrap .contact-direct-line a {
  color: var(--white-color);
}

.contact-container-wrap .contact-info.bg-white,
.contact-container-wrap .contact-info.bg-white h4,
.contact-container-wrap .contact-info.bg-white h5,
.contact-container-wrap .contact-info.bg-white .contact-direct-line a {
  color: var(--dark-color);
}

.contact-container-wrap .contact-info.bg-white p {
  color: var(--p-color);
}

.contact-container-wrap .contact-info.bg-white .contact-direct-line a {
  opacity: 1;
}

.contact-container-wrap .contact-info.bg-white .contact-direct-line a:hover,
.contact-container-wrap .contact-info.bg-white .contact-direct-line a:focus {
  color: var(--primary-color);
}

.contact-container-wrap .contact-info p {
  margin-bottom: 18px;
  opacity: 0.88;
}

.contact-container-wrap .contact-direct-line a {
  font-weight: var(--font-weight-medium);
  opacity: 0.94;
}

.contact-container-wrap .contact-direct-line a:hover,
.contact-container-wrap .contact-direct-line a:focus {
  color: var(--accent-color);
  opacity: 1;
}

.contact-container-wrap .contact-direct-line i {
  color: var(--accent-color);
}

.contact-container-wrap .contact-info.bg-white .contact-direct-line i {
  color: var(--primary-color);
}

.contact-container-wrap .contact-direct-line:last-child {
  margin-bottom: 0 !important;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer .copyright-text {
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
}

.footer-contact-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  text-align: center;
}

.footer-contact-line a {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.footer-contact-line a:hover,
.footer-contact-line a:focus {
  color: var(--accent-color);
}

.mobile-call-cta {
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(102, 187, 212, 0.34);
  bottom: 0;
  box-shadow: 0 -10px 26px rgba(16, 47, 73, 0.16);
  color: var(--dark-color);
  display: none;
  font-weight: var(--font-weight-bold);
  gap: 12px;
  justify-content: center;
  left: 0;
  min-height: calc(64px + env(safe-area-inset-bottom));
  padding: 10px 22px calc(10px + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 1040;
}

.mobile-call-cta:hover,
.mobile-call-cta:focus {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 -12px 30px rgba(16, 47, 73, 0.2);
  color: var(--primary-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar-link {
    font-size: 14px;
    gap: 8px;
    min-height: 32px;
    padding: 6px 10px;
  }

  .navbar-brand {
    font-size: 24px;
    gap: 8px;
    max-width: 360px;
  }

  .navbar-brand-logo {
    width: 64px;
  }

  .navbar-nav {
    gap: 4px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero {
    height: clamp(450px, 52vh, 505px);
  }

  .trust-panel {
    gap: 18px;
    grid-template-columns: minmax(130px, 160px) minmax(0, 1fr) minmax(190px, 220px);
    padding: 16px 18px;
  }

  .trust-bbb-link {
    min-height: 74px;
  }

  .trust-copy h2 {
    font-size: 24px;
  }

  .trust-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .trust-points span {
    font-size: 13px;
    padding: 8px 10px;
  }

  .trust-actions {
    min-width: 190px;
  }

  .carousel-caption {
    top: 54%;
    width: min(860px, 70%);
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 48px;
    line-height: 1.1;
  }

  .about.section-padding {
    padding-top: 50px;
  }

  .about-thumb {
    padding: 32px;
  }

  .about-action-row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-action-card {
    min-height: 126px;
    padding: 22px 24px;
    text-align: left;
  }

  .about-action-card .about-info {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
  }

  .about-action-card h5 {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 1199px) {
  .trust-points span:last-child {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(142, 217, 232, 0.5);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(16, 47, 73, 0.14);
    margin-top: 16px;
    padding: 10px;
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
  }

  .navbar-brand {
    max-width: calc(100% - 70px);
  }

  .site-header .container {
    padding: 0 14px;
  }

  .topbar-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .topbar-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 0;
    width: 100%;
  }

  .topbar-link {
    justify-content: center;
    min-width: 0;
    padding: 9px 10px;
  }

  .topbar-email-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .carousel-caption {
    width: calc(100% - 24px);
    top: 42%;
  }

  .trust-section .container,
  .hero .container.position-relative {
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
  }

  .hero .container.position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .trust-section {
    padding: 14px 0 0;
  }

  .trust-panel {
    gap: 14px;
    grid-template-columns: minmax(160px, 184px) minmax(0, 1fr);
    padding: 16px 14px;
  }

  .trust-actions {
    flex-direction: row;
    grid-column: 1 / -1;
    min-width: 0;
  }

  .trust-actions > * {
    flex: 1 1 0;
  }

  .trust-copy h2 {
    font-size: 22px;
  }

  .chd-project-showcase {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .chd-project-showcase-intro {
    margin-bottom: 22px;
  }

  .chd-project-card figcaption span {
    font-size: 18px;
  }

  .about-thumb {
    padding: 30px;
  }

  .about-image {
    height: auto;
    margin-bottom: 24px;
  }

  .contact-container-wrap {
    padding: 44px 0 54px;
  }

  .site-footer {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .service-jump-list,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card > .service-card-image-link img {
    height: 220px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero {
    height: 560px;
  }

  .carousel-caption {
    top: 55%;
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .carousel-control-next,
  .carousel-control-prev {
    bottom: 24px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 48px;
    width: 48px;
  }

}

@media screen and (max-width: 480px) {
  body {
    padding-bottom: 86px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .contact-icon {
    font-size: 24px;
  }

  .site-header p {
    font-size: 14px;
  }

  .site-header .container {
    padding: 0 14px;
  }

  .topbar-actions {
    grid-template-columns: 44px 1fr 1fr;
  }

  .topbar-email {
    padding-inline: 0;
  }

  .topbar-email-text {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .topbar-link {
    font-size: 13px;
    gap: 6px;
    line-height: 1.15;
    min-height: 38px;
    text-align: center;
    white-space: normal;
  }

  .navbar-brand {
    font-size: 20px;
    gap: 8px;
    max-width: calc(100% - 58px);
  }

  .navbar-brand-logo {
    width: 50px;
  }

  .hero {
    min-height: 460px;
  }

  .carousel-caption {
    top: 50%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .carousel-control-next, 
  .carousel-control-prev {
    bottom: 20px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    width: 44px;
    height: 44px;
  }

  .carousel-control-prev {
    right: 60px;
  }

  .trust-section {
    padding: 10px 0 0;
  }

  .trust-panel {
    border-left: 0;
    border-top: 3px solid rgba(22, 136, 168, 0.68);
    gap: 6px 8px;
    grid-template-columns: clamp(126px, 38vw, 150px) minmax(0, 1fr);
    padding: 8px 8px 12px;
  }

  .trust-badge-wrap {
    align-self: center;
  }

  .trust-bbb-link {
    max-width: clamp(132px, 40vw, 156px);
    min-height: 44px;
  }

  .trust-bbb-seal {
    max-width: clamp(128px, 39vw, 152px);
  }

  .trust-copy {
    text-align: left;
  }

  .trust-copy h2 {
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.18;
    margin-bottom: 4px;
  }

  .trust-copy p {
    display: none;
  }

  .trust-points {
    display: none;
  }

  .trust-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
  }

  .trust-call-btn {
    flex: 1 1 150px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.15;
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    white-space: normal;
  }

  .trust-review-link {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(49, 95, 127, 0.18);
    flex: 0 1 108px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.15;
    min-height: 44px;
    padding: 8px 12px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .contact-info {
    padding: 24px 22px 26px;
  }

  .contact-info h4:first-child {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 22px !important;
  }

  .contact-direct-line {
    margin-bottom: 10px !important;
  }

  .contact-direct-line a {
    gap: 10px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .contact-direct-line h4,
  .contact-direct-line h5 {
    line-height: 1.2;
  }

  .contact-direct-line a,
  .contact-info h4 a,
  .contact-info h5 a {
    font-size: clamp(18px, 5.1vw, 22px);
  }

  .contact-info p {
    font-size: 16px;
    line-height: 1.45;
    margin-top: 20px !important;
  }

  .site-footer-wrap {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 78px;
    padding-top: 24px;
  }

  .copyright-text {
    padding-bottom: 10px;
  }

  .footer-contact-line {
    align-items: center;
    flex-direction: column;
    font-size: 16px !important;
    gap: 6px;
    line-height: 1.35;
  }

  .footer-contact-line span {
    display: none;
  }

  .mobile-call-cta {
    display: flex;
  }

  .chd-project-showcase {
    padding-top: 38px;
  }

  .chd-project-showcase-intro,
  .chd-project-showcase-track {
    padding-left: 14px;
    padding-right: 14px;
  }

  .chd-project-showcase-track {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .chd-project-card figcaption {
    padding: 16px;
  }
}

@media screen and (max-width: 360px) {
  .topbar-actions {
    gap: 6px;
  }

  .topbar-link {
    font-size: 12px;
    padding: 7px 6px;
  }

  .navbar-brand {
    font-size: 18px;
    gap: 7px;
  }

  .navbar-brand-logo {
    width: 46px;
  }

  .hero {
    min-height: 480px;
  }

  .trust-panel {
    gap: 6px;
    padding: 8px 8px 10px;
  }

  .trust-copy .small-title {
    font-size: 12px;
  }

  .trust-copy h2 {
    line-height: 1.15;
  }

  .trust-call-btn,
  .trust-review-link {
    font-size: 14px;
    min-height: 44px;
  }

  .carousel-caption {
    top: 52%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 27px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 38px;
    width: 38px;
  }

  .carousel-control-prev {
    right: 50px;
  }
}

@media screen and (max-width: 767px) {
  .trust-section {
    left: auto;
    padding: 10px 0 12px;
    position: relative;
    right: auto;
    top: auto;
    z-index: auto;
  }

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

  .hero-carousel,
  .carousel-inner,
  .carousel-item {
    height: auto;
  }

  .carousel-caption {
    align-items: center;
    background: var(--dark-color);
    bottom: auto;
    box-sizing: border-box;
    left: auto;
    margin: 0;
    max-width: none;
    padding: 18px 14px 20px;
    position: relative;
    right: auto;
    text-shadow: none;
    text-align: center;
    top: auto;
    width: 100%;
  }

  .carousel-caption .small-title,
  .carousel-caption h1,
  .carousel-caption h2 {
    width: 100%;
  }

  .carousel-caption .small-title {
    color: var(--accent-color);
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    color: var(--white-color);
  }

  .carousel-image-wrap {
    bottom: auto;
    height: auto;
    position: relative;
    right: auto;
    top: auto;
  }

  .carousel-image-wrap::before {
    opacity: 0;
  }

  .carousel-image {
    display: block;
    height: auto;
    object-fit: contain;
  }

  .carousel-control-next,
  .carousel-control-prev {
    bottom: 8px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 32px;
    width: 32px;
  }

  .carousel-control-prev {
    right: 46px;
  }

}

@media screen and (max-width: 480px) {
  .carousel-caption {
    margin: 0;
    max-width: none;
    padding: 18px 16px 22px;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .trust-license-claim {
    display: inline;
  }
}


/*---------------------------------------
  FORCED COLOR GUARDS
-----------------------------------------*/
@media (forced-colors: active) {
  :root {
    color-scheme: light dark;
  }

  body,
  .navbar,
  .site-header,
  .trust-panel,
  .chd-project-showcase,
  .chd-project-card,
  .chd-project-card figcaption,
  .migration-content-section,
  .migration-content-card,
  .migration-sidebar-card,
  .migration-page-cta,
  .services,
  .nav-tabs .nav-link,
  .contact-container-wrap,
  .site-footer,
  .mobile-call-cta {
    background: Canvas !important;
    border-color: CanvasText !important;
    box-shadow: none !important;
    color: CanvasText !important;
  }

  body::before,
  .trust-panel::before,
  .trust-panel::after,
  .chd-project-card::before,
  .chd-project-card::after,
  .migration-content-card::before,
  .migration-content-card::after,
  .migration-sidebar-card::before,
  .migration-sidebar-card::after,
  .migration-page-cta::after {
    display: none !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  .navbar-brand,
  .navbar-nav .nav-link,
  .trust-copy h2,
  .trust-copy p,
  .trust-points span,
  .chd-project-card figcaption span,
  .chd-project-card figcaption small {
    color: CanvasText !important;
  }

  a,
  .text-danger,
  .small-title {
    color: LinkText !important;
  }

  .custom-btn,
  .trust-call-btn,
  .trust-review-link,
  .about-card-btn {
    background: ButtonFace !important;
    border: 1px solid ButtonText !important;
    color: ButtonText !important;
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    background: ButtonText !important;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent !important;
  }

  .carousel-image-wrap::before {
    background: Canvas !important;
    opacity: 0.5;
  }

  img,
  svg {
    forced-color-adjust: none;
  }
}

