@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");

:root {
  font-size: 62.5%;
  --color-primary: #43b138;
  --color-text: #696969;
  --card-shadow: 0px 0px 20px #a2a2a233;
  --h1-fontsize: clamp(2.4rem, 3vw, 7rem);
  --h2-fontsize: clamp(2.2rem, 1.8vw, 4.8rem);
  --h3-fontsize: clamp(2rem, 1.5vw, 3.8rem);
  --p-h4-fontsize: clamp(1.6rem, 1.3vw, 3.4rem);
  --h5-fontsize: clamp(1.4rem, 1.1vw, 2.5rem);
  --h6-fontsize: clamp(1.1rem, 0.9vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  line-height: 1.6;
}

section {
  padding: 5.5rem 0;
}

p,
li {
  font-size: var(--p-h4-fontsize);
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  background-image: linear-gradient(90deg, #59ff8b 0, #1fa447 95%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.5s ease;
  font-weight: 600;
}

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

.btn-all {
  display: inline-block;
  width: fit-content;
  font-size: var(--p-h4-fontsize);
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.8rem 2.8rem;
  border-radius: 0.6rem;
  /* margin: auto; */
  border: none;
  text-decoration: none;
}

.btn-all:hover {
  background-size: 0;
  color: #fff;
}

button.btn-all {
  display: flex;
}

h1 {
  font-size: var(--h1-fontsize);
  font-weight: 700;
}

h2 {
  font-size: var(--h2-fontsize);
  font-weight: 700;
}

h3 {
  font-size: var(--h3-fontsize);
  font-weight: 600;
}

h4 {
  font-size: var(--p-h4-fontsize);
}

h5 {
  font-size: var(--h5-fontsize);
  font-weight: 500;
}

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

img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding-left: 2rem;
}

li {
  list-style-position: inside;
}

li p {
  text-indent: 0.2rem;
}

.fixed-top {
  background-color: #fff !important;
}

header {
  padding: 0.25rem 0;
  transition: background-color 0.5s ease;
}

header:focus-within {
  background-color: #fff;
}

header.navbar-scrolled {
  background-color: white;
}

header .headerInfo {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 3rem;
  padding-left: 0;
}

header .navbar .navbar-brand .logo {
  width: 150px;
  height: auto;
}

header .navbar .nav-link {
  text-decoration: none;
  transition: background-size 0.5s ease;
  font-weight: 600;
}

header .navbar .dropdown-menu {
  padding: 0.5rem;
  border: none;
  box-shadow: var(--card-shadow);
}

header .navbar .sub-dropdown .dropdown-menu {
  overflow: scroll;
  height: 40dvh;
  padding: 3rem;
}

header .navbar .sub-dropdown .dropdown-menu a {
  text-decoration: none;
}

header .navbar .sub-dropdown .dropdown-menu.show {
  display: flex;
}

header .navbar .sub-dropdown .dropdown-menu p {
  margin: 0;
  font-weight: 600;
}

header .navbar .sub-dropdown .dropdown-menu ul {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style-type: none;
}

header .navbar .sub-dropdown .dropdown-menu ul li {
  font-size: var(--h5-fontsize);
}

header .navbar .dropdown .services-dropdown a {
  text-decoration: none;
}

header .navbar .services-dropdown p {
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

header .navbar .services-dropdown ul {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style-type: none;
}

header .navbar .services-dropdown ul li {
  font-size: var(--h5-fontsize);
}

header .navbar .services-dropdown .col p a {
  color: var(--color-text);
}

@media (min-width: 991px) {
  header .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    left: -140%;
  }

  header .navbar .dropdown:hover > .dropdown-menu:has(.sub-dropdown) {
    display: flex;
  }

  header .navbar .sub-dropdown:hover > .dropdown-menu {
    display: flex;
  }

  header .navbar .sub-dropdown .dropdown-menu {
    overflow: auto;
    width: 110rem;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  header .navbar .dropdown:hover > .services-dropdown {
    display: block;
    left: 60%;
    transform: translateX(-40%);
  }

  header .navbar .services-dropdown .service-item p a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  /* Hover color */
  header .navbar .services-dropdown .service-item p a:hover {
    color: var(--color-primary);
  }

  header .navbar .services-dropdown {
    width: 1350px;
    max-width: 95vw;
    height: auto;
    overflow: visible;
    padding: 30px 40px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  header .navbar .services-dropdown .col p a {
    color: var(--color-text);
  }

  header .navbar .services-dropdown .col p a:hover {
    color: var(--color-primary);
  }
}

header .navbar .btn-all {
  margin-left: 1.5rem;
}

main section:first-child {
  padding-top: 6.8rem;
}

@media (min-width: 1440px) {
  main section:first-child {
    padding-top: 16rem;
  }
}

.hero .breadcrumbs {
  text-align: center;
  margin-top: 4.5rem;
}

.hero .breadcrumbs p {
  font-size: var(--h3-fontsize);
  color: #080808;
  margin-bottom: 0;
  font-weight: 700;
}

.hero .breadcrumbs p span {
  color: var(--color-primary);
}

.hero .breadcrumbs ul {
  margin: auto;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 1rem;
}

.hero .breadcrumbs ul li {
  font-size: var(--h5-fontsize);
}

.hero .row {
  align-items: center;
  justify-content: space-around;
}

.hero .row h1 span {
  color: var(--color-primary);
}

.hero .row h1 + p {
  color: #080808;
  margin: 2rem 0;
  z-index: 999;
}

.hero .row ul {
  list-style: none;
  padding-left: 0;
  columns: 3;
  margin-bottom: 2rem;
}

.hero .row ul li i {
  color: var(--color-primary);
  margin-right: 1rem;
}

.hero .row .form-col {
  position: relative;
  z-index: 0;
}

.hero .row .form-col .card {
  border: none;
  box-shadow: var(--card-shadow);
  border-radius: 1.2rem;
}

.hero .row .card .card-body {
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  background-color: var(--color-primary);
}

.hero .row .form-col form span {
  display: block;
  text-align: center;
  font-size: var(--h3-fontsize);
  font-weight: 600;
  color: #fff;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero .row .form-col form .form-input {
  position: relative;
}

.hero .row .form-col form .form-input .form-label {
  position: absolute;
  background-color: var(--color-primary);
  padding: 0 0.75rem;
  color: #fff;
  left: 1.3rem;
  top: -1.3rem;
}

.hero .row .form-col form .form-input .form-control {
  padding: 0.75rem;
  font-size: var(--h3-fontsize);
  border-color: #fff;
  background-color: var(--color-primary);
  margin-bottom: 2rem;
  resize: none;
}

.hero .row .form-col form .form-input .form-control::placeholder {
  font-size: var(--h5-fontsize);
  color: var(--color-text);
}

.hero .row .form-col form .btn-all {
  background-color: #fff;
  color: var(--color-primary);
}

/* @media (max-width: 576px) {
  .hero .row .form-col .triangle-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30rem solid transparent;
    border-bottom: 30rem solid transparent;
    border-right: 30rem solid #d3fe67;
    top: -20rem;
    transform: rotate(69deg);
  }

  .hero .row .form-col .triangle-2 {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 11rem solid transparent;
    border-bottom: 11rem solid transparent;
    border-right: 11rem solid #00c9ac;
    bottom: -10rem;
    right: -1.5rem;
    transform: rotate(230deg);
  }
} */

@media (min-width: 991px) {
  .hero .row h1 + p {
    width: 95%;
  }

  footer .contact-form__form .card {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 0px 20px #a2a2a233;
  }

  footer .contact-form__info .card {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  display: block;
  width: 13rem;
  height: 0.3rem;
  border-radius: 0.6rem;
  background: var(--color-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading-red {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0rem;
}

.section-heading-red::after {
  content: "";
  position: absolute;
  display: block;
  width: 13rem;
  height: 0.3rem;
  border-radius: 0.6rem;
  background: rgb(220 53 69 / 25%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.call-to-action {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: 15px;
}

.call-to-action .container > p {
  text-align: center;
  margin: 2rem;
  color: #fff;
}

.call-to-action a {
  color: #fff;
  background-image: linear-gradient(90deg, #fff 0, #fff 95%);
}

.call-to-action .btn-all {
  background-color: #fff;
  color: var(--color-primary);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.call-to-action form .form-control {
  font-size: var(--p-h4-fontsize);
  margin-bottom: 1rem;
  resize: none;
}

.call-to-action form .btn-all {
  background-color: var(--color-primary);
  color: #fff;
}

.call-to-action .one-line-cta {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.call-to-action .one-line-cta .btn-all {
  margin: 0;
}

.service-page {
  display: flex;
  text-align: center;
}

.cdr-services .card {
  position: relative;
  border: none;
  box-shadow: var(--card-shadow);
}

.cdr-services .card:hover {
  transition: transform 0.3s ease-in-out;

  transform: scale(1.03);
  border-bottom: 2px solid var(--color-primary);
}

.cdr-services .card .card-body a {
  text-decoration: none !important;
}

.cdr-services .card .card-body .bi {
  color: var(--color-primary);
}

.cdr-services .col .card:has(.d-lg-flex) .card-body {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

.cdr-services .col .card:has(.d-lg-flex) .card-body .card-icon .bi {
  font-size: var(--h1-fontsize);
}

.cdr-services .col .card:has(.d-lg-flex) .card-body .card-footerpart {
  font-size: var(--h3-fontsize);
}

.positive-skill-assessment img {
  border: 1px solid var(--color-primary);
  box-shadow: var(--card-shadow);
  border-radius: 1rem;
}

.frequently-asked-questions .accordion-item {
  border: none;
  box-shadow: var(--card-shadow);
  margin-bottom: 0.7rem;
}

.frequently-asked-questions
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  font-size: var(--h3-fontsize);
}

.frequently-asked-questions .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: var(--color-primary);
}

.frequently-asked-questions .accordion-button:focus {
  box-shadow: none;
}

footer .go-to-top-btn {
  position: fixed;
  z-index: 999;
  right: 2%;
  transition: bottom 0.5s ease-in-out;
  width: 4rem;
  height: 4rem;
  border: 1px solid white;
  border-radius: 50%;
  background-color: #c29010;
}

footer .go-to-top-btn i {
  line-height: var(--p-h4-fontsize);
  font-size: var(--p-h4-fontsize);
  color: #fff;
}

@media (max-width: 991px) {
  .navbar {
    padding-top: 2rem;
  }

  header.navbar-scrolled {
    background-color: #fff;
    box-shadow: 10px 5px 5px #c7c2c245;
  }

  header .navbar .nav-link {
    border-bottom: 0.5px solid #42b13834;
    margin-bottom: 1rem;
  }

  main section:first-child {
    padding-top: 9rem;
  }

  footer .go-to-top-btn {
    right: 3%;
  }
}

.review-box {
  padding: 30px;
  border-radius: 20px;
}

.service-card {
  height: 100%;
  padding: 25px 15px;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  /* removed white background */
}

.white-box {
  margin-top: 40px;
}

.stage-box {
  height: 100%;
  padding: 25px 15px;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.stage-box h3 {
  font-size: 25px;
}

.icon-box,
.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: rgba(67, 177, 56, 0.1);
}

.icon-box i,
.arrow-btn i {
  color: var(--color-primary);
}

.icon-box i {
  font-size: 3rem;
}

.card-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-title-wrap .icon-box {
  flex-shrink: 0;
}

.card-title-wrap h3 {
  margin: 0;
  white-space: nowrap;
}

.service-card h3,
h4 {
  flex: 1;
  /* pushes arrow button to middle-bottom */
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #082b63;
  margin: 0;
}

.service-card p {
  text-align: center;
  margin-top: 5px;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  margin-top: 20px;
  text-decoration: none;
  background: rgba(67, 177, 56, 0.1);
  transition: 0.3s;
}

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

.arrow-btn:hover i {
  color: #fff;
}

.fixed-whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 3%;
  left: 1%;
  border: none;
  background-color: #25d366;
  border-radius: 5rem;
  width: 5rem;
  height: 5rem;
  z-index: 996;
}

.fixed-whatsapp-icon i {
  font-size: var(--h2-fontsize);
  color: white;
  line-height: 0;
}

#whatsapp-chat {
  padding: 0;
}

#showWhatsapp {
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

.whatsapp-card {
  position: fixed;
  left: 1%;
  bottom: 10%;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}

.whatsapp-card .card {
  border-radius: 0.5rem;
  border: none;
  box-shadow: var(--card-shadow);
}

.whatsapp-card .card .card-header {
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #1a6f64;
  border: none;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 1rem 1.8rem;
  color: #fff;
}

.whatsapp-card .card .card-header .chat-icon {
  margin-right: 1.5rem;
}

.whatsapp-card .card .card-header .chat-icon {
  font-size: var(--h2-fontsize);
  border: none;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  padding: 0.5rem 0rem;
  box-shadow: 0px 0px 5px 0px #0000004d;
}

.whatsapp-card .card .card-header .chat-person {
  margin-right: auto;
}

.whatsapp-card .card .card-header .chat-person p {
  margin-bottom: 0;
  color: #fff;
}

.whatsapp-card .card .card-header .chat-person p:first-of-type {
  font-size: var(--h3-fontsize);
}

.whatsapp-card .card .card-header .chat-person p:last-of-type {
  font-size: var(--h5-fontsize);
}

.whatsapp-card .card .card-header button {
  margin-left: auto;
}

.whatsapp-card .card .card-body {
  background-image: url(../img/whatsapp-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.whatsapp-card .card .card-body .text-box {
  font-size: var(--h5-fontsize);
  background-color: #fff;
  text-align: start;
  width: fit-content;
  padding: 0.7rem 1rem;
  margin: 0;
  border-radius: 1rem;
}

.whatsapp-card .card .card-footer {
  border-radius: 0 0 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border: none;
}

.whatsapp-card .card .card-footer .whatsapp-start-chat-btn {
  background: #25d366;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  padding: 0.7rem 1rem;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: var(--p-h4-fontsize);
}

@media (max-width: 991px) {
  header .navbar .btn-all {
    margin: auto;
  }

  .call-to-action .one-line-cta {
    display: block;
  }

  .call-to-action .one-line-cta h2 {
    margin-bottom: 2rem;
  }

  footer .footer-links .footer-links__about-us .card {
    width: 70%;
  }
}

@media (max-width: 576px) {
  .hero .row ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

footer a {
  color: #fff;
  background-image: linear-gradient(90deg, #fff 0, #fff 95%);
}

footer a:hover {
  color: #fff;
}

footer .contact-form {
  padding-top: 0;
}

footer .contact-form h3 {
  font-size: var(--h2-fontsize);
  font-weight: 600;
}

footer .contact-form .card {
  height: 100%;
  border: none;
  box-shadow: var(--card-shadow);
  border-radius: 1.2rem;
}

footer .contact-form__form .card .card-body {
  padding: 2rem 1.5rem;
}

footer .contact-form__form .card .card-body form .form-control {
  font-size: var(--h3-fontsize);
  border: none;
  border-bottom: 1px solid #c6c6c6;
  resize: none;
}

footer .contact-form__form .card .card-body form .btn-all {
  margin-top: 2rem;
}

footer .contact-form__info .card {
  background-color: var(--color-primary);
}

footer .contact-form__info .card .card-body {
  display: flex;
  align-items: center;
}

footer .contact-form__info .card .card-body ul li {
  color: #fff;
  display: flex;
  margin: 2rem 0;
  align-items: center;
}

footer .contact-form__info .card .card-body ul {
  padding: 0;
  margin: 0;
}

footer .contact-form__info .card .card-body ul li i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--h1-fontsize);
  height: var(--h1-fontsize);
  border-radius: 50%;
  font-size: var(--p-h4-fontsize);
  border: 0.2rem solid #fff;
}

footer .contact-form__info .card .card-body ul li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: var(--h5-fontsize);
  color: #fff;
  word-break: break-word;
}

footer .contact-form__info .card {
  overflow: hidden;
}

footer .contact-form__info .card .card-body ul li a {
  color: #fff;
  font-size: var(--h5-fontsize);
  overflow-wrap: anywhere;
}

footer .footer-links {
  padding: 5rem 0 2.5rem;
  background-color: var(--color-primary);
}

footer .footer-links .row {
  justify-content: space-around;
}

footer .footer-links .footer-links__about-us p {
  color: #fff;
  font-size: var(--h5-fontsize);
  margin: 1rem 0;
}

footer .footer-links .footer-links__about-us ol {
  display: flex;
  list-style-type: none;
  padding-left: 0;
}

footer .footer-links .footer-links__about-us ol li {
  margin-right: 1rem;
  height: var(--h1-fontsize);
  width: var(--h1-fontsize);
  line-height: var(--h1-fontsize);
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-size: var(--h3-fontsize);
}

footer .footer-links .footer-links__about-us ol li a {
  color: var(--color-primary);
}

footer .footer-links .footer-links__useful-links li a,
footer .footer-links .footer-links__services li a,
footer .footer-links .footer-links__blogs li a {
  text-decoration: none;
}

footer .footer-links .accordion {
  --bs-accordion-bg: var(--color-primary) !important;

  --bs-accordion-border-color: none;
}

footer .footer-links .accordion .accordion-button {
  color: #ffffff;
  font-size: var(--h3-fontsize);
}

footer .footer-links .accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
}

footer .footer-links .accordion .accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff' width='25' height='25'%3e%3cpath fill-rule='evenodd' stroke-width='5' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transform: none;
}

footer .footer-links .accordion .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

footer .footer-links .accordion .accordion-button::after {
  margin-left: 5%;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff' width='25' height='25'%3e%3cpath fill-rule='evenodd' stroke-width='5' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  color: #fff;
}

footer .footer-links h4 {
  color: #fff;
  font-size: var(--h3-fontsize);
  margin-bottom: 1rem;
  font-weight: 600;
}

footer .footer-links ul {
  padding-left: 0;
}

footer .footer-links ul li {
  margin-bottom: 0.5rem;
  font-size: var(--h5-fontsize);
  color: #fff;
}

footer .footer-links .copyrights {
  text-align: center;
  color: #fff;
  padding-top: 1.8rem;
}

.services-pricing table thead {
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--h3-fontsize);
}

.services-pricing table tbody tr td p:first-of-type {
  font-size: var(--h2-fontsize);
}

.services-pricing table tbody tr td p:last-of-type {
  color: var(--color-primary);
  font-size: var(--h3-fontsize);
}

.services-carousel {
  padding: 0;
}

.services-carousel .carousel .carousel-inner {
  box-shadow: var(--card-shadow);
}

.services-carousel .carousel .carousel-inner .carousel-item {
  text-align: center;
  position: relative;
}

.services-carousel .carousel .carousel-inner .carousel-item img {
  width: 100%;
}

.services-carousel .carousel .carousel-inner .carousel-item span {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.services-carousel .carousel .carousel-indicators {
  position: relative;
  margin-top: 2rem;
}

.services-carousel .carousel .carousel-indicators [data-bs-target] {
  width: 25%;
  height: auto;
  box-shadow: var(--card-shadow);
}

@media (max-width: 991px) {
  .services-carousel .carousel .carousel-indicators {
    display: none;
  }
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: auto;
  height: fit-content;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.7rem;
  color: var(--color-primary);
  font-size: 16px;
  border-radius: 0 3px 3px 0;
  background-color: var(--color-text);
  opacity: 0.7;
}

.carousel .carousel-control-next {
  border-radius: 3px 0 0 3px;
}

.row .flex-column li a {
  padding-right: 3rem !important;
}

.row .flex-column li a i {
  position: absolute;
  right: 2%;
}

/* ===== Index page styles ===== */

.hero {
  padding-top: 12rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 4vw, 7rem);
  padding-bottom: 1rem;
}

.hero p span {
  color: var(--color-primary);
}

.hero .row ul {
  margin-bottom: 2rem;
}

.hero ul li {
  padding-bottom: 1rem;
}

.hero ul li i {
  margin-right: 0.5rem;
}

.why-choose-us .row {
  padding: 3rem 5rem 0rem;
}

.why-choose-us .row .col {
  margin-bottom: 5.5rem;
}

.One-stop-solution .container .row {
  margin-top: 2rem;
}

.One-stop-solution .card {
  position: relative;
  border: 0.15rem solid var(--color-primary);
  display: inline-block;
  height: 100%;
}

.One-stop-solution .card::before {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -1px;
  border-bottom: 4rem solid var(--color-primary);
  border-left: 4rem solid transparent;
}

.One-stop-solution .card::after {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 4rem solid white;
  border-left: 4rem solid transparent;
}

.One-stop-solution .card .card-body {
  padding: 5rem 2rem 1rem 3rem;
}

.One-stop-solution .card .card-body .bordered-icon i {
  position: relative;
}

.One-stop-solution .card .card-body .bordered-icon {
  position: absolute;
  top: -3rem;
  padding: 1rem 2rem;
  font-size: var(--h2-fontsize);
  background: var(--color-primary);
  color: #fff;
  width: fit-content;
}

.One-stop-solution .card .card-body .bordered-icon::before {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 2rem solid var(--color-primary);
  border-left: 2rem solid transparent;
}

.One-stop-solution .card .card-body .bordered-icon::after {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 3rem solid white;
  border-left: 3rem solid transparent;
}

.services-carousel {
  padding: 5rem 0;
}

.disclaimer {
  font-size: 17px;
  padding-top: 3rem;
  font-style: italic;
}

.why-choose-us .row .flex-column li {
  margin-bottom: 0.5rem;
  background-color: var(--color-primary);
  position: relative;
  border-radius: 1rem;
}

.why-choose-us .row .flex-column li a {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 2rem;
  justify-content: center;
}

.why-choose-us .row .flex-column li a i {
  padding-left: 0.5rem;
}

.why-choose-us .row .flex-column li .active {
  background-color: #c29010;
  border-radius: 1rem;
}

.why-choose-us .row .flex-column li:hover {
  background-color: #4d8f49;
}

.why-choose-us .row .flex-column li:last-child {
  margin-bottom: 0;
}

.why-choose-us .row .flex-column li a {
  background-image: none;
  color: #fff;
}

.why-choose-us .row .col-md-8 {
  background: linear-gradient(to left, #caea7c, #b2e9b3);
}

.why-choose-us .row .col-md-8 .tab-content .tab-pane {
  padding: 3rem;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.why-choose-us .row .col-md-8 .tab-content .tab-pane h3 {
  font-weight: 600;
  padding-bottom: 1.3rem;
}

.why-choose-us .row .col-md-8 .tab-content .tab-pane p {
  color: #000000c6;
}

@media (max-width: 576px) {
  .why-choose-us .row {
    padding: 0.5rem;
  }

  .why-choose-us .row .col-md-4 {
    padding: 0;
  }

  .why-choose-us .row .flex-column li {
    margin-bottom: 0.3rem;
  }

  .why-choose-us .row .col-md-8 .tab-content .tab-pane {
    padding: 2rem 1rem;
  }
}

.trusted-name .container {
  width: 100%;
}

.trusted-name .row {
  padding: 3rem 0 0;
}

.trusted-name .col {
  text-align: center;
}

.trusted-name .col .bi {
  font-size: 7rem;
  color: var(--color-primary);
  text-align: center;
}

.trusted-name .col h3 {
  font-size: calc(var(--h3-fontsize));
  padding: 1.3rem 0 1rem;
}

.trusted-name .col p {
  font-size: calc(var(--p-h4-fontsize) - 2.8px);
}

.trusted-name .col .card {
  padding: 20px 20px;
  border: none;
}

.our-trusted-carousel {
  padding: 0;
}

.modal-content .btn-close {
  position: absolute;
  right: 0;
  margin: 5px;
  background-color: white;
}

.our-progress-status .container .row:nth-child(n + 2) {
  margin-top: 10rem;
}

.our-progress-status .row .col-lg-4 {
  position: relative;
  display: flex;
  justify-content: center;
}

.our-progress-status .status-content p {
  color: #000;
}

.our-progress-status .row .col-lg-4 .steps-number span {
  position: absolute;
  color: var(--color-primary);
  font-size: var(--h2-fontsize);
  opacity: 0.7;
  top: 90%;
}

.our-progress-status .row .col-lg-4 .border-box img {
  position: absolute;
  right: -20px;
  top: 100px;
  width: 200px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .our-progress-status .container .row:nth-child(n + 2) {
    margin-top: 4rem;
  }
}

.our-progress-status .row .col-lg-4 .image-wrapper {
  border: 2px solid #6990b250;
  border-radius: 50%;
  height: 160px;
  width: 160px;
}

.our-progress-status .row .col-lg-4 .image-wrapper:hover {
  border: 3px solid var(--color-primary);
}

.our-progress-status .row .col-lg-4 .image-wrapper img {
  height: 160px;
  width: 160px;
}

@media (max-width: 767px) {
  .why-choose-us .row .flex-column li,
  .why-choose-us .row .flex-column li .active {
    border-radius: 1rem;
  }

  .trusted-name .container {
    width: 100%;
  }

  .our-progress-status .container .row:nth-child(n + 2) {
    margin-top: 3rem;
  }

  .our-progress-status .container .row:nth-child(3) {
    margin-top: 0;
  }

  .our-progress-status .row .col-lg-4 .border-box img {
    display: none;
  }

  .our-progress-status .row .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    justify-content: start;
  }

  .our-progress-status .row .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .our-progress-status .row .col-lg-4 .image-wrapper img {
    margin: 0 auto 0;
    height: 120px;
    width: 120px;
  }

  .our-progress-status .row .col-lg-4 .steps-number span {
    position: absolute;
    color: var(--color-primary);
    font-size: var(--h2-fontsize);
    opacity: 0.4;
    left: 10%;
    top: 0%;
  }

  .our-progress-status .row .col-lg-4 .image-wrapper {
    height: 120px;
    width: 120px;
  }
}

.how-we-work .container {
  margin: 5rem auto;
  padding: 0 2rem;
  position: relative;
}

.how-we-work .container .center-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: var(--color-primary);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.how-we-work .container .row {
  display: flex;
}

.how-we-work .container .row-1 {
  justify-content: flex-start;
}

.how-we-work .container .cols-img {
  width: 50%;
  text-align: center;
}

.how-we-work .container .row-2 {
  justify-content: flex-end;
}

.how-we-work .container .row .cols {
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}

.how-we-work .row .cols .line-number,
.how-we-work .center-line .scroll-icon {
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 17px;
  box-shadow:
    0 0 0 4px var(--color-primary),
    inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.how-we-work .center-line .scroll-icon {
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}

.how-we-work .row-1 .cols .line-number {
  top: 15px;
  right: -60px;
}

.how-we-work .row-2 .cols .line-number {
  top: 15px;
  left: -60px;
}

.services {
  text-align: center;
}

.cdr-services .card .card-body ul {
  text-align: left;
}

.cdr-services .card .card-body a {
  text-decoration: none !important;
}

.cdr-services .card .card-body .bi {
  color: var(--color-primary);
}

@media (min-width: 991px) {
  .services .row .col:nth-of-type(even) img {
    padding-top: 17rem;
  }
}

.services .card {
  text-align: center;
  box-shadow: 0px 0px 12px #a1a1a126;
  border: none;
}

.services .card h3 {
  font-size: var(--h5-fontsize);
}

.services .card a {
  font-size: var(--h6-fontsize);
}

.carousel-indicators {
  position: relative;
  text-indent: 0;
}

.carousel-indicators [data-bs-target] {
  text-indent: 0;
  background-color: #43b138;
  width: 80px;
  height: 5px;
}

.how-we-work-carousel .carousel-indicators {
  margin-bottom: -5rem;
}

.testimonials .testimonial-wrapper {
  /* display: flex; */
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.testimonials .testimonial-wrapper .testimonial-sets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.testimonial-blocks {
  background-color: #f7f7f7;
  padding: 24px;
  border-radius: 2rem;
  box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.02);
}

.testimonial-blocks h4 {
  margin: 0;
}

.testimonial-blocks p {
  margin-top: 10px;
}

.testimonials i {
  color: #ffa534;
  margin: 0 1.5px;
}

.testimonials .testimonial-btn {
  font-size: 20px;
  color: #ffffff;
  background-color: #43b138;
  padding: 8px 14px;
}

.google-reviews-widget {
  max-width: 100%;
  margin: 0 auto;
  font-family: "Roboto", "Google Sans", Arial, sans-serif;
}

.grw {
  background: #fff;
  border-radius: 12px;
}

.grw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1.6rem;
}

.grw-header-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.grw-google-logo {
  flex-shrink: 0;
  width: 74px;
  height: 24px;
}

.grw-rating-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #202124;
  line-height: 1;
}

.grw-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.grw-star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.grw-score {
  font-size: 1.6rem;
  font-weight: 600;
  color: #202124;
  line-height: 1;
}

.grw-divider {
  width: 1px;
  height: 18px;
  background: #dadce0;
}

.grw-count {
  font-size: 1.4rem;
  color: #5f6368;
  line-height: 1;
}

.grw-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #202124;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.grw-write-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
  color: #202124;
}

.grw-carousel-wrap {
  position: relative;
}

.grw-carousel {
  overflow: hidden;
}

.grw-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.grw-card {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  min-width: 0;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grw-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.grw-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.grw-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.grw-user-info {
  flex: 1;
  min-width: 0;
}

.grw-user-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
  margin: 0;
}

.grw-user-date {
  font-size: 1.2rem;
  color: #5f6368;
  line-height: 1.3;
  margin: 0.2rem 0 0;
}

.grw-google-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.grw-card-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.grw-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.grw-card-stars .grw-star {
  width: 16px;
  height: 16px;
}

.grw-verified {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.grw-text {
  font-size: 1.4rem;
  color: #3c4043;
  line-height: 1.55;
  margin: 0;
}

.grw-read-more {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font-size: inherit;
  font-family: inherit;
  color: #5f6368;
  cursor: pointer;
  text-decoration: none;
}

.grw-read-more:hover {
  text-decoration: underline;
}

.grw-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.18);
  color: #5f6368;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    color 0.2s;
}

.grw-nav:hover:not(:disabled) {
  box-shadow: 0 2px 10px rgba(32, 33, 36, 0.22);
  color: #202124;
}

.grw-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.grw-nav-prev {
  left: -12px;
}

.grw-nav-next {
  right: -12px;
}

@media (max-width: 991px) {
  .grw-card {
    flex: 0 0 calc((100% - 1.2rem) / 2);
  }
}

@media (max-width: 575px) {
  .grw-header {
    padding: 1.2rem;
  }

  .grw-write-btn {
    width: 100%;
  }

  .grw-card {
    flex: 0 0 100%;
  }

  .grw-nav-prev {
    left: 4px;
  }

  .grw-nav-next {
    right: 4px;
  }
}

.google-reviews-widget-secondary {
  margin-top: 2rem;
}

.reviews-source-heading {
  font-size: var(--h5-fontsize);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.facebook-reviews-widget {
  max-width: 100%;
  margin: 0 auto;
}

.facebook-reviews-widget .fb-page,
.facebook-reviews-widget .fb-page > span,
.facebook-reviews-widget .fb-page iframe {
  width: 100% !important;
}

.trust-signal {
  background: #43b138;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Trust Item */
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  height: 100%;
}

/* Icon */
.trust-item i {
  font-size: 42px;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}

/* Content Wrapper */
.trust-item div {
  text-align: left;
}

/* Number / Heading */
.trust-item h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

/* Description */
.trust-item p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .how-we-work .container .center-line {
    left: 40px;
  }

  .how-we-work .container .row {
    margin: 30px 0 3px 60px;
  }

  .how-we-work .container .row .cols {
    width: 100%;
  }

  .how-we-work .row-1 .cols::before {
    left: -7px;
  }

  .how-we-work .row-1 .cols .line-number {
    left: -60px;
  }

  .how-we-work .container .cols-img {
    width: 100%;
  }

  .cdr-services .card {
    height: 100%;
  }

  .cdr-services .card .card-body {
    padding: 0.7rem 0.2rem;
    display: flex;

    align-items: center;
  }

  .cdr-services .card .card-body h3 {
    font-size: var(--p-h4-fontsize);
    display: flex;
    gap: 5rem;
  }
}

@media (max-width: 576px) {
  .hero ul {
    columns: 2;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 4vw, 5rem);
  }

  .hero p {
    font-size: 1.5rem;
  }

  .how-we-work .container .center-line,
  .how-we-work .row .cols::before,
  .how-we-work .row .cols .line-number {
    display: none;
  }

  .how-we-work .container .row {
    margin: 10px 0;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .trust-signal {
    padding: 20px;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .trust-item h4 {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trust-signal {
    padding: 20px 15px;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .trust-item i {
    font-size: 36px;
  }

  .trust-item h4 {
    font-size: 20px;
  }

  .trust-item p {
    font-size: 13px;
  }
}

/* Thank You page */
.thankyou-page {
  --cdr-green: #39b234;
  --cdr-green-dark: #249226;
  --cdr-green-soft: #eaf8e8;
  --cdr-lime: #c9ff4f;
  --cdr-dark: #20242d;
  --cdr-text: #5d6673;
  --cdr-border: #dcebd8;
  --cdr-shadow: 0 18px 45px rgba(32, 36, 45, 0.12);
  color: var(--cdr-dark);
  background: #fff;
}

.thankyou-page a {
  text-decoration: none;
}

.thank-you-main {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 0% 18%,
      rgba(57, 178, 52, 0.13) 0,
      rgba(57, 178, 52, 0.13) 250px,
      transparent 251px
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfffa 100%);
  position: relative;
}

.thank-you-main::after {
  content: "";
  position: absolute;
  right: -95px;
  top: 150px;
  width: 260px;
  height: 260px;
  background: var(--cdr-lime);
  opacity: 0.7;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 0;
}

.thank-you-hero,
.quick-links-section {
  position: relative;
  z-index: 1;
}

.thank-you-hero {
  padding: 90px 0 60px;
}

.thank-you-card {
  background: #fff;
  border: 1px solid #eef5eb;
  border-radius: 28px;
  padding: 46px;
  box-shadow: var(--cdr-shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--cdr-green-soft);
  top: -70px;
  right: -70px;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cdr-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  box-shadow: 0 14px 32px rgba(57, 178, 52, 0.32);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.thank-you-eyebrow {
  color: var(--cdr-green);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.thank-you-card h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.13;
  letter-spacing: -1.3px;
  color: var(--cdr-dark);
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.thank-you-card h1 span {
  color: var(--cdr-green);
}

.thank-you-card p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--cdr-text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.thank-you-card p strong {
  color: var(--cdr-dark);
}

.ty-btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 800;
  transition: 0.25s ease;
}

.ty-btn-primary {
  background: var(--cdr-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(57, 178, 52, 0.24);
}

.ty-btn-primary:hover {
  background: var(--cdr-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.ty-btn-outline {
  color: var(--cdr-green-dark);
  border: 1px solid var(--cdr-green);
  background: #fff;
}

.ty-btn-outline:hover {
  background: var(--cdr-green-soft);
  color: var(--cdr-green-dark);
  transform: translateY(-2px);
}

.next-step-panel {
  background: var(--cdr-green);
  color: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(57, 178, 52, 0.28);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.next-step-panel::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -55px;
  right: -55px;
}

.next-step-panel h2 {
  font-size: 31px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.next-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--cdr-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 44px;
}

.next-step-item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.next-step-item:last-child {
  margin-bottom: 0;
}

.next-step-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.next-step-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}

.quick-links-section {
  padding: 0 0 82px;
}

.quick-card {
  background: #fff;
  border: 1px solid var(--cdr-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(32, 36, 45, 0.06);
  transition: 0.25s ease;
  height: 100%;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cdr-shadow);
}

.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--cdr-green-soft);
  color: var(--cdr-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin-bottom: 18px;
}

.quick-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.quick-card p {
  color: var(--cdr-text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.quick-card a {
  color: var(--cdr-green-dark);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .thank-you-hero {
    padding: 70px 0 44px;
  }

  .thank-you-card,
  .next-step-panel {
    padding: 32px;
  }
}

@media (max-width: 575.98px) {
  .thank-you-hero {
    padding: 52px 0 34px;
  }

  .thank-you-card,
  .next-step-panel {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .thank-you-card p {
    font-size: 16px;
  }

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

.review-pricing-section {
  margin-top: 3rem;
}

.review-pricing-tabs-wrapper {
  border: 1px solid #e9ecef;
  border-radius: 1.2rem;
  background: #fff;
  padding: 0.4rem 1rem;
  overflow-x: auto;
  display: flex;
  justify-content: center;
}

.review-pricing-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  border-bottom: none;
  min-width: max-content;
}

.review-pricing-tabs .nav-item {
  flex-shrink: 0;
}

.review-pricing-tabs .nav-link {
  background: none;
  background-image: none;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: #212529;
  font-size: clamp(1.3rem, 1.1vw, 1.8rem);
  font-weight: 600;
  padding: 1.2rem 1.4rem;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.review-pricing-tabs .nav-link:hover,
.review-pricing-tabs .nav-link:focus {
  color: var(--color-primary);
  background-image: none;
}

.review-pricing-tabs .nav-link.active {
  color: var(--color-primary);
  background: none;
  background-image: none;
  border-bottom-color: var(--color-primary);
}

.review-pricing-content {
  margin-top: 2.5rem;
}

.review-pricing-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1.6rem;
  box-shadow: var(--card-shadow);
  padding: clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.review-pricing-card h3 {
  color: #212529;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.review-pricing-desc {
  color: var(--color-text);
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  margin: 0 auto 2.5rem;
  max-width: 72rem;
}

.review-pricing-plans {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2.5rem;
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 14rem;
  padding: 2rem 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 1.2rem;
  background: #fff;
}

.pricing-plan i {
  color: var(--color-primary);
  font-size: 2.4rem;
}

.pricing-plan .plan-days {
  color: #082b63;
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  font-weight: 700;
}

.pricing-plan .plan-price {
  color: var(--color-primary);
  font-size: clamp(2rem, 1.8vw, 2.8rem);
  font-weight: 700;
}

.pricing-plan.popular {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 1px rgba(67, 177, 56, 0.08);
}

.pricing-plan .popular-badge {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 1rem;
  white-space: nowrap;
}

.review-pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 42rem;
}

.review-pricing-actions .btn-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  margin: 0;
  text-decoration: none;
}

.review-pricing-actions .btn-outline {
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.review-pricing-actions .btn-outline:hover {
  background: rgba(67, 177, 56, 0.08);
  color: var(--color-primary);
}

.review-pricing-disclaimer {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  gap: 0.6rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 62rem;
  text-align: left;
}

.review-pricing-disclaimer i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.8rem;
}

@media (max-width: 991.98px) {
  .review-pricing-plans {
    grid-template-columns: 1fr;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-plan.popular {
    order: -1;
  }
}

@media (max-width: 767.98px) {
  .review-pricing-tabs-wrapper {
    padding: 0.2rem 0.6rem;
  }

  .review-pricing-tabs .nav-link {
    padding: 1rem 1rem;
  }

  .review-pricing-card {
    padding: 2rem 1.5rem;
  }
}

.why-choose-review__intro {
  max-width: 78rem;
  margin: 0 auto 1rem;
}

.why-choose-review__grid {
  margin-top: 3.5rem;
}

.why-choose-review__grid > [class*="col-"] {
  padding-top: 2.5rem;
}

.why-choose-review__card {
  position: relative;
  height: 100%;
  border: 0.15rem solid var(--color-primary);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--card-shadow);
  overflow: visible;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-choose-review__card::before {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -1px;
  border-bottom: 3rem solid var(--color-primary);
  border-left: 3rem solid transparent;
  pointer-events: none;
}

.why-choose-review__card::after {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 3rem solid #fff;
  border-left: 3rem solid transparent;
  pointer-events: none;
}

.why-choose-review__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.4rem 3.2rem rgba(67, 177, 56, 0.18);
}

.why-choose-review__num {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: clamp(3rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(67, 177, 56, 0.12);
  z-index: 1;
  pointer-events: none;
}

.why-choose-review__card .card-body {
  position: relative;
  padding: 4.5rem 2rem 2.4rem 2.4rem;
}

.why-choose-review__card .bordered-icon {
  position: absolute;
  top: -2.5rem;
  left: 2.4rem;
  padding: 0.9rem 1.6rem;
  font-size: clamp(2rem, 1.6vw, 3rem);
  background: var(--color-primary);
  color: #fff;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.why-choose-review__card .bordered-icon::before {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 1.6rem solid var(--color-primary);
  border-left: 1.6rem solid transparent;
}

.why-choose-review__card .bordered-icon::after {
  position: absolute;
  content: "";
  right: -2px;
  bottom: -2px;
  border-bottom: 2.2rem solid #fff;
  border-left: 2.2rem solid transparent;
}

.why-choose-review__card:hover .bordered-icon {
  background: #36982d;
}

.why-choose-review__card h3 {
  font-size: calc(var(--h3-fontsize) - 0.4rem);
  color: #2d2d2d;
  margin-bottom: 1rem;
  padding-right: 3rem;
}

.why-choose-review__card p {
  font-size: calc(var(--p-h4-fontsize) - 0.3rem);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .why-choose-review__grid {
    margin-top: 2rem;
  }

  .why-choose-review__grid > [class*="col-"] {
    padding-top: 2rem;
  }

  .why-choose-review__card .card-body {
    padding: 4rem 1.6rem 2rem 1.8rem;
  }

  .why-choose-review__card .bordered-icon {
    left: 1.8rem;
  }
}

.why-choose-review__grid--includes > [class*="col-"] {
  padding-top: 0;
}

.why-choose-review__card--includes {
  border: 1px solid #e9ecef;
  border-radius: 1.2rem;
}

.why-choose-review__card--includes::before,
.why-choose-review__card--includes::after {
  display: none;
}

.why-choose-review__card--includes .card-body {
  padding: 2.5rem 2rem;
  text-align: left;
}

.why-choose-review__card--includes .icon-box {
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
}

.why-choose-review__card--includes .icon-box i {
  font-size: 2rem;
}

.why-choose-review__card--includes .icon-box--dont {
  background: rgba(220, 53, 69, 0.1);
}

.why-choose-review__card--includes .icon-box--dont i {
  color: #dc3545;
}

.why-choose-review__card--includes h3 {
  color: #082b63;
  font-size: clamp(1.6rem, 1.3vw, 2rem);
  padding-right: 0;
}

.why-choose-review__card--includes:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.8rem rgba(67, 177, 56, 0.12);
}

@media (max-width: 767px) {
  .why-choose-review__grid--includes > [class*="col-"] {
    padding-top: 0;
  }

  .why-choose-review__card--includes .card-body {
    padding: 2rem 1.6rem;
  }
}

.more-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  color: #43b138;
  text-align: center;
}

.more-link i {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 5px;
}

.more-link span {
  font-size: 12px;
  font-weight: 600;
}

.why-your-draft-needs-review {
  padding: 5.5rem 0;
}

@media (max-width: 991px) {
  .why-your-draft-needs-review {
    padding: 5rem 0;
  }
}

.why-your-draft-needs-review .accordion-item {
  border: none;
  box-shadow: var(--card-shadow);
  margin-bottom: 0.7rem;
}

.why-your-draft-needs-review
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  font-size: var(--h3-fontsize);
}

.why-your-draft-needs-review .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: var(--color-primary);
}

.why-your-draft-needs-review .accordion-button:focus {
  box-shadow: none;
}

.review-content-heading {
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem 0rem;
}

.review-content-heading::after {
  content: "";
  position: absolute;
  display: block;
  width: 13rem;
  height: 0.3rem;
  border-radius: 0.6rem;
  background: var(--color-primary);
  bottom: 0;
  left: 10%;
  transform: translateX(-50%);
}

.what-we-do {
  padding: 5.5rem 0;
}

.what-we-do-card {
  height: 100%;
  border: 0.2rem solid #e5e7eb;
  border-radius: 1.6rem;
  padding: 2.4rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.05);
}

.what-we-do-card.do-card {
  border-color: rgba(67, 177, 56, 0.25);
}

.what-we-do-card.dont-card {
  border-color: rgba(220, 53, 69, 0.25);
}

.what-we-do-card .card-title-wrap {
  margin-bottom: 2rem;
}

.what-we-do-card .card-title-wrap h3 {
  font-size: var(--h3-fontsize);
  white-space: normal;
}

.what-we-do-card .icon-box--dont {
  background: rgba(220, 53, 69, 0.1);
}

.what-we-do-card .icon-box--dont i {
  color: #dc3545;
}

.what-we-do-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  font-size: var(--p-h4-fontsize);
  color: var(--color-text);
  line-height: 1.6;
}

.what-we-do-list li:last-child {
  margin-bottom: 0;
}

.what-we-do-list__icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(67, 177, 56, 0.1);
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-top: 0.2rem;
}

.what-we-do-list__icon--dont {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.review {
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.review-row {
  display: grid;
  grid-template-columns: 82px 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-primary);
}

.review-row-p {
  display: flex;
  grid-template-columns: 82px 280px 1fr;
  gap: 35px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-primary);
}

.review-row :first-child {
  border-top: 1px solid var(--color-primary) !important;
}

.review-row span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
}

.review-row-p span {
  display: flex;
  justify-content: center;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .review-row {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

.ea-review {
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.review-service span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
}

.review-service {
  display: flex;
  gap: 25px;
  padding: 22px 22px;
}

.box {
  border: 1px solid #f0e6e6;
  border-radius: 15px;
  background-color: #ffffff;
  height: 100%;
}

/* Homepage redesign additions */
/* New homepage only: shared header, footer and page styles are untouched. */

/* Index landing-page UI refinements — deliberately scoped to the index main element. */
.cdr-landing .cdr-ticks li::before {
  content: "\2713 " !important;
}
.cdr-landing #faq .accordion {
  overflow: hidden;
  border: 1px solid #dce3ef;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0.8rem 2.4rem rgba(10, 26, 59, 0.08);
}
.cdr-landing #faq .accordion-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e5ebf3;
  background: transparent;
}
.cdr-landing #faq .accordion-item:last-child {
  border-bottom: 0;
}
.cdr-landing #faq .accordion-button {
  min-height: 6.6rem;
  padding: 1.9rem 2.3rem;
  background: #fff;
  color: #0a1a3b;
  box-shadow: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  justify-content: space-between;
}
.cdr-landing #faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: #0a1a3b;
}
.cdr-landing #faq .accordion-body {
  padding: 0 6.7rem 2rem 2.3rem;
  color: #5f6e84;
  font-size: 1.5rem;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .cdr-landing #faq .accordion-button {
    min-height: 6rem;
    padding: 1.6rem;
    font-size: 1.5rem;
  }
  .cdr-landing #faq .accordion-body {
    padding: 0 1.6rem 1.8rem;
  }
}

/* Additional landing-page sections converted from the Next.js reference. */
.cdr-btn-navy {
  background: #0a1a3b;
  color: #fff;
}
.cdr-btn-navy:hover,
.cdr-btn-green:hover {
  color: #fff;
  transform: translateY(-1px);
}
.cdr-process article {
  height: 100%;
  padding: 26px;
  border: 1px solid #dce3ef;
  border-radius: 20px;
  background: #f6f8fc;
}
.cdr-process article > b {
  font-size: 4rem;
  line-height: 1;
  color: #dce3ef;
}
.cdr-process article > i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: #16a34a;
}
.cdr-process h3 {
  margin-top: 15px;
  font-size: 2rem;
}
.cdr-process p {
  margin: 10px 0 0;
  color: #52627c;
}
.cdr-samples {
  background: #fff;
}
.cdr-sample {
  height: 100%;
  overflow: hidden;
  border: 1px solid #dce3ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(10, 26, 59, 0.08);
  transition: 0.25s;
}
.cdr-sample:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(10, 26, 59, 0.16);
}
.cdr-document {
  position: relative;
  min-height: 190px;
  padding: 22px;
  background: linear-gradient(135deg, #173568, #050c1f);
}
.cdr-document > div {
  padding: 15px;
  border-radius: 9px;
  background: #fffffff0;
  box-shadow: 0 8px 15px #0003;
  color: #0a1a3b;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.cdr-document > div span {
  display: block;
  height: 6px;
  margin-top: 9px;
  border-radius: 4px;
  background: #dce3ef;
}
.cdr-document > div span:nth-of-type(2) {
  width: 85%;
}
.cdr-document > div span:nth-of-type(3) {
  width: 94%;
}
.cdr-document > div span:nth-of-type(4) {
  width: 65%;
}
.cdr-document > b {
  position: absolute;
  right: 16px;
  bottom: 15px;
  padding: 5px 8px;
  border-radius: 15px;
  background: #16a34a;
  color: #fff;
  font-size: 1rem;
}
.cdr-sample h3 {
  margin: 20px 20px 0;
  font-size: 1.8rem;
}
.cdr-sample p {
  margin: 0 20px;
  color: #718099;
  font-size: 1.3rem;
}
.cdr-sample a {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 18px 20px 20px;
  padding: 9px;
  border: 1px solid #cdd6e4;
  border-radius: 25px;
  color: #0a1a3b;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.cdr-text-link {
  color: #107335;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.cdr-review {
  max-width: 770px;
  margin: auto;
  padding: 42px;
  border: 1px solid #dce3ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(10, 26, 59, 0.12);
}
.cdr-review > i {
  float: right;
  font-size: 6rem;
  line-height: 0.6;
  color: #dce3ef;
}
.cdr-stars {
  color: #16a34a;
  font-size: 2.1rem;
  letter-spacing: 3px;
}
.cdr-review blockquote {
  min-height: 100px;
  margin: 15px 0 25px;
  color: #0a1a3b;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}
.cdr-review b,
.cdr-review span {
  display: block;
}
.cdr-review span {
  color: #6c7890;
  font-size: 1.4rem;
}
.cdr-outcome {
  padding: 8px 12px;
  border-radius: 20px;
  background: #def7e6;
  color: #107335 !important;
  font-size: 1.2rem !important;
  font-weight: 700;
}
.cdr-review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.cdr-review-controls button {
  width: 42px;
  height: 42px;
  margin-left: 7px;
  border: 1px solid #cdd6e4;
  border-radius: 50%;
  background: #fff;
  color: #0a1a3b;
}
.cdr-review-controls button:hover {
  background: #f1f5f9;
}
.cdr-review-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border: 0;
  border-radius: 10px;
  background: #cbd5e1;
}
.cdr-review-dot.active {
  width: 28px;
  background: #16a34a;
}
.cdr-guarantee {
  background: linear-gradient(135deg, #dcfce7, #fff 50%, #f1f5f9);
}
.cdr-promise {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 20px;
  background: #0a1a3b;
  color: #4ade80;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}
.cdr-guarantee h2 {
  margin-top: 20px;
}
.cdr-guarantee article {
  height: 100%;
  padding: 20px;
  border: 1px solid #dce3ef;
  border-radius: 17px;
  background: #ffffffd9;
}
.cdr-guarantee article > i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
}
.cdr-guarantee article h3 {
  margin: 12px 0 5px;
  font-size: 1.6rem;
}
.cdr-guarantee article p {
  margin: 0;
  color: #65748a;
  font-size: 1.35rem;
}
.cdr-closing {
  padding: 88px 0 !important;
  background: #050c1f !important;
  color: #fff;
  text-align: center;
}
.cdr-closing-inner {
  position: relative;
  overflow: hidden;
  padding: 55px 25px;
  border: 1px solid #ffffff1e;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 10%, #16a34a42, transparent 30%),
    linear-gradient(135deg, #173568, #050c1f);
}
.cdr-closing h2 {
  max-width: 800px;
  margin: 23px auto 12px;
  color: #fff !important;
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
}
.cdr-closing h2 em {
  font-style: normal;
  color: #4ade80;
}
.cdr-closing p {
  max-width: 640px;
  margin: 0 auto;
  color: #d6deea;
  font-size: 1.7rem;
}
.cdr-closing .d-flex {
  margin-top: 28px;
}
.cdr-contact-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid #ffffff22;
  color: #d6deea;
  font-size: 1.3rem;
}
.cdr-contact-meta i {
  color: #4ade80;
}
@media (max-width: 767px) {
  .cdr-review {
    padding: 26px 20px;
  }
  .cdr-review blockquote {
    font-size: 1.8rem;
  }
  .cdr-outcome {
    display: none !important;
  }
  .cdr-closing-inner {
    padding: 42px 18px;
  }
  .cdr-contact-meta {
    flex-direction: column;
    gap: 10px;
  }
  .cdr-process article {
    padding: 20px;
  }
}
.cdr-landing {
  font-family: Arial, sans-serif;
  color: #0a1a3b;
  background: #fff;
}
.cdr-landing section {
  padding: 88px 0;
}
.cdr-landing h1,
.cdr-landing h2,
.cdr-landing h3 {
  color: #0a1a3b;
  line-height: 1.12;
}
.cdr-landing h1 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  color: #fff;
}
.cdr-landing h1 em {
  font-style: normal;
  color: #4ade80;
}
.cdr-landing h2 {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}
.cdr-hero {
  position: relative;
  overflow: hidden;
  background: #050c1f;
  background-image:
    radial-gradient(
      circle at 85% 20%,
      rgba(22, 163, 74, 0.28),
      transparent 28%
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    44px 44px,
    44px 44px;
}
.cdr-hero p {
  max-width: 650px;
  font-size: 1.8rem;
  color: #c9d4e5;
}
.cdr-kicker,
.cdr-eyebrow {
  display: inline-block;
  color: #159447;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cdr-kicker {
  padding: 8px 14px;
  border: 1px solid #ffffff33;
  border-radius: 30px;
  background: #ffffff12;
  color: #e5edf8;
  letter-spacing: 0;
  text-transform: none;
}
.cdr-kicker i {
  font-size: 0.7rem;
  color: #4ade80;
  margin-right: 5px;
}
.cdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.cdr-btn-green {
  background: #16a34a;
  color: #061024;
}
.cdr-btn-white {
  background: #fff;
  color: #0a1a3b;
}
.cdr-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #d4deed;
  font-size: 1.4rem;
}
.cdr-proof span svg {
  color: #4ade80 !important;
  width: 17px;
  height: 20px;
}
.cdr-proof .cdr-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.cdr-proof .cdr-rating svg {
  fill: currentColor;
}
.cdr-report {
  position: relative;
  padding: 28px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 24px 60px #0006;
}
.cdr-report > div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cdr-report > div:first-child i {
  font-size: 2.4rem;
  color: #16a34a;
}
.cdr-report small {
  display: block;
  color: #748095;
}
.cdr-report > span {
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #def7e6;
  color: #107335;
  font-size: 1.1rem;
  font-weight: bold;
}
.cdr-report > i {
  display: block;
  height: 9px;
  margin: 13px 0;
  border-radius: 20px;
  background: #e7edf5;
}
.cdr-report > i:nth-of-type(2) {
  width: 72%;
}
.cdr-metrics {
  display: flex;
  gap: 8px;
}
.cdr-metrics b {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: #f1f5f9;
  text-align: center;
}
.cdr-metrics small {
  font-size: 0.9rem;
  text-transform: uppercase;
}
.cdr-stamp {
  position: absolute;
  right: -10px;
  top: -22px;
  padding: 9px 12px;
  border: 2px solid #16a34a;
  border-radius: 10px;
  background: #fff;
  color: #107335;
  transform: rotate(-9deg);
}
.cdr-stats {
  position: relative;
  padding: 48px 0 !important;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
  background:
    radial-gradient(circle at 8% 0%, rgba(22, 163, 74, 0.1), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #fff 52%, #f5fbf7 100%);
}
.cdr-stats::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1170px, calc(100% - 30px));
  height: 3px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    #16a34a 18%,
    #16a34a 82%,
    transparent
  );
  transform: translateX(-50%);
}
.cdr-stats .row > div {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cdr-stats .row > div:not(:first-child)::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(
    transparent,
    #d9e4ee 18%,
    #d9e4ee 82%,
    transparent
  );
}
.cdr-stats b,
.cdr-stats span {
  display: block;
}
.cdr-stats b {
  margin-bottom: 5px;
  color: #0a1a3b;
  font-size: clamp(3.3rem, 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}
.cdr-stats span {
  color: #0a1a3b;
  font-size: 1.45rem;
  font-weight: bold;
}
.cdr-stats small {
  display: block;
  margin-top: 7px;
  color: #607089;
  font-size: 1.4rem;
  line-height: 1.45;
}
.cdr-soft {
  background: #f6f8fc;
}
.cdr-ticks {
  padding: 0;
  list-style: none;
}
.cdr-ticks li {
  margin: 12px 0;
  font-size: 1.6rem;
}
.cdr-ticks li:before {
  content: "âœ“";
  margin-right: 8px;
  color: #16a34a;
  font-weight: bold;
}
.cdr-checker,
.cdr-card,
.cdr-feature {
  height: 100%;
  padding: 28px;
  border: 1px solid #dce3ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px #0a1a3b10;
}
.cdr-progress {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #8a96a8;
}
.cdr-progress .active {
  color: #0a1a3b;
}
.cdr-checker .progress {
  height: 7px;
  margin: 9px 0 25px;
}
.cdr-checker .progress-bar {
  width: 33%;
  background: #16a34a;
}
.cdr-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.cdr-choices button,
.cdr-list button {
  padding: 13px;
  border: 1px solid #dce3ef;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  color: #0a1a3b;
  font-size: 1.3rem;
  font-weight: bold;
}
.cdr-list {
  display: grid;
  gap: 9px;
}
.cdr-list button {
  display: flex;
  justify-content: space-between;
}
.cdr-back {
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: #69758a;
}
.cdr-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}
.cdr-card {
  position: relative;
}
.cdr-card > span {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 5px 9px;
  border-radius: 0 0 8px 8px;
  background: #16a34a;
  color: #fff;
  font-size: 1.1rem;
}
.cdr-card > i,
.cdr-feature > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #def7e6;
  color: #107335;
  font-size: 2.3rem;
}
.cdr-card h3,
.cdr-feature h3 {
  margin-top: 18px;
}
.cdr-card a {
  font-weight: bold;
  color: #107335;
}
.cdr-feature > i {
  background: #eaf0fb;
  color: #0a1a3b;
}
.cdr-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid #dce3ef;
  border-radius: 30px;
}
.cdr-toggle button {
  padding: 9px 15px;
  border: 0;
  border-radius: 25px;
  background: transparent;
  color: #758198;
  font-weight: bold;
}
.cdr-toggle .active {
  background: #0a1a3b;
  color: #fff;
}
.cdr-plan {
  height: 100%;
  padding: 28px;
  border: 1px solid #dce3ef;
  border-radius: 22px;
  background: #fff;
}
.cdr-plan.popular {
  border: 2px solid #16a34a;
}
.cdr-plan b {
  font-size: 3.2rem;
}
.cdr-plan ul {
  padding-left: 20px;
}
.cdr-plan a {
  display: block;
  padding: 12px;
  border-radius: 30px;
  background: #0a1a3b;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.cdr-plan.popular a {
  background: #16a34a;
}
@media (max-width: 767px) {
  .cdr-landing section {
    padding: 62px 0;
  }
  .cdr-choices {
    grid-template-columns: 1fr;
  }
  .cdr-report {
    margin-top: 20px;
  }
  .cdr-stats {
    padding: 34px 0 !important;
  }
  .cdr-stats .row > div:nth-child(odd)::before {
    display: none;
  }
  .cdr-stats .row > div:nth-child(n + 3) {
    margin-top: 18px;
  }
  .cdr-stats .row > div:nth-child(n + 3)::after {
    position: absolute;
    top: -10px;
    right: 12px;
    left: 12px;
    height: 1px;
    content: "";
    background: #e1e9f0;
  }
}
/* Final landing-page refinements: scoped so the existing header and footer stay unchanged. */
.cdr-landing {
  font-family: Inter, "Source Sans Pro", Arial, sans-serif;
}

.cdr-landing section {
  padding: clamp(4.8rem, 7vw, 7.2rem) 0;
}

.cdr-landing h1 {
  font-size: clamp(3.4rem, 5.1vw, 5.8rem);
  letter-spacing: -0.035em;
}

.cdr-landing h2 {
  font-size: clamp(2.5rem, 3.5vw, 4.2rem);
  letter-spacing: -0.028em;
}

.cdr-landing h3 {
  font-size: clamp(1.7rem, 1.6vw, 2.1rem);
}

.cdr-landing p {
  font-size: 1.55rem;
  line-height: 1.65;
}

.cdr-landing .cdr-heading {
  margin-bottom: 3.6rem;
}

.cdr-landing .cdr-heading p {
  max-width: 59rem;
  margin: 1.2rem auto 0;
  color: #65748a;
}

.cdr-landing .cdr-hero p,
.cdr-landing .cdr-closing p {
  font-size: 1.75rem;
}

.cdr-landing .cdr-ticks li::before {
  content: "\2713 " !important;
}

.cdr-landing .cdr-stats b {
  font-size: clamp(2.8rem, 3vw, 3.6rem);
}

.cdr-landing #faq {
  background: #f6f8fc;
}

.cdr-landing #faq .accordion {
  overflow: hidden;
  border: 1px solid #dce3ef;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0.8rem 2.4rem rgba(10, 26, 59, 0.08);
}

.cdr-landing #faq .accordion-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e5ebf3;
  background: transparent;
}

.cdr-landing #faq .accordion-item:last-child {
  border-bottom: 0;
}

.cdr-landing #faq .accordion-button {
  min-height: 6.6rem;
  padding: 1.9rem 2.3rem;
  background: #fff;
  color: #0a1a3b;
  box-shadow: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
}

.cdr-landing #faq .accordion-button::after {
  width: 2.8rem;
  height: 2.8rem;
  margin-left: 1.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background-size: 1.2rem;
  background-position: center;
}

.cdr-landing #faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: #0a1a3b;
}

.cdr-landing #faq .accordion-button:not(.collapsed)::after {
  border-color: #16a34a;
  background-color: #16a34a;
  filter: brightness(0) invert(1);
}

.cdr-landing #faq .accordion-button:focus {
  box-shadow: inset 0 0 0 2px rgba(22, 163, 74, 0.22);
}

.cdr-landing #faq .accordion-body {
  padding: 0 6.7rem 2rem 2.3rem;
  color: #5f6e84;
  font-size: 1.5rem;
  line-height: 1.65;
}

.cdr-landing #faq .cdr-eyebrow {
  margin-bottom: 1.2rem;
}

/* Visual consistency for the sections converted from the ZIP design. */
.cdr-landing .cdr-guarantee {
  background: linear-gradient(135deg, #effdf3, #fff 52%, #f4f7fb);
}

.cdr-landing .cdr-guarantee > .container > .row {
  max-width: 112rem;
  margin-inline: auto;
}

.cdr-landing .cdr-guarantee article {
  padding: 2.2rem;
  border: 1px solid #dce3ef;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.cdr-landing .cdr-guarantee article > svg {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  stroke-width: 3;
}

.cdr-landing .cdr-guarantee article h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.7rem;
  line-height: 1.25;
}

.cdr-landing .cdr-guarantee article p {
  margin: 0;
  font-size: 1.4rem;
  color: #65748a;
}

.cdr-landing .cdr-review {
  position: relative;
  max-width: 78rem;
  padding: 4.4rem;
  border: 1px solid #dce3ef;
  border-radius: 2.8rem;
  box-shadow: 0 1.6rem 3.6rem rgba(10, 26, 59, 0.12);
}

.cdr-landing .cdr-review > svg {
  position: absolute;
  top: 3.5rem;
  right: 4rem;
  width: 5.8rem;
  height: 5.8rem;
  color: #dce3ef;
  stroke-width: 1.5;
}

.cdr-landing .cdr-stars {
  position: relative;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.28rem;
}

.cdr-landing .cdr-review blockquote {
  position: relative;
  min-height: 0;
  max-width: 61rem;
  margin: 2rem 0 4rem;
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
}

.cdr-landing .cdr-review b {
  font-size: 1.5rem;
}

.cdr-landing .cdr-review span {
  font-size: 1.35rem;
}

.cdr-landing .cdr-review-controls {
  margin-top: 3.4rem;
}

.cdr-landing .cdr-review-dot {
  display: inline-block !important;
  width: 0.8rem !important;
  height: 0.8rem !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 0.7rem 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 99rem !important;
  background: #cbd5e1 !important;
  box-shadow: none !important;
}

.cdr-landing .cdr-review-dot.active {
  width: 2.8rem !important;
  background: #16a34a !important;
}

.cdr-landing .cdr-review-controls button {
  width: 4.2rem;
  height: 4.2rem;
  padding: 0;
  border: 1px solid #cdd6e4;
  border-radius: 50%;
  background: #fff;
}

.cdr-landing .cdr-review-controls button svg {
  width: 1.9rem;
  height: 1.9rem;
}

.cdr-landing .cdr-card > svg,
.cdr-landing .cdr-feature > svg {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  padding: 1.15rem;
  border-radius: 1.4rem;
  background: #eaf0fb;
  color: #0a1a3b;
}

/* Assessment pathway cards. */
.cdr-landing #pathways .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.cdr-landing #pathways .cdr-card {
  display: flex;
  flex-direction: column;
  min-height: 38rem;
  padding: 2.4rem;
  border: 1px solid #dce3ef;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(10, 26, 59, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cdr-landing #pathways .cdr-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(10, 26, 59, 0.12);
}

.cdr-landing #pathways .cdr-card > svg {
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: #e0f5e8;
  color: #16a34a;
  stroke-width: 2.25;
}

.cdr-landing #pathways .cdr-card > span {
  top: 2rem;
  right: 2rem;
  padding: 0.7rem 1.15rem;
  border-radius: 99rem;
  background: #16a34a;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cdr-landing #pathways .cdr-card h3 {
  margin: 2rem 0 0.5rem;
  font-size: 2.1rem;
  line-height: 1.2;
}

.cdr-landing #pathways .cdr-authority {
  margin: 0 0 1.5rem;
  color: #078337;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.cdr-landing #pathways .cdr-card > p {
  margin: 0;
  color: #556783;
  font-size: 1.5rem;
  line-height: 1.58;
}

.cdr-landing #pathways .cdr-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0 2rem;
}

.cdr-landing #pathways .cdr-deliverables span {
  padding: 0.55rem 1rem;
  border-radius: 99rem;
  background: #eef3fa;
  color: #31517d;
  font-size: 1.15rem;
  line-height: 1;
}

.cdr-landing #pathways .cdr-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px solid #dce3ef;
  color: #0a1a3b;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.cdr-landing #pathways .cdr-card a::before {
  content: "From";
  color: #7890b1;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cdr-landing #pathways .cdr-card a::after {
  content: "\2197";
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border-radius: 50%;
  background: #eef3fa;
  color: #0a1a3b;
  font-size: 2.1rem;
  font-weight: 400;
}

.cdr-landing #pathways .cdr-card:hover a::after,
.cdr-landing #pathways .cdr-card a:hover::after {
  background: #16a34a;
  color: #fff;
}

.cdr-landing #pathways .cdr-card a svg {
  display: none;
}

.cdr-landing #pathways .cdr-delivery {
  position: static !important;
  display: block;
  margin-top: 0.55rem;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #7186a6;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.cdr-landing #pathways .cdr-card > span:not(.cdr-delivery) {
  z-index: 2;
}

/* Six reason cards, matched to the reference visual hierarchy. */
.cdr-landing #why .row {
  --bs-gutter-x: 2.1rem;
  --bs-gutter-y: 2.1rem;
}

.cdr-landing #why .cdr-feature {
  height: 100%;
  min-height: 21rem;
  padding: 2.5rem;
  border: 1px solid #dce3ef;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0 0.8rem 2rem rgba(10, 26, 59, 0.08);
}

.cdr-landing #why .cdr-feature > svg {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  padding: 1.15rem;
  border-radius: 1.4rem;
  background: #e0f5e8;
  color: #078337;
  stroke-width: 2.25;
}

/* .cdr-landing #why .col-lg-4:nth-child(3n + 2) .cdr-feature > svg {
  background: #e9ecf1;
  color: #0a1a3b;
} */

.cdr-landing #why .cdr-feature h3 {
  margin: 2.1rem 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
}

.cdr-landing #why .cdr-feature p {
  margin: 0;
  color: #526a91;
  font-size: 1.5rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .cdr-landing #pathways .cdr-card {
    min-height: 0;
    padding: 2rem;
    border-radius: 2rem;
  }

  .cdr-landing #pathways .cdr-card h3 {
    font-size: 1.95rem;
  }
}

@media (max-width: 767px) {
  .cdr-landing section {
    padding: 5rem 0;
  }

  .cdr-landing #faq .accordion-button {
    min-height: 6rem;
    padding: 1.6rem;
    font-size: 1.5rem;
  }

  .cdr-landing #faq .accordion-body {
    padding: 0 1.6rem 1.8rem;
  }

  .cdr-landing #faq .accordion-button::after {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* FAQ layout: index landing page only. */
.cdr-landing #faq {
  background: #f5f7fb;
}

.cdr-landing #faq .container {
  max-width: 122rem;
}

.cdr-landing #faq .row {
  --bs-gutter-x: 6rem;
  align-items: start;
}

.cdr-landing #faq .cdr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.cdr-landing #faq .cdr-eyebrow::before {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.cdr-landing #faq h2 {
  max-width: 38rem;
  font-size: clamp(3.8rem, 4.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cdr-landing #faq .col-lg-4 > p {
  max-width: 42rem;
  margin-top: 2.2rem;
  color: #60749a;
  font-size: 1.65rem;
}

.cdr-landing #faq .col-lg-4 > p a {
  color: #078337;
  font-weight: 800;
  text-decoration: none;
}

.cdr-landing #faq .accordion {
  border: 1px solid #dce3ef;
  border-radius: 2.4rem;
  box-shadow: 0 1.4rem 3.4rem rgba(10, 26, 59, 0.12);
}

.cdr-landing #faq .accordion-button {
  min-height: 7.2rem;
  padding: 2rem 2.8rem;
  font-size: 1.65rem;
}

.cdr-landing #faq .accordion-button::after {
  display: grid;
  flex: 0 0 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 2rem;
  border: 1px solid #d2dbe8;
  border-radius: 50%;
  background: none;
  color: #0a1a3b;
  content: "+";
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  place-items: center;
  transform: none;
}

.cdr-landing #faq .accordion-button:not(.collapsed)::after {
  border-color: #16a34a;
  background: #16a34a;
  color: #061024;
  content: "Ã—";
  filter: none;
  transform: none;
}

.cdr-landing #faq .accordion-body {
  padding: 0 8rem 2.4rem 2.8rem;
  font-size: 1.5rem;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .cdr-landing #faq .row {
    --bs-gutter-y: 3.5rem;
  }

  .cdr-landing #faq h2 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .cdr-landing #faq .row {
    --bs-gutter-x: 1.5rem;
  }

  .cdr-landing #faq h2 {
    font-size: 3.7rem;
  }

  .cdr-landing #faq .accordion {
    border-radius: 1.8rem;
  }

  .cdr-landing #faq .accordion-button {
    min-height: 6.4rem;
    padding: 1.7rem 1.8rem;
    font-size: 1.5rem;
  }

  .cdr-landing #faq .accordion-button::after {
    flex-basis: 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
    margin-left: 1rem;
  }

  .cdr-landing #faq .accordion-body {
    padding: 0 1.8rem 2rem;
  }
}

/* Hero, aligned to the reference composition. */
.cdr-landing .cdr-hero {
  display: flex;
  align-items: center;
  min-height: 77rem;
  padding: 11rem 0 8rem !important;
  background-position: center;
}

.cdr-landing .cdr-hero .container {
  max-width: 124rem;
}

.cdr-landing .cdr-hero .row {
  --bs-gutter-x: 7.5rem;
  padding-top: 5rem;
}

.cdr-landing .cdr-hero h1 {
  max-width: 62rem;
  margin: 3rem 0 2.6rem;
  font-size: clamp(5.6rem, 6.6vw, 8.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.cdr-landing .cdr-hero h1 em,
.cdr-landing .cdr-hero h1 span {
  display: block;
}

.cdr-landing .cdr-hero h1 em {
  position: relative;
  width: max-content;
}

.cdr-landing .cdr-hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.75rem;
  left: 0;
  height: 0.45rem;
  border-radius: 99rem;
  background: #16a34a;
  content: "";
  transform: rotate(-1.5deg);
}

.cdr-landing .cdr-hero h1 span {
  margin-top: 0.7rem;
}

.cdr-landing .cdr-hero p {
  max-width: 57rem;
  font-size: 1.9rem;
  line-height: 1.55;
}

.cdr-landing .cdr-hero p b {
  color: #fff;
}

.cdr-landing .cdr-kicker {
  padding: 0.85rem 1.45rem;
  font-size: 1.5rem;
}

.cdr-landing .cdr-hero .cdr-btn {
  min-width: 25rem;
  padding: 1.7rem 2.8rem;
  font-size: 1.6rem;
}

.cdr-landing .cdr-proof {
  gap: 1.8rem;
  margin-top: 3.1rem;
}

.cdr-landing .cdr-proof span {
  font-size: 1.4rem;
}

.cdr-landing .cdr-accepted {
  margin-top: 4.4rem;
}

.cdr-landing .cdr-accepted > b {
  display: block;
  margin-bottom: 1.2rem;
  color: #7f8da4;
  font-size: 1.15rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cdr-landing .cdr-accepted > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cdr-landing .cdr-accepted span {
  padding: 0.65rem 1.25rem;
  border: 1px solid #ffffff22;
  border-radius: 99rem;
  background: #ffffff0a;
  color: #dce6f5;
  font-size: 1.2rem;
  font-weight: 700;
}

.cdr-landing .cdr-hero .col-lg-5 {
  position: relative;
}

.cdr-landing .cdr-review-form {
  margin: 0 auto;
  padding: clamp(2.4rem, 4vw, 3.6rem);
  border: 1px solid #d3e1f0;
  border-radius: 3rem;
  background: #fff;
  box-shadow: 0 2rem 5rem rgba(8, 24, 58, 0.22);
  color: #061b3d;
}

.cdr-landing .cdr-review-form__heading {
  margin-bottom: 2.2rem;
  text-align: center;
}

.cdr-landing .cdr-review-form__heading h2 {
  margin: 0 0 0.8rem;
  color: #061b3d;
  font-size: clamp(2.5rem, 3vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.cdr-landing .cdr-review-form__heading p {
  margin: 0;
  color: #5f6e88;
  font-size: 1.45rem;
  line-height: 1.55;
}

.cdr-landing .cdr-review-form__field {
  margin-top: 1.5rem;
}

.cdr-landing .cdr-review-form label {
  display: block;
  margin-bottom: 0.7rem;
  color: #061b3d;
  font-size: 1.35rem;
  font-weight: 800;
}

.cdr-landing .cdr-review-form label span {
  color: #e11d48;
}

.cdr-landing .cdr-review-form label small {
  color: #73809a;
  font-size: 1.1rem;
  font-weight: 600;
}

.cdr-landing .cdr-review-form__phone-help {
  display: block;
  min-height: 1.4rem;
  margin-top: 0.45rem;
  color: #c2410c;
  font-size: 1.1rem;
  font-weight: 600;
}

.cdr-landing .cdr-review-form input,
.cdr-landing .cdr-review-form select,
.cdr-landing .cdr-review-form textarea {
  width: 100%;
  border: 1px solid #cbdceb;
  border-radius: 1.5rem;
  background: #f8fbfe;
  color: #061b3d;
  font: inherit;
  font-size: 1.4rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cdr-landing .cdr-review-form .iti {
  display: block;
  width: 100%;
}

.cdr-landing .cdr-review-form .iti input#reviewPhone {
  padding-left: 11rem !important;
}

.cdr-landing .cdr-review-form .iti__selected-country {
  border-radius: 1.5rem 0 0 1.5rem;
}

.cdr-landing .cdr-review-form .iti__selected-country:hover,
.cdr-landing .cdr-review-form .iti__selected-country[aria-expanded="true"] {
  background: #eef6f1;
}

.cdr-landing .cdr-review-form input,
.cdr-landing .cdr-review-form select {
  min-height: 4rem;
  padding: 0 1.6rem;
}

.cdr-landing .cdr-review-form textarea {
  min-height: 9rem;
  padding: 1.4rem 1.6rem;
  resize: vertical;
}

.cdr-landing .cdr-review-form input::placeholder,
.cdr-landing .cdr-review-form textarea::placeholder {
  color: #8b98ae;
}

.cdr-landing .cdr-review-form input:focus,
.cdr-landing .cdr-review-form select:focus,
.cdr-landing .cdr-review-form textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16);
}

.cdr-landing .cdr-review-form__captcha {
  margin-top: 1.8rem;
}

.cdr-landing .cdr-review-form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 5.4rem;
  margin-top: 1.8rem;
  border: 0;
  border-radius: 99rem;
  background: linear-gradient(100deg, #16a34a, #0f7f37);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cdr-landing .cdr-review-form button[type="submit"]:hover {
  background: linear-gradient(100deg, #15803d, #0b5e2b);
}

.cdr-landing .cdr-review-form button[type="submit"] svg {
  width: 1.7rem;
  height: 1.7rem;
}

.cdr-landing .cdr-report {
  margin-top: 4rem;
  padding: 2.7rem;
  border-radius: 3.2rem;
}

.cdr-landing .cdr-report > div:first-child {
  min-height: 4rem;
}

.cdr-landing .cdr-stamp {
  top: 1rem;
  right: -3rem;
  z-index: 2;
  padding: 1.1rem 1.7rem;
  border-radius: 1.6rem;
  font-size: 1.45rem;
  transform: rotate(-11deg);
}

.cdr-landing .cdr-engineers {
  position: absolute;
  bottom: -1.8rem;
  left: -2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.7rem;
  border: 1px solid #315077;
  border-radius: 1.5rem;
  background: #0d2147;
  color: #fff;
}

.cdr-landing .cdr-engineers > span {
  display: flex;
}

.cdr-landing .cdr-engineers > span i {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: -0.7rem;
  border: 2px solid #0d2147;
  border-radius: 50%;
  background: #16a34a;
}

.cdr-landing .cdr-engineers > span i:first-child {
  margin-left: 0;
  background: #20b765;
}

.cdr-landing .cdr-engineers > span i:last-child {
  background: #356ccc;
}

.cdr-landing .cdr-engineers b {
  font-size: 1.4rem;
  line-height: 1.1;
}

.cdr-landing .cdr-engineers small {
  display: block;
  margin-top: 0.25rem;
  color: #abb8ce;
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .cdr-landing .cdr-hero {
    min-height: 0;
    padding: 11rem 0 8rem !important;
  }

  .cdr-landing .cdr-hero h1 {
    max-width: 72rem;
  }
}

@media (max-width: 767px) {
  .cdr-landing .cdr-hero {
    padding: 10rem 0 5rem !important;
  }

  .cdr-landing .cdr-hero h1 {
    margin: 2.4rem 0 2rem;
    font-size: clamp(4.5rem, 14vw, 6.5rem);
  }

  .cdr-landing .cdr-hero .cdr-btn {
    min-width: 0;
  }

  .cdr-landing .cdr-accepted {
    margin-top: 3rem;
  }
}

/* Hero asset d…690 tokens truncated…row {
      --bs-gutter-x: 6rem;
    }

    .cdr-landing #eligibility h2 {
      max-width: 49rem;
      font-size: clamp(3.8rem, 3.4vw, 4.8rem);
      line-height: 1.05;
      letter-spacing: -.04em;
    }

    .cdr-landing #eligibility .col-lg-5>p {
      max-width: 55rem;
      color: #526a91;
      font-size: 1.7rem;
      line-height: 1.55;
    }

    .cdr-landing #eligibility .cdr-ticks {
      margin-top: 2.2rem;
    }

    .cdr-landing #eligibility .cdr-ticks li {
      margin: 1.25rem 0;
      color: #0a1a3b;
      font-size: 1.55rem;
    }

    .cdr-landing #eligibility .cdr-checker {
      padding: 2.8rem;
      border: 1px solid #dce3ef;
      border-radius: 2.4rem;
      box-shadow: 0 1.4rem 3rem rgba(10, 26, 59, .1);
    }

    .cdr-landing #eligibility .cdr-progress {
      margin-bottom: 1.1rem;
      font-size: 1.15rem;
    }

    .cdr-landing #eligibility .cdr-checker .progress {
      margin: 0 0 2.6rem;
    }

    .cdr-landing #eligibility .cdr-checker h3 {
      margin-bottom: 1.4rem;
      font-size: 2.1rem;
    }

    .cdr-landing #eligibility .cdr-choices {
      gap: .9rem;
    }

    .cdr-landing #eligibility .cdr-choices button {
      min-height: 4.8rem;
      padding: 1.25rem 1.5rem;
      border-radius: 1rem;
      font-size: 1.35rem;
    }

    .cdr-landing #eligibility .cdr-choices button:nth-child(n+7) {
      display: none;
    }

    .cdr-landing .cdr-engineers>span i {
      background-size: 300% auto !important;
      background-position: left center;
    }

    .cdr-landing .cdr-engineers>span i:nth-child(2) {
      background-position: center center;
    }

    .cdr-landing .cdr-engineers>span i:nth-child(3) {
      background-position: right center;
    }

    .cdr-landing .cdr-stats b {
      color: #000;
    }

    .cdr-landing .cdr-stats span {
      color: #3d547a;
    }

    .cdr-landing .cdr-stats small {
      color: #8296b5;
    }

    

    @keyframes cdrAuthorityMarquee {
      from {
        transform: translateX(0);
      }

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

    @media (max-width: 991px) {
      .cdr-landing #eligibility .row {
        --bs-gutter-y: 3.5rem;
      }
    }

    @media (max-width: 767px) {
      .cdr-landing #eligibility .row {
        --bs-gutter-x: 1.5rem;
      }

      .cdr-landing #eligibility h2 {
        font-size: 3.7rem;
      }

      .cdr-landing #eligibility .cdr-checker {
        padding: 1.8rem;
        border-radius: 1.8rem;
      }
    }

    /* Locked initial checker state to match the compact reference design. */
.cdr-landing #eligibility h2 {
  max-width: 50rem;
  font-size: clamp(3.8rem, 3.1vw, 4.5rem);
}

.cdr-landing #eligibility .col-lg-5 > p {
  max-width: 54rem;
  font-size: 1.55rem;
}

.cdr-landing #eligibility .cdr-ticks li::before {
  display: inline;
  width: auto;
  height: auto;
  margin-right: 1rem;
  border-radius: 0;
  background: transparent;
  color: #16a34a;
}

.cdr-landing #eligibility .cdr-checker {
  min-height: 31rem;
  padding: 2.6rem 2.8rem;
}

.cdr-landing #eligibility .cdr-progress {
  font-size: 1.1rem;
}

.cdr-landing #eligibility .cdr-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cdr-landing #eligibility .cdr-choices button {
  height: 4.8rem;
  min-height: 0;
  color: #0a1a3b;
  font-weight: 700;
}

/* Lock the eligibility checker to the compact reference state. */
.cdr-landing #eligibility .container {
  max-width: 128rem;
}

.cdr-landing #eligibility h2 {
  max-width: 58rem;
  font-size: clamp(3.7rem, 3.05vw, 4.5rem);
  line-height: 1.08;
}

.cdr-landing #eligibility .col-lg-5 > p {
  max-width: 52rem;
  font-size: 1.55rem;
}

.cdr-landing #eligibility .cdr-ticks li::before {
  display: inline;
  width: auto;
  height: auto;
  margin-right: 1rem;
  border-radius: 0;
  background: transparent;
  color: #16a34a;
  content: "âœ“" !important;
}

.cdr-landing #eligibility .cdr-checker {
  max-width: 72rem;
  margin-left: auto;
  padding: 2.7rem;
}

.cdr-landing #eligibility .cdr-progress b {
  font-size: 1.15rem;
}

.cdr-landing #eligibility .cdr-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  overflow: visible !important;
}

.cdr-landing #eligibility .cdr-choices button {
  display: block !important;
  min-height: 4.8rem;
  font-weight: 700;
}

.cdr-landing #eligibility .cdr-choices button:nth-child(n + 7) {
  display: none !important;
}

@media (max-width: 991px) {
  .cdr-landing #eligibility .cdr-checker {
    max-width: none;
  }
}

/* Recommended-pathway stage of the eligibility checker. */
.cdr-landing #eligibility .cdr-progress {
  gap: 0.8rem;
}

.cdr-landing #eligibility .cdr-progress b {
  flex: 1;
  padding-top: 0.9rem;
  border-top: 0.55rem solid #dce3ef;
  color: #93a5c0;
}

.cdr-landing #eligibility .cdr-progress b.active {
  border-top-color: #16a34a;
  color: #0a1a3b;
}

.cdr-landing #eligibility .cdr-pathway-result {
  padding: 2.3rem;
  border-radius: 1.7rem;
  background: #0a1f45;
  color: #fff;
}

.cdr-landing #eligibility .cdr-pathway-result > span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #4ade80;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cdr-landing #eligibility .cdr-pathway-result > span i {
  font-size: 2rem;
}

.cdr-landing #eligibility .cdr-pathway-result h3 {
  margin: 1.2rem 0 1.8rem;
  color: #fff;
  font-size: clamp(2.2rem, 2.2vw, 3rem);
  line-height: 1.15;
}

.cdr-landing #eligibility .cdr-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cdr-landing #eligibility .cdr-result-tags b {
  padding: 0.65rem 1rem;
  border-radius: 99rem;
  background: #233a66;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
}

.cdr-landing #eligibility .cdr-result-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #ffffff22;
}

.cdr-landing #eligibility .cdr-result-price small {
  display: block;
  color: #9eb0ce;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cdr-landing #eligibility .cdr-result-price strong {
  display: block;
  color: #16c756;
  font-size: 3.5rem;
  line-height: 1;
}

.cdr-landing #eligibility .cdr-result-price > div:last-child {
  text-align: right;
}

.cdr-landing #eligibility .cdr-result-price > div:last-child b {
  color: #fff;
  font-size: 1.5rem;
}

.cdr-landing #eligibility .cdr-result-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 1.6rem;
  padding: 1.7rem;
  border-radius: 99rem;
  background: #16a34a;
  box-shadow: 0 1rem 2rem rgba(22, 163, 74, 0.3);
  color: #061024;
  font-size: 1.65rem;
  font-weight: 800;
  text-decoration: none;
}

.cdr-landing #eligibility .cdr-result-reset {
  display: block;
  margin: 1.2rem auto 0.7rem;
  border: 0;
  background: transparent;
  color: #6f86a8;
  font-size: 1.35rem;
}
.cdr-landing #eligibility .cdr-result-reset svg,
.cdr-landing #pathways .cdr-delivery svg,
.cdr-landing #pricing .cdr-popular svg {
  width: 1.35em;
  height: 1.35em;
  vertical-align: -0.28em;
}

.cdr-landing #eligibility .cdr-result-note {
  display: block;
  color: #90a4c5;
  font-size: 1.05rem;
  text-align: center;
}

@media (max-width: 767px) {
  .cdr-landing #eligibility .cdr-pathway-result {
    padding: 1.8rem;
  }

  .cdr-landing #eligibility .cdr-pathway-result h3 {
    font-size: 2.15rem;
  }

  .cdr-landing #eligibility .cdr-result-price strong {
    font-size: 3rem;
  }
}

/* Pricing section: dark service-plan presentation. */
.cdr-landing #pricing {
  position: relative;
  overflow: hidden;
  background: #050c1f;
  color: #fff;
}

.cdr-landing #pricing::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(22, 163, 74, 0.15),
    transparent 30%
  );
  content: "";
  pointer-events: none;
}

.cdr-landing #pricing .container {
  position: relative;
  max-width: 124rem;
}

.cdr-landing #pricing .cdr-eyebrow {
  color: #4ade80;
}

.cdr-landing #pricing h2 {
  max-width: 55rem;
  margin-inline: auto;
  color: #fff;
}

.cdr-landing #pricing .cdr-heading p {
  color: #bdc9dc;
  font-size: 1.75rem;
}

.cdr-landing #pricing .cdr-toggle {
  padding: 0.4rem;
  border-color: #ffffff2e;
  background: #ffffff08;
}

.cdr-landing #pricing .cdr-toggle button {
  min-width: 13rem;
  color: #c6d0df;
  font-size: 1.35rem;
}

.cdr-landing #pricing .cdr-toggle .active {
  background: #16a34a;
  color: #061024;
}

.cdr-landing #pricing #cdrPlans {
  /* display: flex;
  gap: 15px; */
  --bs-gutter-x: 2.2rem;
  align-items: stretch;
  margin-top: 4.6rem;
}

.cdr-landing #pricing .cdr-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 46.5rem;
  padding: 3rem;
  border: 1px solid #ffffff1d;
  border-radius: 3.2rem;
  background: #121a2d;
  color: #fff;
}

.cdr-landing #pricing .cdr-plan.popular {
  margin-top: -1.6rem;
  border: 2px solid #16c756;
  background: #fff;
  box-shadow: 0 1.5rem 3.5rem rgba(22, 163, 74, 0.28);
  color: #102750;
}

.cdr-landing #pricing .cdr-popular {
  position: absolute;
  top: -1.55rem;
  left: 50%;
  padding: 0.75rem 1.45rem;
  border-radius: 99rem;
  background: #16a34a;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.cdr-landing #pricing .cdr-plan h3 {
  margin: 0.3rem 0 0.8rem;
  color: inherit;
  font-size: 2.15rem;
}

.cdr-landing #pricing .cdr-plan > p {
  min-height: 4rem;
  margin: 0;
  color: #aebacd;
  font-size: 1.5rem;
}

.cdr-landing #pricing .cdr-plan.popular > p {
  color: #58709b;
}

.cdr-landing #pricing .cdr-plan > strong {
  display: block;
  margin-top: 2rem;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
}

.cdr-landing #pricing .cdr-plan.popular > strong {
  color: #102750;
}

.cdr-landing #pricing .cdr-plan-delivery {
  display: block;
  margin-top: 0.7rem;
  color: #98a6bb;
  font-size: 1.2rem;
  font-weight: 700;
}

.cdr-landing #pricing .cdr-plan.popular .cdr-plan-delivery {
  color: #647b9e;
}

.cdr-landing #pricing .cdr-plan ul {
  display: grid;
  gap: 1.25rem;
  margin: 2.7rem 0;
  padding: 0;
  list-style: none;
}

.cdr-landing #pricing .cdr-plan li {
  color: #d6deea;
  font-size: 1.45rem;
}

.cdr-landing #pricing .cdr-plan li::before {
  display: inline-grid;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: #0f6f43;
  color: #4ade80;
  content: "âœ“";
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6rem;
  place-items: center;
}

.cdr-landing #pricing .cdr-plan.popular li {
  color: #243b62;
}

.cdr-landing #pricing .cdr-plan.popular li::before {
  background: #ddf7e6;
  color: #078337;
}

.cdr-landing #pricing .cdr-plan a {
  margin-top: auto;
  padding: 1.6rem;
  border-radius: 99rem;
  background: #16a34a;
  color: #061024;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.cdr-landing #pricing .cdr-plan.popular a {
  background: #102750;
  color: #fff;
}

@media (max-width: 991px) {
  .cdr-landing #pricing .cdr-plan.popular {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .cdr-landing #pricing .cdr-toggle button {
    min-width: 0;
    padding-inline: 1.1rem;
  }

  .cdr-landing #pricing .cdr-plan {
    min-height: 0;
    padding: 2.4rem;
    border-radius: 2.4rem;
  }
}

/* Expanded discipline list without progress controls. */
.cdr-landing #eligibility .progress {
  display: none !important;
}

.cdr-landing #eligibility .cdr-progress {
  display: flex !important;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.cdr-landing #eligibility .cdr-progress b {
  flex: 1;
  padding-top: 0.9rem;
  border-top: 0.55rem solid #dce3ef;
  color: #9badc6;
  font-size: 1.2rem;
  font-weight: 600;
}

.cdr-landing #eligibility .cdr-progress b.active {
  border-top-color: #16a34a;
  color: #0a1a3b;
}

.cdr-landing #eligibility .cdr-checker {
  padding-top: 2.8rem;
}

.cdr-landing #eligibility .cdr-choices {
  gap: 0.85rem;
}

.cdr-landing #eligibility .cdr-choices button,
.cdr-landing #eligibility .cdr-choices button:nth-child(n + 7) {
  display: block !important;
  min-height: 4.65rem;
}

.cdr-landing #eligibility .cdr-choices button {
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.cdr-landing #eligibility .cdr-choices button:hover,
.cdr-landing #eligibility .cdr-choices button:focus-visible {
  border-color: #9aaac1;
  background: #f4f7fb;
  box-shadow: 0 0.3rem 0.8rem rgba(10, 26, 59, 0.06);
  outline: 0;
  transform: translateY(-1px);
}
/* Eligibility step transitions. */
.cdr-landing #eligibility .cdr-progress b {
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease;
  animation: cdrStepReveal 0.32s ease both;
}
.cdr-landing #eligibility #cdrCheckContent > * {
  animation: cdrCheckerReveal 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.cdr-landing #eligibility .cdr-choices button {
  animation: cdrChoiceReveal 0.26s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.cdr-landing #eligibility .cdr-choices button:nth-child(2n) {
  animation-delay: 0.04s;
}
@keyframes cdrStepReveal {
  from {
    opacity: 0.5;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cdrCheckerReveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cdrChoiceReveal {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cdr-landing #eligibility .cdr-progress b,
  .cdr-landing #eligibility #cdrCheckContent > *,
  .cdr-landing #eligibility .cdr-choices button {
    animation: none;
    transition: none;
  }
}

/* Landing-page motion â€” intentionally scoped to  so other pages stay untouched. */
.cdr-landing .cdr-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.cdr-landing .cdr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cdr-landing .cdr-reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.cdr-landing .cdr-reveal:nth-child(3) {
  transition-delay: 0.14s;
}
.cdr-landing .cdr-hero .cdr-kicker {
  animation: cdrHeroIn 0.55s 0.05s both;
}
.cdr-landing .cdr-hero h1 {
  animation: cdrHeroIn 0.7s 0.13s both;
}
.cdr-landing .cdr-hero .col-lg-7 > p {
  animation: cdrHeroIn 0.7s 0.22s both;
}
.cdr-landing .cdr-hero .cdr-btns,
.cdr-landing .cdr-hero .cdr-proof,
.cdr-landing .cdr-hero .cdr-accepted {
  animation: cdrHeroIn 0.7s 0.32s both;
}
.cdr-landing .cdr-report {
  animation:
    cdrReportIn 0.85s 0.22s cubic-bezier(0.22, 0.61, 0.36, 1) both,
    cdrFloat 5.5s 1.2s ease-in-out infinite;
}
.cdr-landing .cdr-stamp {
  animation: cdrStampIn 0.6s 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.cdr-landing .cdr-engineers {
  animation: cdrHeroIn 0.6s 0.85s both;
}
.cdr-landing .cdr-btn,
.cdr-landing .cdr-result-cta,
.cdr-landing .cdr-plan a {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}
.cdr-landing .cdr-btn:hover,
.cdr-landing .cdr-result-cta:hover,
.cdr-landing .cdr-plan a:hover {
  transform: translateY(-0.18rem);
  box-shadow: 0 0.8rem 1.6rem rgba(16, 185, 84, 0.22);
}
.cdr-landing #why .cdr-feature,
.cdr-landing #pathways .cdr-card,
.cdr-landing .cdr-plan,
.cdr-landing .cdr-guarantee article {
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.cdr-landing #why .cdr-feature:hover,
.cdr-landing .cdr-guarantee article:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.25rem rgba(7, 24, 61, 0.12);
}
@keyframes cdrHeroIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cdrReportIn {
  from {
    opacity: 0;
    transform: translateX(2.5rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes cdrStampIn {
  from {
    opacity: 0;
    transform: rotate(-11deg) scale(0.72);
  }
  to {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}
@keyframes cdrFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cdr-landing .cdr-reveal,
  .cdr-landing .cdr-hero .cdr-kicker,
  .cdr-landing .cdr-hero h1,
  .cdr-landing .cdr-hero .col-lg-7 > p,
  .cdr-landing .cdr-hero .cdr-btns,
  .cdr-landing .cdr-hero .cdr-proof,
  .cdr-landing .cdr-hero .cdr-accepted,
  .cdr-landing .cdr-report,
  .cdr-landing .cdr-stamp,
  .cdr-landing .cdr-engineers {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Landing-page icon and ticker fallbacks. Keeps key UI controls visible without external icon timing. */
.cdr-landing .cdr-stats {
  overflow: hidden;
}
.cdr-landing .cdr-authority-ticker {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  width: max-content;
  min-width: 100%;
  padding: 1.7rem 0rem;
  border-top: 1px solid #dbe4f1;
  border-bottom: 1px solid #dbe4f1;
  background: #f2f6fc;
  color: #91a3c0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 3.5rem;
  animation: cdrAuthorityMarquee 28s linear infinite !important;
  will-change: transform;
}
.cdr-landing .cdr-authority-ticker span {
  display: inline-block;
  flex: 0 0 auto;
}
.cdr-landing .cdr-authority-ticker:hover {
  animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
  .cdr-landing .cdr-authority-ticker {
    animation: none !important;
  }
}

.cdr-landing .cdr-ticks li::before {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: #dcf5e5;
  color: #078337;
  content: "\2713" !important;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}
.cdr-landing #faq .accordion-button::after {
  display: grid !important;
  place-items: center;
  background-image: none !important;
  content: "+";
}
.cdr-landing #faq .accordion-button:not(.collapsed)::after {
  content: "\00d7";
}

/* Draw plan checks with CSS rather than a text glyph, avoiding character-encoding issues. */
.cdr-landing #pricing .cdr-plan li::before,
.cdr-landing #pricing .cdr-plan.popular li::before {
  display: inline-block;
  width: 0.65rem;
  height: 1.05rem;
  margin: 0 1.35rem 0.15rem 0.35rem;
  border: solid #4ade80;
  border-width: 0 0.22rem 0.22rem 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  content: "" !important;
  line-height: 0;
  transform: rotate(45deg);
  vertical-align: middle;
}
.cdr-landing #pricing .cdr-plan.popular li::before {
  border-color: #078337;
}

/* Eligibility benefits: a higher-specificity, encoding-safe checkmark. */
.cdr-landing #eligibility .cdr-ticks li::before {
  display: inline-block !important;
  width: 0.62rem !important;
  height: 1.02rem !important;
  margin: 0 1.35rem 0.15rem 0.35rem !important;
  border: solid #078337 !important;
  border-width: 0 0.22rem 0.22rem 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: transparent !important;
  content: "" !important;
  line-height: 0 !important;
  transform: rotate(45deg);
  vertical-align: middle;
}

/* Continuous authority marquee — explicit request takes priority over reduced-motion defaults. */
.cdr-landing .cdr-authority-ticker {
  width: 100%;
  min-width: 0;
  display: block;
  overflow: hidden;
  padding-inline: 0;
  animation: none !important;
  transform: none !important;
}
.cdr-landing .cdr-authority-ticker__track {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  width: max-content;
  min-width: max-content;
  animation: cdrAuthorityTextMarquee 28s linear infinite;
  will-change: transform;
}
.cdr-landing .cdr-authority-ticker__track span {
  flex: 0 0 auto;
}
.cdr-landing .cdr-authority-ticker:hover .cdr-authority-ticker__track {
  animation-play-state: paused;
}
@keyframes cdrAuthorityTextMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes cdrAuthorityContinuous {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================
   INDEX HEADER + FOOTER REDESIGN
   Scoped to so all other pages remain unchanged.
   ========================================================== */

/* Header */
#header {
  padding: 0;
  border-bottom: 1px solid rgba(10, 26, 59, 0.1);
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 0.8rem 2.6rem rgba(6, 16, 36, 0.08);
  backdrop-filter: blur(1.6rem);
  -webkit-backdrop-filter: blur(1.6rem);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
#header.navbar-scrolled {
  background: rgba(255, 255, 255, 0.985) !important;
  box-shadow: 0 1rem 3.2rem rgba(6, 16, 36, 0.14);
}
#header > .container {
  max-width: 142rem;
}
#header .navbar {
  min-height: 8rem;
  padding: 0.8rem 0;
}
#header .navbar-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 2.5rem;
}
#header .navbar .navbar-brand .logo {
  width: 16rem;
  max-height: 5.8rem;
  object-fit: contain;
}
#header .navbar-nav {
  align-items: center;
  gap: 0.35rem !important;
}
#header .navbar .nav-link {
  position: relative;
  padding: 1.15rem 1.25rem;
  border-radius: 0.9rem;
  background-image: none;
  color: #0a1a3b;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
#header .navbar .nav-link:hover,
#header .navbar .nav-link:focus,
#header .navbar .nav-link.show {
  background: #edf9f1;
  color: #078337;
}
#header .navbar .dropdown-toggle::after {
  margin-left: 0.55rem;
  vertical-align: 0.18rem;
  transition: transform 0.2s ease;
}
#header .navbar .dropdown-toggle.show::after,
#header .navbar .dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}
#header .navbar .btn-all {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  margin-left: 1.5rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0.8rem 1.8rem rgba(22, 163, 74, 0.24);
  color: #fff;
  font-size: 1.8rem;
}
#header .navbar .btn-all:hover {
  background: #22c55e;
  box-shadow: 0 1rem 2.2rem rgba(22, 163, 74, 0.34);
  transform: translateY(-0.2rem);
}
#header .navbar .dropdown-menu {
  padding: 1.5rem;
  border: 1px solid #dce3ef;
  border-radius: 1.8rem;
  background: #fff;
  box-shadow: 0 2rem 5rem rgba(6, 16, 36, 0.16);
}
#header .navbar .dropdown-menu a,
#header .navbar .dropdown-menu .dropdown-item {
  background-image: none;
  color: #536680;
  font-size: 1.3rem;
  line-height: 1.45;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}
#header .navbar .dropdown-menu a:hover,
#header .navbar .dropdown-menu .dropdown-item:hover {
  background: #edf9f1;
  color: #078337;
  transform: translateX(0.25rem);
}
#header .navbar .services-dropdown {
  overflow-y: auto;
  max-height: calc(100vh - 11rem);
}
#header .navbar .services-dropdown .service-item {
  padding: 1.5rem;
  border: 1px solid #e4eaf3;
  border-radius: 1.4rem;
  background: #f8fafc;
}
#header .navbar .services-dropdown .service-item > p,
#header .navbar .services-dropdown .service-item > p a,
#header .navbar .sub-dropdown .dropdown-menu p {
  color: #0a1a3b;
  font-size: 1.3rem;
  font-weight: 800;
}
#header .navbar .services-dropdown ul,
#header .navbar .sub-dropdown .dropdown-menu ul {
  margin: 1rem 0 0;
}
#header .navbar .services-dropdown li,
#header .navbar .sub-dropdown .dropdown-menu li {
  margin: 0.4rem 0;
}
#header .navbar-toggler {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.8rem;
  border: 1px solid #dce3ef;
  border-radius: 1rem;
  background: #f8fafc;
  box-shadow: none;
}
#header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.3rem rgba(22, 163, 74, 0.16);
}

/* Footer contact section */
footer {
  position: relative;
  background: #050c1f;
}
footer .contact-form {
  position: relative;
  padding: 8rem 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(22, 163, 74, 0.2), transparent 29%),
    #08142d;
}
footer .contact-form::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  content: "";
  pointer-events: none;
}
footer .contact-form > .container {
  position: relative;
  max-width: 124rem;
}
footer .contact-form .section-heading {
  margin-bottom: 3rem;
}
footer .contact-form h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  letter-spacing: -0.035em;
}
footer .contact-form h3::before {
  display: block;
  margin-bottom: 1rem;
  color: #4ade80;
  content: "LET'S TALK";
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
footer .contact-form .card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2.4rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
}
footer .contact-form__form .card {
  background: #fff;
  width: 98%;
}
footer .contact-form__form .card .card-body {
  padding: 3.2rem;
}
footer .contact-form__form label {
  margin-bottom: 0.7rem;
  color: #334968;
  font-size: 1.2rem;
  font-weight: 800;
}
footer .contact-form__form .form-control {
  min-height: 4.8rem;
  padding: 1rem 1.2rem !important;
  border: 1px solid #dce3ef !important;
  border-radius: 1rem !important;
  background: #f8fafc;
  color: #0a1a3b;
  font-size: 1.4rem !important;
  box-shadow: none;
}
footer .contact-form__form textarea.form-control {
  min-height: 10rem;
}
footer .contact-form__form .form-control:focus {
  border-color: #16a34a !important;
  background: #fff;
  box-shadow: 0 0 0 0.35rem rgba(22, 163, 74, 0.12);
}
footer .contact-form__form .iti {
  display: block;
  width: 100%;
}
footer .contact-form__form .iti .form-control {
  width: 100%;
}
footer .contact-form__form .iti__selected-country {
  border-radius: 1rem 0 0 1rem;
}
footer .contact-form__form .iti__selected-country:hover,
footer .contact-form__form .iti__selected-country[aria-expanded="true"] {
  background: #eef6f1;
}
footer .contact-form__form form .btn-all {
  width: auto;
  min-width: 18rem;
  margin-top: 1.5rem;
  padding: 1.45rem 2.4rem;
  border: 0;
  border-radius: 99rem;
  background: #16a34a;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
footer .contact-form__form form .btn-all:hover {
  background: #22c55e;
  transform: translateY(-0.2rem);
}
footer .contact-form__info .card {
  background: linear-gradient(145deg, #102750, #0a1f45);
}
footer .contact-form__info .card .card-body {
  padding: 3.2rem;
}
footer .contact-form__info .card .card-body ul {
  width: 100%;
}
footer .contact-form__info .card .card-body ul li {
  gap: 1.4rem;
  margin: 0;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #d8e2f1;
  font-size: 1.35rem;
}
footer .contact-form__info .card .card-body ul li:last-child {
  border-bottom: 0;
}
footer .contact-form__info .card .card-body ul li i,
footer .contact-form__info .card .card-body ul li svg {
  display: grid;
  flex: 0 0 4.2rem;
  width: 4.2rem;
  height: 4.2rem;
  padding: 1rem;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 1.2rem;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}
footer .contact-form__info .card .card-body ul li a {
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
}

/* Footer link directory */
footer .footer-links {
  padding: 7rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #050c1f;
}
footer .footer-links > .container-fluid {
  max-width: 142rem;
  padding-inline: 3rem;
}
footer .footer-links .row {
  justify-content: space-between;
}
footer .footer-links .footer-links__about-us .card {
  width: 100%;
  max-width: 22rem;
  overflow: hidden;
  border: 0;
  border-radius: 1.4rem;
  background: #fff;
}
footer .footer-links .footer-links__about-us .card-body {
  padding: 1.2rem;
}
footer .footer-links .footer-links__about-us img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .footer-links .footer-links__about-us p {
  max-width: 30rem;
  margin: 1.5rem 0;
  color: #93a4be;
  font-size: 1.25rem;
  line-height: 1.65;
}
footer .footer-links .footer-links__about-us p a {
  color: #4ade80;
  font-weight: 700;
}
footer .footer-links h4,
footer .footer-links .accordion-button {
  margin: 0 0 1.8rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
}
footer .footer-links h4::after {
  display: block;
  width: 3.6rem;
  height: 0.3rem;
  margin-top: 0.9rem;
  border-radius: 99rem;
  background: #16a34a;
  content: "";
}
footer .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-links ul li {
  margin: 0.85rem 0;
  color: #93a4be;
  font-size: 1.2rem;
  line-height: 1.45;
}
footer .footer-links a {
  background-image: none;
  color: #aebbd0;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
footer .footer-links ul a:hover {
  color: #4ade80;
}
footer .footer-links .footer-links__about-us ol {
  gap: 0.8rem;
  margin: 0;
}

footer .footer-links .footer-links__about-us ol li {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  background: #10203d;
  font-size: 1.6rem;
  line-height: 1;
}
footer .footer-links .footer-links__about-us ol li a {
  color: #4ade80;
}
footer .footer-links .copyrights {
  margin: 5rem 0 0;
  padding: 2.3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f90aa;
  font-size: 1.15rem;
}
footer .footer-links .accordion,
footer .footer-links .accordion-item,
footer .footer-links .accordion-button,
footer .footer-links .accordion-button:not(.collapsed) {
  border: 0;
  background: transparent !important;
  box-shadow: none;
}
footer .footer-links .accordion-button {
  width: 100%;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
footer .footer-links .accordion-body {
  padding: 0.6rem 0 1.6rem;
}

/* Floating controls */
footer .fixed-whatsapp-icon,
footer .go-to-top-btn {
  border: 0;
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.24);
}
footer .fixed-whatsapp-icon {
  background: #22c55e;
}
footer .go-to-top-btn {
  background: #0d2147;
  color: #fff;
}

@media (min-width: 992px) {
  #header .navbar .dropdown:hover > .services-dropdown {
    top: calc(100% + 0.9rem);
    left: 50%;
    width: min(132rem, 96vw);
    padding: 2.2rem;
    border-radius: 2rem;
    transform: translateX(-50%);
  }
  #header .navbar .dropdown:hover > .dropdown-menu:has(.sub-dropdown) {
    top: calc(100% + 0.9rem);
    left: 50%;
    min-width: 24rem;
    transform: translateX(-50%);
  }
  #header .navbar .sub-dropdown .dropdown-menu {
    top: 0;
    left: 50%;
    width: min(116rem, 92vw);
    max-height: calc(100vh - 13rem);
    padding: 2.4rem;
    transform: translateX(-50%);
  }
}

/* Positive assessment outcome letters carousel. */
.cdr-landing .cdr-outcomes {
  overflow: hidden;
  background: #fff;
}
.cdr-outcomes-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
.cdr-outcomes-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 2px 20px;
}
.cdr-outcomes-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cdr-outcome-card {
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0 10px;
  overflow: hidden;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 26, 59, 0.1);
}
.cdr-outcome-card:first-child {
  margin-left: 0;
}
.cdr-outcome-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}
.cdr-outcome-card figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  color: #107335;
  font-size: 1.25rem;
  font-weight: 700;
}
.cdr-outcome-card figcaption svg {
  width: 17px;
  height: 17px;
}
.cdr-outcomes-control {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #dce3ef;
  border-radius: 50%;
  background: #fff;
  color: #0a1a3b;
  transition:
    background 0.2s,
    color 0.2s,
    opacity 0.2s;
}
.cdr-outcomes-control:hover:not(:disabled) {
  background: #16a34a;
  color: #fff;
}
.cdr-outcomes-control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.cdr-outcomes-control svg {
  width: 20px;
  height: 20px;
}
.cdr-outcomes-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.cdr-outcomes-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
}
.cdr-outcomes-dots button.active {
  width: 24px;
  border-radius: 10px;
  background: #16a34a;
}
@media (max-width: 1099px) {
  .cdr-outcome-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .cdr-outcomes-slider {
    gap: 9px;
  }
  .cdr-outcomes-control {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .cdr-outcome-card {
    flex-basis: 100%;
    margin: 0;
  }
  .cdr-outcome-card img {
    aspect-ratio: 3 / 4;
  }
  .cdr-outcome-card figcaption {
    font-size: 1.15rem;
  }
}

@media (max-width: 1199px) {
  #header .navbar .nav-link {
    padding-inline: 0.8rem;
    font-size: 1.25rem;
  }
  #header .navbar .navbar-brand .logo {
    width: 14rem;
  }
}

@media (max-width: 991px) {
  #header > .container {
    max-width: none;
  }
  #header .navbar {
    min-height: 7.2rem;
  }
  #header .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    max-height: calc(100vh - 8rem);
    padding: 1.2rem;
    overflow-y: auto;
    border: 1px solid #dce3ef;
    border-radius: 0 0 1.8rem 1.8rem;
    background: #fff;
    box-shadow: 0 2rem 4rem rgba(6, 16, 36, 0.16);
  }
  #header .navbar-nav {
    align-items: stretch;
  }
  #header .navbar .nav-link {
    width: 100%;
    padding: 1.35rem 1.2rem;
    border-bottom: 1px solid #edf1f6;
    border-radius: 0.8rem;
    font-size: 1.4rem;
  }
  #header .navbar .dropdown-menu,
  #header .navbar .services-dropdown,
  #header .navbar .sub-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: none;
    max-height: none;
    margin: 0.5rem 0 1rem;
    padding: 1rem;
    overflow: visible;
    border-radius: 1rem;
    background: #f8fafc;
    box-shadow: none;
    transform: none !important;
  }
  #header .navbar .services-dropdown .service-item {
    padding: 1.2rem;
    background: #fff;
  }
  #header .navbar .btn-all {
    margin: 0 1rem 0 auto;
  }
  footer .contact-form {
    padding: 6rem 0 !important;
  }
  footer .footer-links > .container-fluid {
    padding-inline: 2rem;
  }
}

@media (max-width: 767px) {
  #header .navbar .navbar-brand .logo {
    width: 12.5rem;
  }
  #header .navbar .btn-all {
    width: 4.2rem;
    height: 4.2rem;
  }
  footer .contact-form {
    padding: 5rem 0 !important;
  }
  footer .contact-form__form .card .card-body,
  footer .contact-form__info .card .card-body {
    padding: 2.2rem;
  }
  footer .footer-links {
    padding: 5rem 0 2rem;
  }
  footer .footer-links .footer-links__about-us .card {
    width: 18rem;
  }
  footer .footer-links .copyrights {
    margin-top: 3rem;
  }
}

/* Desktop ANZSCO navigation: keep the tab row and its mega submenu connected. */
@media (min-width: 992px) {
  #header .navbar .nav-item.dropdown > .dropdown-menu:has(.sub-dropdown) {
    top: 100%;
    left: 50%;
    display: none;
    min-width: 42rem;
    margin: 0;
    padding: 0.65rem;
    overflow: visible;
    border-radius: 1.4rem;
    transform: translateX(-50%);
  }
  #header .navbar .nav-item.dropdown:hover > .dropdown-menu:has(.sub-dropdown),
  #header
    .navbar
    .nav-item.dropdown:focus-within
    > .dropdown-menu:has(.sub-dropdown),
  #header .navbar .nav-item.dropdown > .dropdown-menu:has(.sub-dropdown):hover {
    display: flex !important;
    align-items: stretch;
  }
  #header .navbar .dropdown-menu:has(.sub-dropdown) > .sub-dropdown {
    position: static;
    flex: 1 1 50%;
    list-style: none;
  }
  #header
    .navbar
    .dropdown-menu:has(.sub-dropdown)
    > .sub-dropdown
    > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.6rem;
    padding: 1.1rem 1.4rem;
    border-radius: 0.9rem;
    color: #0a1a3b;
    font-size: 1.35rem;
    font-weight: 750;
    white-space: nowrap;
  }
  #header
    .navbar
    .dropdown-menu:has(.sub-dropdown)
    > .sub-dropdown:hover
    > .dropdown-item,
  #header
    .navbar
    .dropdown-menu:has(.sub-dropdown)
    > .sub-dropdown:focus-within
    > .dropdown-item {
    background: #edf9f1;
    color: #078337;
  }
  #header .navbar .sub-dropdown > .dropdown-menu {
    top: 100%;
    left: 50%;
    display: none;
    width: min(116rem, 94vw);
    max-height: calc(100vh - 16rem);
    margin: 0;
    padding: 2.5rem;
    overflow: auto;
    border-radius: 0 0 2rem 2rem;
    transform: translateX(-50%);
  }
  #header .navbar .sub-dropdown:hover > .dropdown-menu,
  #header .navbar .sub-dropdown:focus-within > .dropdown-menu,
  #header .navbar .sub-dropdown > .dropdown-menu:hover {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  #header .navbar .sub-dropdown > .dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 0.8rem;
    content: "";
  }
  #header .navbar .sub-dropdown > .dropdown-menu > .col {
    padding: 0 1.8rem;
  }
  #header .navbar .sub-dropdown > .dropdown-menu p {
    margin: 1.5rem 0 0.7rem;
    color: #536680;
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: 0.045em;
  }
  #header .navbar .sub-dropdown > .dropdown-menu a {
    display: inline-block;
    padding: 0.35rem 0.45rem;
    border-radius: 0.55rem;
    color: #526680;
  }
}

/* Global header/footer readability adjustments. */
#header .navbar .nav-link {
  font-size: 1.58rem;
}
#header .navbar .dropdown-menu a,
#header .navbar .dropdown-menu .dropdown-item {
  font-size: 1.45rem;
  line-height: 1.55;
}
#header .navbar .services-dropdown .service-item > p,
#header .navbar .services-dropdown .service-item > p a,
#header .navbar .sub-dropdown .dropdown-menu p {
  font-size: 1.7rem;
}
#header .navbar .services-dropdown li,
#header .navbar .sub-dropdown .dropdown-menu li {
  margin: 0.55rem 0;
}
footer .contact-form__form label {
  font-size: 1.4rem;
}
footer .contact-form__form .form-control,
footer .contact-form__info .card .card-body ul li,
footer .contact-form__info .card .card-body ul li a {
  font-size: 1.5rem !important;
}
footer .footer-links h4,
footer .footer-links .accordion-button {
  font-size: 1.8rem;
}
footer .footer-links ul li {
  font-size: 1.42rem;
  line-height: 1.55;
}
footer .footer-links .footer-links__about-us p {
  font-size: 1.4rem;
  line-height: 1.7;
}
footer .footer-links .copyrights {
  font-size: 1.3rem;
}
@media (max-width: 1199px) {
  #header .navbar .nav-link {
    font-size: 1.42rem;
  }
}
@media (max-width: 991px) {
  #header .navbar .nav-link,
  #header .navbar .dropdown-menu a,
  #header .navbar .dropdown-menu .dropdown-item {
    font-size: 1.52rem;
  }
  footer .footer-links ul li {
    font-size: 1.48rem;
  }
}

/* Full-width Featurable reviews embed on the landing page. */
.cdr-landing .cdr-featurable-reviews {
  overflow: hidden;
  padding: 7rem 0;
  background: #fff;
}
.cdr-landing .cdr-featurable-reviews > .container-fluid {
  width: 100%;
  max-width: 144rem;
  margin-inline: auto;
  padding-inline: clamp(1.6rem, 4vw, 5rem);
}
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
}
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 > div,
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 > section,
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 iframe {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-inline: auto !important;
}
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 [class*="container"],
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 [class*="wrapper"],
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 [class*="widget"],
#featurable-6ee85858-857f-4e78-905d-5d5923899fe6 [style*="max-width"] {
  width: 100% !important;
  max-width: none !important;
}
@media (max-width: 767px) {
  .cdr-landing .cdr-featurable-reviews {
    padding: 5rem 0;
  }
}

/* Header/footer readability pass: keep original layout, add space between menu boxes. */
#header .navbar {
  min-height: 8.8rem !important;
  padding: 1rem 0 !important;
}
#header .navbar .navbar-brand .logo {
  width: 18rem !important;
  height: auto !important;
}
#header .navbar-nav {
  gap: 1.8rem !important;
}
#header .navbar .nav-link {
  font-size: 1.9rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}
#header .navbar .dropdown-menu a,
#header .navbar .dropdown-menu .dropdown-item {
  font-size: 1.68rem !important;
  line-height: 1.45 !important;
}
#header .navbar .services-dropdown {
  padding: 3.2rem !important;
}
#header .navbar .services-dropdown .row {
  --bs-gutter-x: 2rem !important;
  --bs-gutter-y: 2rem !important;
}
#header .navbar .services-dropdown .service-item {
  padding: 1.8rem !important;
  border: 1px solid #dde7f1 !important;
  border-radius: 1.1rem !important;
  background: #f8fafc !important;
  box-shadow: none !important;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease !important;
}
#header .navbar .services-dropdown .service-item:hover {
  border-color: #b8dcbc !important;
  background: #fff !important;
  box-shadow: 0 0.8rem 2.2rem rgba(16, 34, 58, 0.08) !important;
}
#header .navbar .services-dropdown p,
#header .navbar .services-dropdown .service-item > p,
#header .navbar .services-dropdown .service-item > p a {
  margin-bottom: 1.05rem !important;
  color: #0b1f3f !important;
  font-size: 1.75rem !important;
  line-height: 1.35 !important;
}
#header .navbar .services-dropdown li {
  margin-bottom: 0.55rem !important;
}
#header .navbar .services-dropdown li a {
  font-size: 1.6rem !important;
  line-height: 1.5 !important;
}
footer .footer-links h4,
footer .footer-links .accordion-button {
  font-size: 2rem !important;
}
footer .footer-links ul li,
footer .footer-links a {
  font-size: 1.58rem !important;
  line-height: 1.65 !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  #header .navbar-nav {
    gap: 1rem !important;
  }
  #header .navbar .nav-link {
    font-size: 1.62rem !important;
  }
}
@media (max-width: 991px) {
  #header .navbar .nav-link {
    font-size: 1.68rem !important;
  }
  #header .navbar .services-dropdown .service-item {
    padding: 1.4rem !important;
  }
}

/* Keep the international phone picker compact within the footer form. */
footer .contact-form__form .iti {
  font-size: 14px !important;
  line-height: 1.2 !important;
}
footer .contact-form__form .iti input#phoneFooter {
  min-height: 4.8rem;
  padding-left: 11rem !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
footer .contact-form__form .iti__selected-country {
  padding: 0 8px 0 10px !important;
}
footer .contact-form__form .iti__selected-dial-code {
  margin-left: 6px;
  font-size: 14px !important;
}
.iti--container,
.iti__country-list,
.iti__search-input,
.iti__country,
.iti__country-name,
.iti__dial-code {
  font-family: Inter, "Source Sans Pro", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}
.iti__country-list {
  max-height: 240px !important;
}
.iti__country {
  min-height: 0 !important;
  padding: 7px 10px !important;
}
.iti__search-input {
  min-height: 34px !important;
  padding: 7px 9px 7px 32px !important;
  background-position: 9px center !important;
}

/* Place the footer-directory accent directly beneath each desktop heading. */
footer .footer-links h4:not(.accordion-header) {
  position: relative;
  display: block !important;
  padding-bottom: 12px;
  line-height: 1.1;
  text-align: left;
}
footer .footer-links h4:not(.accordion-header)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block !important;
  margin: 0 !important;
}

/* Avoid a flash of page content before the asynchronously loaded header is ready. */
#team .cdr-team-card {
  height: 100%;
  padding: 2.2rem;
  border: 1px solid #dfe7f0;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0 1.4rem 2.8rem rgba(18, 47, 78, 0.07);
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s ease;
}

#team .cdr-team-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(10, 26, 59, 0.12);
}

#team .cdr-team-card__header {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #dfe7f0;
}

#team .cdr-team-card__avatar {
  display: grid;
  flex: 0 0 4.3rem;
  width: 4.3rem;
  height: 4.3rem;
  place-items: center;
  border-radius: 1.4rem;
  background: #e3f5ea;
  color: #087b38;
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 800;
}

#team .cdr-team-card h3 {
  margin: 0 0 0.55rem;
  color: #092847;
  font-size: 1.65rem;
  line-height: 1.1;
}

#team .cdr-team-card__role {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 1.4rem;
  border-radius: 99rem;
  background: #f0f4f8;
  color: #52739b;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 600;
}

#team .cdr-team-card__details {
  display: grid;
  gap: 1.6rem;
  padding-top: 1.8rem;
}

#team .cdr-team-card__details div {
  color: #506f96;
  font-size: 1.35rem;
  line-height: 1.5;
}

#team .cdr-team-card__details b {
  display: block;
  margin-bottom: 0.4rem;
  color: #91a5bd;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #team .cdr-team-card {
    padding: 2rem;
  }
}

#story {
  background: #f4f7fb;
}

#story .cdr-timeline {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#story .cdr-timeline::before {
  position: absolute;
  top: 2.8rem;
  bottom: 2.8rem;
  left: 2.8rem;
  width: 1px;
  content: "";
  background: #d5dfe9;
}

#story .cdr-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
}

#story .cdr-timeline__item + .cdr-timeline__item {
  margin-top: 3rem;
}

#story .cdr-timeline__year {
  z-index: 1;
  display: grid;
  width: 5.6rem;
  height: 5.6rem;
  place-items: center;
  border: 1px solid #e1e7ee;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1.2rem 2.5rem rgba(20, 46, 75, 0.09);
  color: #082c52;
  font-size: 1.55rem;
  font-weight: 800;
}

#story .cdr-timeline__card {
  padding: 2.35rem 2.6rem;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0 1.4rem 3rem rgba(20, 46, 75, 0.1);
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s ease;
}

#story .cdr-timeline__card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(10, 26, 59, 0.12);
}

#story .cdr-timeline__card h3 {
  margin: 0 0 1rem;
  color: #062950;
  font-size: clamp(1.9rem, 2.1vw, 2.25rem);
  line-height: 1.25;
}

#story .cdr-timeline__card p {
  margin: 0;
  color: #58779d;
  font-size: 1.5rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  #story .cdr-timeline::before {
    left: 2.35rem;
  }
  #story .cdr-timeline__item {
    grid-template-columns: 4.7rem minmax(0, 1fr);
    gap: 1.5rem;
  }
  #story .cdr-timeline__year {
    width: 4.7rem;
    height: 4.7rem;
    border-radius: 1.3rem;
    font-size: 1.35rem;
  }
  #story .cdr-timeline__card {
    padding: 2rem;
    border-radius: 2rem;
  }
}

.cdr-values {
  padding: 8.8rem 0;
  background: #061e30;
  color: #fff;
}

.cdr-values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 4.4rem;
  max-width: 108rem;
  margin: 0 auto;
  align-items: center;
}

.cdr-values__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #62eb9d;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cdr-values__eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.cdr-values h2 {
  margin: 2rem 0 2.4rem;
  color: #fff;
  font-size: clamp(3.2rem, 4.1vw, 5.1rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cdr-values blockquote {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(180, 207, 224, 0.17);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.045);
}

.cdr-values blockquote i {
  color: #62eb9d;
  font-size: 2.5rem;
  line-height: 1;
}

.cdr-values blockquote p {
  margin: 0;
  color: #e4edf6;
  font-size: 1.5rem;
  line-height: 1.5;
}

.cdr-values__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid rgba(41, 210, 112, 0.3);
  border-radius: 99rem;
  background: rgba(16, 185, 84, 0.09);
  color: #62eb9d;
  font-size: 1.3rem;
  font-weight: 800;
}

.cdr-values__list {
  display: grid;
  gap: 1.4rem;
}

.cdr-values__card {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 2.1rem;
  border: 1px solid rgba(180, 207, 224, 0.17);
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.28s ease,
    border-color 0.28s ease;
}

.cdr-values__card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(98, 235, 157, 0.35);
  background: rgba(255, 255, 255, 0.075);
}

.cdr-values__card > span {
  color: #62eb9d;
  font-size: 1.35rem;
  font-weight: 800;
}

.cdr-values__card h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.2;
}

.cdr-values__card p {
  margin: 0;
  color: #b8c7d7;
  font-size: 1.35rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .cdr-values__grid {
    grid-template-columns: 1fr;
    max-width: 72rem;
  }
}

@media (max-width: 767px) {
  .cdr-values {
    padding: 6rem 0;
  }
  .cdr-values h2 {
    font-size: 3.25rem;
  }
  .cdr-values__card {
    padding: 1.8rem;
    border-radius: 1.8rem;
  }
}

body:not(.shared-header-ready) #site-header ~ main,
#site-header:empty ~ main {
  visibility: hidden;
}

/* Force visible separation between service dropdown boxes. */
#header .navbar .services-dropdown .row {
  gap: 2rem !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
#header .navbar .services-dropdown .row > .service-item {
  padding: 1.8rem !important;
}

@media (min-width: 992px) {
  #header .navbar .services-dropdown .row {
    display: grid !important;
  }
  #header .navbar .services-dropdown .row:first-of-type {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  #header .navbar .services-dropdown .row:nth-of-type(2) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin-top: 2rem !important;
  }
  #header .navbar .services-dropdown .row > .service-item {
    width: auto !important;
    max-width: none !important;
  }
}

/* Canada services use a dedicated two-column link panel in the Services menu. */
#header .navbar .services-dropdown .canada-services {
  width: 100%;
  max-width: 65rem;
  justify-self: center;
  border-color: #a8d8ae !important;
  background: #fff !important;
}

#header .navbar .services-dropdown .canada-services > p {
  margin-bottom: 2.3rem !important;
  color: #102f57 !important;
  font-size: 2rem !important;
}

#header .navbar .services-dropdown .canada-services__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
  margin: 0 !important;
}

#header .navbar .services-dropdown .canada-services__links li {
  margin: 0 !important;
}

#header .navbar .services-dropdown .canada-services__links li a {
  display: inline-block;
  width: 100%;
  padding: 0.2rem 0.35rem;
  border-radius: 0.35rem;
  background: transparent;
  color: #38577d;
  font-size: 1.55rem !important;
  line-height: 1.35 !important;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

#header .navbar .services-dropdown .canada-services__links li a:hover {
  background: #edf9f1;
  color: #078337;
  transform: translateX(0.25rem);
}

@media (min-width: 992px) {
  #header .navbar .services-dropdown .row:nth-of-type(2) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr) !important;
  }
}

@media (max-width: 991px) {
  #header .navbar .services-dropdown .canada-services__links {
    row-gap: 1.25rem;
  }
}

@media (max-width: 575px) {
  #header .navbar .services-dropdown .canada-services__links {
    grid-template-columns: 1fr;
  }
}
