/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
  --body: #fcfcfc;
  --primary: #212427;
  --secondary: #cf8a00;
  --navy: #162542;
  --grey: rgba(33, 36, 39, 0.5);
  --light: #eff0ef;

  --blue: #70b5ff;
  --sky: #c4e1ff;
}

/* ==================== [ Fonts ] ==================== */
:root {
  --font-primary: "georgia", serif;
  --font-secondary: "aptos", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
  --container: 1170px;
  --container-padding: 20px;
  --row-gutter-space: 30px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
  --a-color: var(--primary);
  --a-hover-color: var(--secondary);

  --marker-color: var(--primary);

  --blockquote-border-color: var(--secondary);
  --blockquote-bg: var(--white);

  --pre-bg: var(--white);
  --pre-color: var(--primary);
}

/* ==================== [ Table ] ==================== */
:root {
  --table-border: rgba(0, 0, 0, 0.2);

  --table-th-bg: var(--primary);
  --table-th-color: var(--white);

  --table-td-bg: var(--transparent);
  --table-td-color: var(--primary);
}

/* ==================== [ Headings ] ==================== */
:root {
  --heading-color: #162542;
  --heading-font-family: var(--font-primary);
  --heading-mb: 30px;
  --heading-fw: 400;

  --h1-fs: 56px;
  --h1-lh: 120%;

  --h2-fs: 48px;
  --h2-lh: 130%;

  --h3-fs: 42px;
  --h3-lh: 130%;

  --h4-fs: 36px;
  --h4-lh: 130%;

  --h5-fs: 28px;
  --h5-lh: 130%;

  --h6-fs: 20px;
  --h6-lh: 150%;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: var(--navy);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  background: var(--body);
  /* overflow-x: hidden; */
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
  margin: 0;
}

strong,
b {
  font-weight: 700 !important;
}

a,
input,
button,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: var(--transparent) !important;
  color: var(--secondary) !important;
}

a {
  color: var(--a-color);
  word-break: break-word;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

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

p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

ol,
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol li,
ul li {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ol li::marker,
ul li::marker {
  font-size: 14px;
  color: var(--marker-color);
}

/* ul li:has(> ul),
ul li:has(> ol) {
  list-style-type: none;
} */

blockquote {
  padding: 16px 16px 16px 24px;
  border-left: 5px solid var(--blockquote-border-color);
  margin-bottom: 20px;
  background-color: var(--blockquote-bg);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

pre {
  background-color: var(--pre-bg);
  padding: 16px;
  overflow: auto;
  font-family: inherit;
  border-radius: 12px;
  position: relative;
  color: var(--pre-color);
}

pre code {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: inherit;
}

th,
td {
  border: 1px solid var(--table-border);
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: var(--table-th-bg);
  font-weight: 600;
  font-size: inherit;
  color: var(--table-th-color);
}

td {
  background-color: var(--table-td-bg);
  font-weight: 400;
  font-size: inherit;
  color: var(--table-td-color);
}

h1,
.h1>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h2,
.h2>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h3,
.h3>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h4,
.h4>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h5,
.h5>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h6,
.h6>* {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

hr {
  margin-block: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.typography {
  padding-block: 120px;
}

.typography img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.typography img.align-left {
  margin-right: 40px;
  float: left;
}

.typography img.align-right {
  margin-left: 40px;
  float: right;
}

.typography img.align-center {
  margin-inline: auto;
  display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
  margin-inline: calc(var(--row-gutter-space) / -2);
  row-gap: var(--row-gutter-space);
}

.row>* {
  padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
  width: fit-content;
  padding: 10px 15px;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0px;
  border: 1px solid;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.btn-primary {
  color: var(--primary);
  background: var(--body);
  border-color: var(--secondary);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
  color: var(--body) !important;
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.btn-secondary {
  color: var(--light);
  background: transparent;
  border-color: var(--light);
}

.btn-secondary:is(:hover, :focus-visible, :active, .active) {
  color: var(--body) !important;
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.btn-orange {
  color: var(--body);
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-orange:is(:hover, :focus-visible, :active, .active) {
  background-color: var(--transparent);
  border-color: var(--secondary);
}

.white-btn {
  width: 100%;
  max-width: 370px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.6px;
  line-height: 150%;
  padding: 16px 18px 16px 18px;
  background-color: var(--white);
  text-decoration: none;
  border-left: 5px solid var(--blue);
  margin-top: 10px;
}

.white-btn svg {
  color: var(--secondary);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.white-btn:hover svg {
  color: var(--navy);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .heading {
  text-align: center;
}

.error-404 .action * {
  width: fit-content;
  margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

.common-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: var(--secondary);
  -moz-text-decoration-color: var(--secondary);
}

.common-link svg {
  color: var(--secondary);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  padding: 0 0 0 4px;
}

.common-link:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
  -moz-text-decoration-color: var(--navy);
}

.common-link:hover svg {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  color: var(--navy);
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Header Start ] ==================== */

/* .header {
  padding: 38px 0 32px;
  } */

.header .navbar {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
}

.header .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 230px;
  width: 100%;
  z-index: 11;
}

.header .navbar-brand * {
  width: 100%;
  height: 100%;
}

.header .navbar-nav .nav-item {
  /* padding-right: 26px; */
  margin: 0 15px;
  /* padding-block: 55px 46px; */
  padding: 38px 0 32px;
}

.header .navbar-nav .nav-item:first-child {
  padding-left: 0;
}

.header .navbar-nav .nav-item .nav-link {
  color: var(--primary);
  font-family: var(--font-secondary);
  font-weight: inherit;
  font-size: 16px;
  line-height: 150%;
  padding: 0;
  position: relative;
  display: flex;
  gap: 10px;
}

.header .navbar-nav .nav-item .nav-link.active {
  color: var(--secondary);
}

.header .navbar-nav .nav-item.current-menu-item .nav-link {
  color: var(--secondary);
}

.navbar-nav .dropdown-menu {
  border-radius: 0px;
  background: var(--white);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 10px 16px;
  border-color: rgba(33, 36, 39, 0.3);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  min-width: 200px;
}

.navbar-nav .dropdown-menu li a {
  padding: 0px;
  color: var(--primary);

  font-size: 16px;
  line-height: 150%;
}

.navbar-nav .dropdown-menu li a:hover {
  color: var(--secondary) !important;
}

.navbar-nav .dropdown-menu li a.active {
  background-color: transparent;
  color: #000;
}

.navbar-nav .dropdown-menu li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(33, 36, 39, 0.3);
}

.navbar-nav .dropdown-menu> :last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0;
}

.navbar-nav .dropdown-menu li a:hover {
  color: var(--black);
  background: transparent;
}

.navbar-nav .dropdown .dropdown-toggle:after {
  display: none;
}

.header .dropdown-toggle .menu-arrow {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.header .dropdown-toggle.show .menu-arrow,
.header .dropdown.show .menu-arrow {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}

.navbar-nav .dropdown .nav-link:hover svg path,
.navbar-nav .dropdown .nav-link.active svg path {
  stroke: var(--primary);
}

.header .navbar-nav .nav-item .nav-link:hover,
.navbar-nav .dropdown.show .dropdown-toggle.show,
.navbar-nav .dropdown .dropdown-toggle.show,
.header .navbar-nav .nav-item .nav-link.active,
.navbar-nav .dropdown.show .dropdown-toggle,
.current_page_parent .nav-link,
/* .current-menu-item .dropdown-item ,  */
.current-menu-item .dropdown-toggle,
.dropdown-menu .current-menu-item .dropdown-item {
  color: var(--secondary) !important;
}

.header .navbar-nav .nav-item .nav-link:hover::after,
.header .navbar-nav .nav-item .nav-link.active::after,
.navbar-nav .dropdown.show .dropdown-toggle svg,
.navbar-nav .dropdown .dropdown-toggle.show,
.current_page_parent .nav-link .menu-arrow svg,
.current-menu-item svg {
  filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(1900%) hue-rotate(12deg) brightness(93%) contrast(104%);
  -webkit-filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(1900%) hue-rotate(12deg) brightness(93%) contrast(104%);
}

.header .navbar-nav .dropdown .nav-item {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}

.header .navbar-nav .dropdown .dropdown-menu>*:last-child {
  margin: 0;
  padding: 0;
}

.navbar-nav .dropdown-menu {
  display: block;
  opacity: 0;
  top: 100%;
  pointer-events: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.navbar-nav .dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
}

.header .navbar .header-btn {
  margin-left: 15px;
}

@media (min-width: 992px) {
  .header .menu-item:has(.dropdown-menu) .nav-link { pointer-events: none; user-select: none; }
}

.current-menu-parent .nav-link { color: var(--secondary) !important; }
.current-menu-parent .nav-link .menu-arrow svg { filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(1900%) hue-rotate(12deg) brightness(93%) contrast(104%);
  -webkit-filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(1900%) hue-rotate(12deg) brightness(93%) contrast(104%); }
/* ==================== [ Header End ] ==================== */

/* ==================== [ Footer Start ] ==================== */

.footer {
  background: var(--navy);
  padding: 0 0 0 0;
	/*padding: 64px 0 0 0;*/
}

.footer-wrapper {
  max-width: 1336px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(239, 240, 239, 0.2);
}

.footer-top-left {
  display: flex;
  align-items: flex-start;
}

.footer-icon {
  display: inline-flex;
  max-width: 66px;
  width: 100%;
  padding-top: 10px;
}

.footer-top-detail .title * {
  font-size: 32px;
  line-height: 130%;
  color: var(--light);
  margin-bottom: 11px;
}

.footer-top-detail .disc * {
  font-size: inherit;
  line-height: inherit;
  color: rgba(239, 240, 239, 0.8);
  margin: 0;
}

.footer-top-detail {
  max-width: 462px;
  margin-left: 16px;
}

.footer-middle-left {
  display: flex;
  column-gap: 66px;
}

.footer-navigation span {
  color: rgba(239, 240, 239, 0.8);
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: inline-flex;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
}

.footer-navigation ul li {
  list-style-type: none;
  margin-bottom: 5px;
}

.footer-navigation ul li a {
  font-size: 14px;
  line-height: 150%;
  color: rgba(239, 240, 239, 0.6);
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--secondary);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 43px 0 48px 0;
}

.footer-middle .socials ul {
  display: flex;
  column-gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-middle .socials ul li {
  list-style-type: none;
}

.footer-middle .socials ul li a {
  opacity: 0.8;
  display: inline-flex;
}

.footer-middle .socials ul li a img {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.footer-middle .socials ul li a:hover {
  opacity: 1;
}

.footer-middle .socials ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(1093%) hue-rotate(18deg) brightness(99%) contrast(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(1093%) hue-rotate(18deg) brightness(99%) contrast(103%);
}

.footer .footer-bottom {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  row-gap: 10px;
  margin: 0 auto;
  padding: 15px;
  background: #101c33;
}

.footer .footer-bottom .disc *,
.footer .footer-bottom ul li a {
  margin: 0;
  color: rgba(239, 240, 239, 0.6);
  text-decoration: none;
  font-size: 14px;
}

.footer .footer-bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  list-style-type: none;
}

.footer .footer-bottom ul li a:hover {
  color: var(--secondary);
}

.footer-btn .btn {
  padding: 10px 48px;
}

/* ==================== [ Footer End ] ==================== */

/* ==================== [ Banner Start ] ==================== */

.banner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding-block: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner.home-banner .banner-content .main-title {
  width: 100%;
  max-width: 610px;
}

.banner .banner-content .main-title {
  width: 100%;
  max-width: 570px;
}

.banner-content .main-title * {
  color: var(--white);
}

.banner-content .main-title span {
  color: var(--secondary);
  position: relative;
}

.banner-content .main-title span::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  animation: lineAnimation 2s both 0.3s ease-in-out;
  -webkit-animation: lineAnimation 2s both 0.3s ease-in-out;
}

@keyframes lineAnimation {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.banner-button {
  width: 100%;
  max-width: 370px;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.banner .banner-content .sub-title * {
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}

.banner .banner-content .disc {
  width: 100%;
  max-width: 536px;
}

.banner.banner-details .banner-content .disc {
  width: 100%;
  max-width: 715px;
}

.banner .banner-content .disc * {
  font-size: 20px;
  letter-spacing: 0.6px;
  color: var(--white);
  margin: 0;
}

.banner-content .action .white-btn {
  margin-top: 43px;
  padding-block: 14px;
  font-size: 18px;
}

.banner.solutions-detail-banner {
  padding: 110px 0;
  min-height: 400px;
}

.about-banner.banner .banner-content .main-title {
  max-width: 615px;
}

.banner-video {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.banner-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ==================== [ Banner End ] ==================== */

/* ==================== [ Brokerage Start ] ==================== */

.heading-wrp {
  padding: 54px 0;
}

.heading-wrp .heading-block {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.heading-wrp .heading-block .title * {
  margin: 0;
}

/* ==================== [ Brokerage End ] ==================== */

/* ==================== [ Advantage Start ] ==================== */

.advantage {
  background-color: var(--navy);
  padding-top: 58px;
  overflow: hidden;
}

.advantage .heading {
  width: 100%;
  max-width: 1049px;
  margin-bottom: 57px;
}

.advantage .heading .sub-title * {
  color: var(--white);
}

.advantage .heading .title * {
  color: var(--white);
}

.advantage .heading .title span {
  color: var(--blue);
}

.advantage-container .row {
  margin: 0;
  row-gap: 0;
  align-items: stretch;
}

.advantage-container .row>* {
  padding: 0;
}

.advantage-container .advantage-left {
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 100%;
}

.advantage-left .about-superior-container {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  width: 100%;
  padding: 360px 0 0 0;
  height: 100%;
  display: flex;
}

.about-superior-container .about-superior-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: var(--light);
  padding: 44px 70px;
  width: 100%;
  max-width: 505px;
  min-height: 360px;
  margin: auto 0 0 0;
}

.about-superior-block a {
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  text-transform: capitalize;
}

.about-superior-block a:hover {
  color: var(--primary);
}

.about-superior-block a svg {
  color: var(--secondary);
  margin-left: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.about-superior-block a:hover svg {
  color: var(--navy);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.advantage-container .advantage-left .advanrage-image {
  width: 100%;
  height: 100%;
}

.advantage-container .advantage-left .advanrage-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-container .advantage-right {
  height: 100%;
}

.advantage-container .advantage-right .row {
  height: 100%;
}

.advantage-container .advantage-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 31px 41px;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.advantage-container .advantage-block .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.advantage-container .advantage-block .icon * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.advantage-block .title {
  margin-bottom: 10px;
}

.advantage-block .title * {
  font-family: var(--font-secondary);
  font-weight: 500;
  margin-bottom: 0;
}

.advantage-block .disc {
  width: 100%;
  max-width: 232px;
}

.advantage-block .disc * {
  margin: 0;
}



/* ==================== [ Advantage End ] ==================== */

/* ==================== [ Mission Vision Start ] ==================== */

.mission-vision {
  padding: 107px 0 143px;
  background-color: var(--light);
}

.mission-vision .mission-vision-main>*:nth-child(even) .row {
  flex-direction: row-reverse;
}

.mission-vision-main .mission-vision-block:not(:last-child) {
  margin-bottom: 100px;
}

.mission-vision-main .mission-vision-block .row {
  align-items: center;
}

.mission-vision-block .mission-vision-content {
  width: 100%;
  max-width: 504px;
}

.mission-vision .mission-vision-main>*:nth-child(even) .mission-vision-content {
  max-width: 470px;
  margin-left: auto;
}

.mission-vision .mission-vision-main>*:nth-child(even) .mission-vision-content .title * {
  margin-bottom: 0;
}

.mission-vision-content .title * {
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 60px;
}

.mission-vision-block .mission-vision-image {
  width: 100%;
  height: 100%;
}

.mission-vision-block .mission-vision-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================== [ Mission Vision End ] ==================== */

/* ==================== [ Comprehensive Start ] ==================== */

.comprehensive {
  padding: 61px 0 70px;
  background-color: var(--light);
}

.comprehensive .comprehensive-main {
  text-align: center;
}

.comprehensive .comprehensive-main .title * {
  font-size: 42px;
  font-weight: 500;
}

.comprehensive .comprehensive-main .disc {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

/* ==================== [ Comprehensive End ] ==================== */

/* ==================== [ interested Start ] ==================== */

.interested-main {
  position: relative;
}

.interested-img {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}

.interested-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.interested-inner {
  position: relative;
  z-index: 1;
}

.interested-inner {
  padding: 99px 0 70px;
  position: relative;
  z-index: 11;
}

.interested-img::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(22, 37, 66, 0.8);
}

.interested-inner .interested-wrapper {
  width: 100%;
  max-width: 855px;
  margin: 0 auto;
}

.interested-wrapper * {
  color: var(--body);
  text-align: center;
}

.interested-wrapper .btn-secondary {
  width: fit-content;
  margin: 0 auto;
}

.interested-wrapper .btn {
  padding: 10px 47px;
}

.interested-wrapper .title * {
  margin-bottom: 15px;
}

/* ==================== [ interested End ] ==================== */

/* ==================== [ News & Insights Start ] ==================== */

.news-insights-main {
  padding: 100px 0 150px 0;
}

.news-insights-main .title * {
  margin-bottom: 40px;
}

.news-insights-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-insights-img {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.news-insights-img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.news-insights-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 160px;
  max-height: 160px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.news-desc .news-date * {
  color: rgba(33, 36, 39, 0.5);
  margin-bottom: 0;
}

.news-desc .news-title * {
  color: var(--primary);
}

.common-swiper-arrow {
  width: 55px;
  height: 55px;
  border: none;
  background-color: #2b2e34;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding: 14px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.news-insights-inner {
  position: relative;
}

.news-insights-inner .swiper-button-next {
  margin: 0 -82px 0 0px;
}

.news-insights-inner .swiper-button-prev {
  margin: 0 0 0 -80px;
}

.common-swiper-arrow:hover {
  background-color: var(--secondary);
}

.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.news-desc .news-title {
  text-decoration: unset;
}

/* ==================== [ News & Insights End ] ==================== */

/* ==================== [ Partnering Start ] ==================== */

.partnering-main {
  padding: 100px 0;
}

.partnering-title .common-link {
  color: var(--primary);
}

.partnering-title {
  display: flex;
  column-gap: 200px;
}

.partnering-title .title {
  max-width: 400px;
}

.partnering-title .title * {
  margin: 0;
}

.partnering-desc {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.partnering-desc .common-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.partnering-img {
  height: 100%;
  width: 100%;
}

.partnering-wrapper .partnering-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.partnering-wrapper {
  padding-top: 62px;
}

/* ==================== [ Partnering End ] ==================== */

/* ==================== [ Our Values Start ] ==================== */

.our-values-main {
  padding: 100px 0 162px 0;
}

.our-value-discs {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
}

.our-value-disc-item {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid var(--secondary);
}

.our-value-disc-item:first-child {
  border-top: 1px solid var(--secondary);
}

.our-value-disc-item:last-child {
  padding-bottom: 20px;
  border-bottom: 0;
}

.our-value-disc-item span {
  font-size: 20px;
  line-height: 150%;
  color: var(--primary);
  font-weight: 500;
  max-width: 250px;
}

.our-value-disc-item .our-value-desc {
  margin: 0;
  max-width: 315px;
  width: 100%;
}

.our-value-disc-item .our-value-desc * {
  margin: 0;
}

.our-values-image {
  max-width: 600px;
  width: 100%;
}

.our-values-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-values-inner {
  display: flex;
  gap: 75px;
}

/* ==================== [ Our Values End ] ==================== */

/* ==================== [ Quote Start ] ==================== */

.quote-block-main {
  padding: 73px 0 65px 0;
}

.quote-block {
  max-width: 980px;
  margin: 0 auto;
}

.quote-block blockquote {
  background: transparent;
  padding: 0;
  padding-left: 51px;
  margin-bottom: 0;
}

.quote-block blockquote span {
  color: rgba(33, 36, 39, 0.7);
}

/* ==================== [Quote End ] ==================== */

/* ==================== [ Solutions Start ] ==================== */

.solutions-main {
  background: var(--light);
  padding: 65px 0 145px 0;
}

.solutions-title {
  text-align: center;
  max-width: 942px;
  margin: 0 auto 66px auto;
}

.solution-block {
  position: relative;
  min-height: 430px;
  text-decoration: none;
}

.solution-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b142500 0%, #0b1425 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
}

.solution-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.solution-img * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.solution-detail .title {
  text-decoration: none !important;

}

.solution-detail .title * {
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
  color: #fff;
  margin-bottom: 7px;
  text-decoration: none !important;
}

.solution-detail .common-link {
  text-decoration-color: #f3f4f6;
  -moz-text-decoration-color: #f3f4f6;
  color: #f3f4f6;
  text-decoration-thickness: 1px;

}

.solution-detail .common-link:hover,
.solution-block:hover .common-link {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
  -moz-text-decoration-color: var(--secondary);
}

.solution-detail .common-link:hover svg,
.solution-block:hover .common-link svg {
  color: var(--secondary);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);

}

.solution-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: 0 30px 53px 44px;
  z-index: 1;
}

.solution-block .solution-img img {
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
}

.solution-block:hover .solution-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.solution-block:hover .title * {
  color: #cf8a00;
  text-decoration: none !important;
  text-decoration-color: none !important;
  -moz-text-decoration-color: none !important;
}


/* ==================== [ Solutions End ] ==================== */

/* ==================== [ Solutions Details start ] ==================== */

/*coverage */
.coverage-options-main {
  padding: 107px 0 36px 0;
}

.coverage-options-item {
  display: flex;
  align-items: center;
  gap: 31px;
  padding: 30px;
  background: rgba(112, 181, 255, 0.2);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  height: 100%;
}

.coverage-options-icon {
  max-width: 48px;
  width: 100%;
}

.coverage-options-item * {
  margin: 0;
}

.coverage-options-main .text-block .subtitle * {
  margin-bottom: 4px;
  text-transform: uppercase;
  color: var(--navy);
}

.coverage-options-main .text-block .disc * {
  max-width: 500px;
  margin-bottom: 34px;
}

.coverage-options-main .text-block {
  margin-bottom: 43px;
}

.coverage-options-main .text-block ul {
  --col-gap: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: var(--col-gap);
}

.coverage-options-main .text-block ul li {
  flex-basis: calc(50% - var(--col-gap)/2);
}

.coverage-options-main .text-block .width-100 ul li {
  flex-basis: 100%;
}

.coverage-options-main .text-block .width-100 ul {
  gap: 12px;
}

.coverage-options-main .row {
  align-items: center;
}

.coverage-options-main .image-block .image {
  width: 100%;
  height: auto;
  aspect-ratio: 525 / 350;
}

.coverage-options-main.coverage-opetion-wrp .image-block {
  width: 100%;
  max-width: 525px;
  margin-left: auto;
}

.coverage-options-main.coverage-opetion-wrp .image-block .description {
  margin-top: 40px;
}

/*coverage */

/* ==================== [ Solutions Details End ] ==================== */

/* ==================== [ Find an Office start ] ==================== */

.find-an-office-main {
  --main-title-font-size: 42px;
  --main-title-margin-bottom: 24px;
  --main-desc-margin-top: 40px;
  --padding-left: 10px;

  padding-block: 84px 113px;
}

/* .find-an-office-title {
  padding-bottom: 50px;
} */

.find-an-office__main-title .title * {
  font-size: var(--main-title-font-size);
  margin: 0;
}

.find-an-office__main-title { padding-left: var(--padding-left); margin-bottom: var(--main-title-margin-bottom); }
.find-an-office__main-desc { margin-top: var(--main-desc-margin-top); }

.find-an-office__main-desc .desc {
  max-width: 635px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-inline: auto 0;
}

.find-an-office__main-desc .desc a {
  text-underline-offset: 2px;
  text-decoration-color: var(--secondary);
  -moz-text-decoration-color: var(--secondary);
}

.find-an-office__main-desc .desc * {
  margin: 0;
}

.find-an-office-block {
  max-width: 420px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.find-an-office-block .form-group {
  position: relative;
}

.find-an-office-block .form-control {
  padding: 10px 15px 10px 50px;
  border-color: var(--navy);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.find-an-office-block .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

.find-an-office-block .form-control::placeholder {
  color: rgba(33, 36, 39, 0.6);
}

.find-an-office-block .form-group .search-icon {
  position: absolute;
  top: 10px;
  left: 14px;
}


.find-an-office-desc-item {
  padding: 20px 10px 30px 10px;
  border-bottom: 1px solid var(--secondary);
}

.find-an-office-desc-item p {
  color: var(--primary);
  margin: 0;

}

.find-an-office-desc-item .title {
  margin-bottom: 20px;
}

.find-an-office-desc-item .title * {
  font-weight: 500;
}


.find-an-office-desc-item p a {
  text-underline-offset: 1px !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: var(--secondary) !important;
  -moz-text-decoration-color: var(--secondary) !important;
}

.find-an-office-desc-item p a:hover {
  color: var(--secondary) !important;
}

.find-an-office-desc-item a:hover {
  color: var(--navy) !important;
}

.find-an-office-map {
  max-width: 635px;
  margin-left: auto;
  height: 100%;
}

.find-an-office-map #officeMap {
  width: 100%;
  height: 580px;
}

.find-an-office-desc {
  display: flex;
  margin-top: 0;
  flex-direction: column;
  gap: 10px;
}

.map-info-window .info-title {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--secondary);
}

.map-info-window .info-content {
  opacity: 0.8;
}

.map-info-window .info-content * {
  font-weight: 500;
}

.map-info-window * {
  font-family: 'Poppins', sans-serif;
}

/* ==================== [ Find an Office End ] ==================== */

/* ==================== [ Agency Partners start ] ==================== */
.subtitle * {
  font-size: 20px;
  line-height: 150%;
  color: var(--navy);
}

.time-with-clients {
  background: var(--light);
}

.superior-partnership {
  padding: 100px 0 55px 0;
}

.superior-partnership-title .title {
  max-width: 455px;
}

.time-with-clients {
  padding: 89px 0 77px;
}

.time-with-clients-title {
  text-align: center;
  margin-bottom: 53px;
}

.time-with-clients-title .subtitle * {
  margin-bottom: 10px;
}

.time-with-clients-block {
  padding: 40px;
  height: 100%;
  background: var(--body);
  display: flex;
  flex-direction: column;
}

.time-with-clients-block .disc-title * {
  color: var(--navy);
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
}

.superior-advantage-main {
  padding: 55px 0 107px 0;
}

.superior-advantage-title .disc {
  max-width: 600px;
}

.superior-advantage-title {
  margin-bottom: 56px;
}

.superior-advantage-main .solution-block {
  min-height: 330px;
}

.superior-advantage-main .solution-detail {
  padding: 0 30px 34px 34px;
}

.superior-advantage-main .solution-detail * {
  color: var(--light);
}

.superior-advantage-main .solution-detail .desc *:last-child {
  margin: 0;
}

/* ==================== [ Agency Partners End ] ==================== */

/* ==================== [ Growth start ] ==================== */

.growth-main>*:nth-child(even) {
  background: var(--light);
}

.growth-wrapper {
  display: flex;
}

.growth-inner {
  position: relative;
}

.growth-image {
  width: 50%;
  position: absolute;
  left: 0;
  height: 100%;
}

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

.growth-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 40px 0 auto;
  max-width: 452px;
  padding: 71px 0px 71px 0;
}

.growth-points span {
  font-weight: 500;
  color: var(--navy);
}

.growth-points ul li {
  color: var(--primary);
}

.growth-points ul {
  margin-bottom: 26px;
}

.growth-main>*:nth-child(even) .growth-wrapper .growth-image {
  width: 50%;
  position: absolute;
  left: unset;
  height: 100%;
  right: 0;
}

.growth-main>*:nth-child(even) .growth-wrapper .growth-content {
  margin: 0 40px 0 0;
}

/* ==================== [ Growth End ] ==================== */

/* ==================== [ company-built-for-growth Start ] ==================== */

.company-built-for-growth {
  padding-top: 85px;
}

.company-built-for-growth .subtitle {
  position: relative;
  text-align: center;
  background: var(--body);
  margin-bottom: 20px;
}

.company-built-for-growth .subtitle * {
  z-index: 111111;
  width: fit-content;
  margin: 0 auto;
  background: var(--body);
  position: relative;
  padding: 0 45px;
}

.company-built-for-growth .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  left: 0;
  background: var(--secondary);
}

.company-partnerships {
  background: var(--light);
  padding: 28px 15px;
}

.company-partnerships-inner {
  max-width: 985px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}

.company-partnerships-inner>*:first-child {
  padding-left: 0;
}

.company-partnership-block {
  padding: 0 20px;
  border-right: 1px solid var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  max-width: 225px;
  width: 100%;
}

.company-partnerships-inner>*:last-child {
  padding-right: 0;
  border: 0px;
}

.company-partnership-block .title>* {
  margin-bottom: 20px;
}

.company-partnership-block .disc {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}

.company-partnership-block .disc>* {
  margin: 0;
  font-size: 18px;
}

/* ==================== [ company-built-for-growth End ] ==================== */

/* ==================== [ Development Programs Start ] ==================== */
.development-programs {
  padding: 107px 0 122px;
  background-color: var(--light);
}
.development-programs-main .heading {
  text-align: center;
}
.development-programs-main .heading .sub-title * {
  margin-bottom: 12px;
}
.development-programs-main .heading .title * {
  margin-bottom: 24px;
}
.development-programs-main .heading .desc {
  max-width: 700px;
  margin: 0 auto 50px;
}
.development-programs-main .heading .desc * {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 0;
}
.development-programs-card {
  display: block;
  width: 100%;
  max-width: 370px;
}
.development-programs-card .image {
  width: 100%;
  height: 100%;
}
.development-programs-card .image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.development-programs-card .card-detail {
  margin-top: 32px;
}
.development-programs-card .card-detail .title * {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}
.development-programs-card .card-detail .disc * {
  color: var(--primary);
  margin-bottom: 30px;
}
/* ==================== [ Development Programs End ] ==================== */

/* ==================== [ Career Image Start ] ==================== */

.career-image {
  width: 100%;
  height: 100%;
}

.career-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================== [ Career Image End ] ==================== */

/* ==================== [ Our Community Start ] ==================== */

.our-community {
  padding: 77px 0 139px;
}

.our-community-main .heading {
  text-align: center;
}

.our-community-main .heading .sub-title * {
  margin-bottom: 12px;
}

.our-community-main .heading .title * {
  margin-bottom: 45px;
}

.our-community-block {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}

.our-community-card {
  width: 100%;
  max-width: 470px;
}

.our-community-card .image {
  width: 100%;
  height: 280px;
  position: relative;
}

.our-community-card .image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

.our-community-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-community-card .image .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-size: 20px;
  color: var(--white);
  border: 4px solid var(--white);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.our-community-card .image .play-btn:hover {
  border: 4px solid var(--navy);
  background-color: var(--navy);
}

.our-community-card .image .client-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
}

.our-community-card .image .client-detail * {
  color: var(--white);
  margin-bottom: 0;
}

.our-community-card .image .client-detail strong {
  display: block;
  font-weight: 500 !important;
}

.our-community-card .card-detail {
  margin-top: 40px;
}

.our-community-card .card-detail .title * {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 0;
}

.our-community-card .card-detail .disc * {
  color: var(--primary);
  margin-bottom: 0;
}

/* ==================== [ Our Community End ] ==================== */
.typography-wrapper h2,
.typography-wrapper h3,
.typography-wrapper h4,
.typography-wrapper h5,
.typography-wrapper h6 {
  margin: 20px 0;
}

.typography-wrapper h2 {
  font-size: 30px;
  /* margin-top: 20px; */

}

.typography-wrapper h3 {
  font-size: 26px;
}

.typography-wrapper h4 {
  font-size: 24px;
}

.typography-wrapper a {
  text-decoration: underline;
}




/* ================================= [ Industries Page Start ] ================================= */

.title-42 * {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 500;
}

.desc-16 * {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}


/* Industries Card Section */
.industries-card-section {
  padding-block: 65px 128px;
}

.industries-card-section .heading {
  max-width: 942px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 66px;
}


/* Industries Card */
.industries-card {
  display: flex;
  align-items: end;
  position: relative;
  padding: 50px 44px;
  height: auto;
  min-height: 470px;
  width: 100%;
}

.industries-card .card-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.industries-card .card-text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: end;
  height: 100%;
}

.industries-card .title * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 8px;
  white-space: normal;
  color: #FCFCFC;
  margin-bottom: 0;
}

.industries-card .disc * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
  color: #FCFCFC;
  margin-bottom: 0;
}

.industries-card .hover-block {
  padding: 50px 44px;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 4;
  background-color: #0b1425;
  height: 100%;
  max-height: 100%;
  width: 100%;
  overflow-y: auto;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.industries-card:hover .hover-block {
  opacity: 1;
  pointer-events: auto;
}

.industries-card .hover-block-wrapper {
  margin-block: auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card Gradient */
.card-gradient {
  position: relative;
}

.card-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, #0B142500 0%, #0B1425 100%);
  pointer-events: none;
}

/* Our Offerings Section */
.our-offerings .our-offerings-block {
  display: flex;
  gap: 66px;
  align-items: stretch;
  background-color: #eff0ef;
}

.our-offerings .our-offerings-block>* {
  flex-basis: 50%;
}

.our-offerings .our-offerings-block .image-block {
  aspect-ratio: 720 / 638;
  max-height: 844px;
  width: 100%;
  height: auto;
}

.our-offerings .our-offerings-block .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  padding: 70px 20px;
}

.our-offerings .our-offerings-block .text-block .title * {
  max-width: 472px;
}

/* Industries Stats */
.industries-stats {
  padding-block: 60px;
}

.industries-stats .stats-block {
  display: flex;
  row-gap: 30px;
  justify-content: center;
  max-width: 1060px;
  margin-inline: auto;
  width: 100%;
}

.industries-stats .stats-card {
  flex-basis: 20%;
  padding-inline: 30px;
  border-left: 1px solid #e5c37e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.industries-stats .stats-card:first-child {
  border-left: unset;
}

.industries-stats .stats-card .title * {
  font-family: 'Playfair Display', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 0;
  white-space: normal;
  color: #162542;
}

.industries-stats .stats-card .disc * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 0;
  white-space: normal;
  color: #162542;
}

/* ================================= [ Industries Page End ] ================================= */

/* ================================= [ Get In Touch Page Start ] ================================= */
.is-hidden {
  display: none !important;
}

.get-in-touch {
  padding-block: 108px 132px;
}

.get-in-touch .heading {
  max-width: 363px;
}

.get-in-touch .heading .disc-16 {
  color: #212427;
}

.get-in-touch .heading .disc-16 p strong {
  font-weight: 600 !important;
}

.get-in-touch .form-block {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.get-in-touch .input-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.get-in-touch .btn {
  width: 100%;
}

.form-w-254 {
  max-width: 254px;
}

.submit-block {
  margin-top: 20px;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.form-control:focus {
  border: 1px solid var(--secondary);
  box-shadow: unset;
}

.form-select {
  position: relative;
  background: unset;
}

.select-block {
  position: relative;
}

.select-block::after {
  content: "";
  right: 10px;
  top: 50%;
  z-index: 2;
  position: absolute;
  background: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.03328 5.85155e-07L0.000780921 1.0325L5.77578 6.8075L11.5508 1.0325L10.5183 5.74445e-08L5.77578 4.7425L1.03328 5.85155e-07V5.85155e-07Z" fill="%23212427"/></svg>') no-repeat;
  background-size: 100%;
  height: 6px;
  width: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-position: center;
}

/* ================================= [ Get In Touch Page End ] ================================= */

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  padding: 10px 0 !important;
  border: unset !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  color: green;
}

.wpcf7-form.failed .wpcf7-response-output {
  color: red;
}

.wpcf7-form.invalid .wpcf7-response-output {
  color: red;
}

/* Contact Page Footer Changes  */
.interested-main.contact-footer-top {
  display: none !important;
}

.footer.contact-footer {
  padding-top: 0 !important;
}

.footer.contact-footer .footer-top {
  padding-bottom: 30px !important;
}

.footer.contact-footer .footer-top-left,
.footer.contact-footer .footer-btn {
  display: none !important;
}



/* ================================= [ Teams Section Start ] ================================= */
.teams-section {
  padding-block: 92px 246px;
  position: relative;
}
.teams-section .teams-section-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.teams-section .team-card {
  width: 100%;
  max-width: 270px;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(208, 138, 24, 0.35);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 37, 66, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.teams-section .team-card .team-card-title * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 16px;
  color: #162542;
  margin-bottom: 0;
}
.teams-section .team-card .team-card-disc * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 0;
  color: #162542;
}
.teams-section .team-card .text-block {
  padding: 20px;
}
.teams-section .team-card .image-block {
  height: auto;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f4f5f7 0%, #e7e9ec 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.teams-section .team-card .image-block img {
  width: 88%;
  height: auto;
  object-fit: contain;
}
.teams-section .team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 138, 24, 0.85);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(22, 37, 66, 0.14);
}
.team-select-block {
  max-width: 280px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.team-select-block .form-select {
  border-color: #00000000;
  padding: 7px 40px 7px 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  color: #003F79;
  background: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1.645 0L7 5.56275L12.355 0L14 1.71255L7 9L0 1.71255L1.645 0Z" fill="%23003F79"/> </svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-color: #FFFFFF;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.team-select-block .form-select:focus-visible {
  box-shadow: unset;
  border-color: #003F79;
}
/* ================================= [ Teams Section End ] ================================= */

/* ================================= [ Custom Modal Start ] ================================= */
.custom-modal {
  --modal-fs-title: 18px;
  --modal-fs-disc: 16px;
  --modal-fs-link: 22px;

  background-color: #FCFCFC;
}

.custom-modal .modal-header,
.custom-modal .modal-body,
.custom-modal .modal-footer {
  padding: 0;
}

.custom-modal .modal-content {
  background-color: #fcfcfc;
  max-width: 1780px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 50px;
}

.custom-modal .modal-header {
  margin-bottom: 100px;
  border-bottom: unset;
}

.custom-modal .back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: unset;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 0;
  white-space: normal;
  color: #162542;
  text-decoration: unset;
}

.custom-modal .back-btn:hover {
  color: #cf8a00;
}

.custom-modal .back-btn svg path {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.custom-modal .back-btn:hover svg path {
  fill: #cf8a00;
}

.custom-modal .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162542'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  opacity: 1;
  background-size: 100%;
  height: 32px;
  width: 32px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  padding: 0;
}

.custom-modal .btn-close:hover {
  opacity: .7;
}

.custom-modal .m-content-block {
  display: flex;
  gap: 50px;
  align-items: start;
  justify-content: space-between;
  max-width: 980px;
  margin-inline: auto;
}

.custom-modal .m-content-left {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}

.custom-modal .m-content-right {
  max-width: 570px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}

.custom-modal .social-link-block .social-link {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: var(--modal-fs-link);
  line-height: 28px;
  color: #162542;
  text-decoration: unset;
  width: fit-content;
  display: flex;
}

.custom-modal .social-link-block .social-link::after {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  background-color: #cf8a00;
  height: 2px;
  width: 100%;
}

.custom-modal .position-block {
  border-left: 3px solid #cf8a00;
  padding-left: 20px;
}

.custom-modal .title-large * {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: calc(2 * var(--modal-fs-title));
  line-height: 130%;
  margin-bottom: 10px;
  color: #162542;
}

.custom-modal .title * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: var(--modal-fs-title);
  line-height: 150%;
  color: #162542;
  margin-bottom: 0;
}

.custom-modal .disc * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: var(--modal-fs-disc);
  line-height: 150%;
  color: #162542;
  margin-bottom: 0;
}

.custom-modal .disc-large * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: var(--modal-fs-title);
  line-height: 150%;
  color: #162542;
  margin-bottom: 0;
}

.custom-modal .details-block * {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: var(--modal-fs-disc);
  line-height: 150%;
  margin-bottom: 0;
  white-space: normal;
  color: #212427;
  margin-bottom: 20px;
}

.custom-modal .details-block *:last-child {
  margin-bottom: 0;
}

.custom-modal .profile-image {
  aspect-ratio: 1 / 1;
  height: auto;
  max-width: 270px;
}

.custom-modal .typo-block h3 {
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 700;
  font-size: var(--modal-fs-title);
  line-height: 28px;
  color: #4C88B5;
}

.custom-modal .typo-block a,
.custom-modal .typo-block p span {
  display: block;
}

.custom-modal .typo-block p a+br {
  display: none;
}

.custom-modal .typo-block a {
  text-decoration: unset;
}

.custom-modal .typo-block ul {
  margin-block: 0;
}

.custom-modal .typo-block p:last-child {
  margin-bottom: 0;
}

/* ================================= [ Custom Modal End ] ================================= */


/* ================================= [ Become A Partner Start ] ================================= */

.get-in-touch .form-wrapper .form-tab {
  margin-top: 40px;
}

.get-in-touch .form-wrapper .form-radio-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  row-gap: 20px;
}

.get-in-touch .form-wrapper input[type="radio"] {
  appearance: none;
  outline: 1px solid var(--black);
  border: 2px solid transparent;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.get-in-touch .form-wrapper input[type="radio"]:checked {
  border: 2px solid var(--white);
  background: var(--black);
}

.get-in-touch .form-wrapper .form-check-input {
  background-color: transparent;
  border: none;
}

.get-in-touch .form-wrapper .radio-click-input label {
  margin-bottom: 8px;
}

.form-check-input:focus {
  box-shadow: none;
}

.get-in-touch .form-wrapper .tab-content {
  margin-top: 40px;
}

.get-in-touch .form-wrapper  .tab-content .row {
  align-items: flex-end;
} 

/* ================================= [ Become A Partner End ] ================================= */

#app { width: 100%; }

#mapsvg { width: 100%; margin: 0 auto; }

#tooltip { position: fixed; display: none; background: #1a2744; color: #fff; padding: 9px 14px; border-radius: 8px; font-size: 13px; pointer-events: none; z-index: 999; max-width: 200px; font-family: inherit; }

@media (max-width: 991px) { #tooltip { position: absolute; } }

@keyframes pulse {
  0%   { r: 7; opacity: 1; }
  50%  { r: 9; opacity: 0.85; }
  100% { r: 7; opacity: 1; }
}

.dot-pulse { animation: pulse 2s ease-in-out infinite; }

#tooltip .tooltip__title { font-weight:600; font-size:13px; margin-bottom:2px; line-height: 1.5; }
#tooltip .tooltip__location { font-size:11px; opacity:0.7; margin-bottom:4px; line-height: 1.5; }

#tooltip .item__list { display:flex; align-items:center; gap:6px; margin-top:4px;}
#tooltip .item__dot { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.6); flex-shrink:0; display:inline-block; -webkit-border-radius:50%; -moz-border-radius:50%; -ms-border-radius:50%; -o-border-radius:50%; }
#tooltip .item__text { font-size:11px; opacity:0.9; line-height: 1.5; }

.featured-offices__title { --font-size: 18px; padding-left: var(--padding-left); }
.featured-offices__title * { font-family: inherit; font-weight: 500; text-transform: uppercase; color: #4C88B5; font-size: var(--font-size); line-height: 1.5; margin-bottom: 0; }

.find-an-office-desc-item {
    cursor: pointer;
}

.find-an-office-desc-item.active {
    background: #EFF0EF;
}

.find-an-office-desc-item:hover {
    background: #EFF0EF;
}

/* ============================================================
   HERO BANNER — New Design
   ============================================================ */

/* ── Hero background video ── */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #162542;
}

/* Particle canvas */
.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: all;
}

/* Vignette */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center,
        transparent 40%,
        rgba(13, 34, 64, 0.65) 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(13, 34, 64, 0.55);
    background-image:
        radial-gradient(circle, rgba(74, 144, 196, 0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(211, 136, 36, 0.06) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    animation: heroDrift 20s linear infinite;
    pointer-events: none;
}

@keyframes heroDrift {
    0%   { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 60px 60px; }
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

/* Content wrapper */
.hero-content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 120px 40px 60px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-title h1 {
    font-size: clamp(32px, 5.5vw, 69px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0;
}

.hero-title h1 span {
    color: #d38824;
    font-style: italic;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(211, 136, 36, 0.45);
    margin: 0 auto 24px;
}

.hero-statement {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto 36px;
    font-family: var(--font-secondary);
}

.hero-cta-wrap {
    display: flex;
    justify-content: center;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d38824;
    color: #0d2240;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta-btn:hover {
    background: #b8741e;
    color: #0d2240;
    transform: translateY(-2px);
}

.hero-cta-btn i {
    transition: transform 0.2s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── Path cards ── */
.hero-path-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px 60px;
}

.hero-path-content {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-path-label {
    padding: 10px 20px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
    border-radius: 4px 4px 0 0;
    grid-row: 1;
}

.hero-path-label-service {
    grid-column: 1 / span 3;
    background-color: #D08A18;
}

.hero-path-label-opportunity {
    grid-column: 4 / span 1;
    background-color: #70B5FF;
    color: #162542;
}

/* Explicit placement puts all 4 cards in row 2 of the SAME grid, so they stretch to equal height together */
.hero-path-content > .hero-path-card:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
}

.hero-path-content > .hero-path-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
}

.hero-path-content > .hero-path-card:nth-of-type(3) {
    grid-column: 3;
    grid-row: 2;
}

.hero-path-card-highlight {
    grid-column: 4;
    grid-row: 2;
}
.hero-path-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.hero-path-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(208, 138, 24, 0.4);
    border-radius: 4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(22, 37, 66, 0.2);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.hero-path-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
@media (hover: hover) {
    .hero-path-card:hover .hero-path-inner {
        border-color: rgba(208, 138, 24, 0.85);
        background: rgba(255, 255, 255, 0.16);
        transform: translateY(-3px);
    }
    .hero-path-card:hover .hero-path-arrow {
        transform: translateX(5px);
        color: #D08A18;
    }
}
.hero-path-icon {
    color: #D08A18;
    flex-shrink: 0;
    font-size: 26px;
    line-height: 1;
}
.hero-path-body { flex: 1; }
.hero-path-eyebrow {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D08A18;
    margin-bottom: 6px;
    font-family: var(--font-secondary);
}
.hero-path-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
}
.hero-path-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-family: var(--font-secondary);
}
.hero-path-arrow {
    color: rgba(255, 255, 255, 0.45);
    align-self: flex-end;
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

/* ── Highlight card (agency/acquisition path) — same style as other cards, blue accent instead of gold ── */
.hero-path-card-highlight .hero-path-inner {
    border-color: rgba(112, 181, 255, 0.4);
}

.hero-path-card-highlight .hero-path-icon {
    color: #70B5FF;
}

.hero-path-card-highlight .hero-path-eyebrow {
    color: #70B5FF;
}

@media (hover: hover) {
    .hero-path-card-highlight:hover .hero-path-inner {
        border-color: rgba(112, 181, 255, 0.85);
        background: rgba(255, 255, 255, 0.16);
        transform: translateY(-3px);
    }
    .hero-path-card-highlight:hover .hero-path-arrow {
        transform: translateX(5px);
        color: #70B5FF;
    }
}

/* ── Tablet/mobile — reset explicit placement, natural source order stacks correctly ── */
@media (max-width: 991px) {
    .hero-path-content {
        grid-template-columns: 1fr;
    }
    .hero-path-label-service,
    .hero-path-label-opportunity,
    .hero-path-content > .hero-path-card:nth-of-type(1),
    .hero-path-content > .hero-path-card:nth-of-type(2),
    .hero-path-content > .hero-path-card:nth-of-type(3),
    .hero-path-card-highlight {
        grid-column: auto;
        grid-row: auto;
    }
}
/* ============================================================
   SUPERIOR ADVANTAGE SECTION — Redesign
   ============================================================ */

.adv2-section {
    background: #ffffff;
    padding: 100px 60px;
}

.adv2-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* ── Left column ── */
.adv2-left {
    position: sticky;
    top: 100px;
}

.adv2-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D08A18;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.adv2-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #D08A18;
    flex-shrink: 0;
}

.adv2-title {
    margin-bottom: 32px;
}

.adv2-title h2,
.adv2-title * {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 400;
    color: #162542;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.adv2-title span {
    color: #162542;
    font-style: normal;
}

.adv2-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #162542;
    text-decoration: none;
    border-bottom: 2px solid #D08A18;
    padding-bottom: 3px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.adv2-link:hover {
    gap: 16px;
    color: #162542;
}

.adv2-link i {
    color: #D08A18;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.adv2-link:hover i {
    transform: translateX(4px);
}

/* ── Right column ── */
.adv2-right {
    border-left: 1px solid #e5e7eb;
    padding-left: 64px;
}

.adv2-feature {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 24px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid #f0f1f3;
}

.adv2-feature:first-child {
    padding-top: 0;
}

.adv2-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Icon */
.adv2-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    flex-shrink: 0;
}

.adv2-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Feature text */
.adv2-feature-body {}

.adv2-feature-title {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #162542;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.adv2-feature-desc,
.adv2-feature-desc * {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 0;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .adv2-section {
        padding: 80px 40px;
    }

    .adv2-inner {
        gap: 60px;
    }

    .adv2-title h2,
    .adv2-title * {
        font-size: 36px;
    }

    .adv2-right {
        padding-left: 40px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .adv2-section {
        padding: 60px 24px;
    }

    .adv2-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .adv2-left {
        position: static;
    }

    .adv2-title h2,
    .adv2-title * {
        font-size: 32px;
    }

    .adv2-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 48px;
    }

    .adv2-feature {
        gap: 16px;
    }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
    .adv2-section {
        padding: 48px 20px;
    }

    .adv2-feature {
        grid-template-columns: 44px 1fr;
    }

    .adv2-icon-wrap {
        width: 44px;
        height: 44px;
    }
}
/* ============================================================
   PARTNERSHIP SECTION — 2-Column Redesign
   ============================================================ */

.partner2-section {
    background: #122641;
    position: relative;
    overflow: hidden;
    padding: 120px 80px;
}

.partner2-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.partner2-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74,144,196,0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Two column layout ── */
.partner2-inner {
    position: relative;
    z-index: 2;
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* ── Left column ── */
.partner2-left {}

.partner2-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d38824;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.partner2-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #d38824;
    flex-shrink: 0;
}

.partner2-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.partner2-desc,
.partner2-desc * {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
    font-family: var(--font-secondary);
}

.partner2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d38824;
    color: #122641;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 2px;
    margin-top: 40px;
    transition: background 0.2s ease;
    font-family: var(--font-secondary);
}

.partner2-btn:hover {
    background: #b8741e;
    color: #122641;
}

.partner2-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.partner2-btn:hover i {
    transform: translateX(4px);
}

/* ── Right column — stats grid ── */
.partner2-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.partner2-stat-cell {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.partner2-stat-cell:nth-child(2),
.partner2-stat-cell:nth-child(4) {
    border-right: none;
}

.partner2-stat-cell:nth-child(3),
.partner2-stat-cell:nth-child(4) {
    border-bottom: none;
}

.partner2-stat-number {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.partner2-top100 {
    font-size: 36px;
}

.partner2-stat-number .gold,
.partner2-stat-number span {
    color: #d38824;
}

.partner2-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-secondary);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .partner2-section {
        padding: 80px 40px;
    }

    .partner2-inner {
        gap: 60px;
    }

    .partner2-stat-cell {
        padding: 36px 28px;
    }

    .partner2-stat-number {
        font-size: 40px;
    }

    .partner2-top100 {
        font-size: 28px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .partner2-section {
        padding: 60px 24px;
    }

    .partner2-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .partner2-stat-cell {
        padding: 28px 24px;
    }

    .partner2-stat-number {
        font-size: 36px;
    }

    .partner2-top100 {
        font-size: 26px;
    }
}

/* ── Small mobile ── */
@media (max-width: 400px) {
    .partner2-section {
        padding: 48px 20px;
    }

    .partner2-stat-cell {
        padding: 24px 20px;
    }

    .partner2-stat-number {
        font-size: 30px;
    }
}

/* ============================================================
   SOLUTION PAGES — Banner, Value Strip, Coverage Options
   ============================================================ */

/* ── Banner ── */
.sol-banner {
    position: relative;
    height: 520px;
    background: #0d2240;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

#sol-dot-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.sol-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(0deg, rgba(13,34,64,1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.sol-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 64px;
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
}

.sol-banner-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d38824;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.sol-banner-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #d38824;
    flex-shrink: 0;
}

.sol-banner-title h1,
.sol-banner-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.sol-banner-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    font-family: var(--font-secondary);
}

.sol-banner-btn-wrap {
    margin-top: 32px;
}

.sol-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d38824;
    color: #0d2240;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.2s ease;
    font-family: var(--font-secondary);
}

.sol-banner-btn:hover { background: #b8741e; color: #0d2240; }

/* ── Value Strip ── */
.sol-value {
    background: #0d2240;
    padding: 0 80px;
}

.sol-value-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sol-value-item {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sol-value-item:last-child { border-right: none; }

.sol-value-icon { color: #d38824; margin-bottom: 4px; }

.sol-value-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.sol-value-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-secondary);
}

/* ── Coverage Options ── */
.sol-content {
    background: #fff;
    padding: 100px 80px;
}

.sol-content-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left column */
.sol-coverage-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d38824;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.sol-coverage-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #d38824;
    flex-shrink: 0;
}

.sol-coverage-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: #0d2240;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.sol-coverage-desc,
.sol-coverage-desc * {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0;
    font-family: var(--font-secondary);
}

/* Hide the original list in description — pills are extracted to right column */
.sol-coverage-desc ul { display: none; }

/* Contact card */
.sol-contact-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #d38824;
    border-radius: 4px;
    padding: 24px 28px;
    margin-top: 36px;
}

.sol-contact-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}

.sol-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d2240;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 2px;
    transition: background 0.2s ease;
    font-family: var(--font-secondary);
}

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

/* Right column — coverage pills */
.sol-coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
}

.sol-coverage-list li {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    border-left: 3px solid #d38824;
    font-family: var(--font-secondary);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .sol-banner-content { padding: 0 40px 48px; }
    .sol-value { padding: 0 40px; }
    .sol-value-item { padding: 36px 28px; }
    .sol-content { padding: 80px 40px; }
    .sol-content-inner { gap: 48px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .sol-banner { height: auto; min-height: 400px; }
    .sol-banner-content { padding: 0 24px 48px; }

    .sol-value { padding: 0 24px; }
    .sol-value-inner { grid-template-columns: 1fr; }
    .sol-value-item {
        padding: 28px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .sol-value-item:last-child { border-bottom: none; }

    .sol-content { padding: 60px 24px; }
    .sol-content-inner { grid-template-columns: 1fr; }

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

/* ── Small mobile ── */
@media (max-width: 480px) {
    .sol-content { padding: 48px 20px; }
    .sol-value { padding: 0 20px; }
}
/* ============================================================
   FOOTER CTA SECTION — Replaces interested-main
   ============================================================ */

.footer-cta {
    position: relative;
    background: #162542;
    padding: 100px 80px;
    text-align: center;
    overflow: hidden;
}

#footer-cta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.footer-cta-desc,
.footer-cta-desc p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    font-family: var(--font-secondary);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D08A18;
    color: #162542;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    margin-top: 36px;
    transition: background 0.2s ease;
    font-family: var(--font-secondary);
}

.footer-cta-btn:hover {
    background: #B8790F;
    color: #162542;
}

.footer-cta-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .footer-cta {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        padding: 48px 20px;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   AGENCY PARTNERS PAGE STYLES
   ============================================================ */

/* ── Banner ── */
.ap-banner {
    position: relative;
    min-height: 620px;
    background: #0d2240;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

#ap-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.ap-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(13,34,64,0.4) 0%, rgba(13,34,64,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.ap-banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.ap-banner-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d38824;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.ap-banner-eyebrow::before,
.ap-banner-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: #d38824;
    flex-shrink: 0;
}

.ap-banner-title,
.ap-banner-title h1 {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.ap-banner-title h1 span,
.ap-banner-title span {
    color: #d38824;
    font-style: italic;
}

.ap-banner-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 40px;
    font-family: var(--font-secondary);
}

.ap-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d38824;
    color: #0d2240;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background 0.2s ease;
    font-family: var(--font-secondary);
}

.ap-banner-btn:hover { background: #b8741e; color: #0d2240; }

.ap-banner-btn i { font-size: 14px; }

/* ── Shared eyebrow ── */
.ap-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d38824;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
}

.ap-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: #d38824;
    flex-shrink: 0;
}

/* ── 3 Pillars ── */
.ap-pillars {
    background: #fff;
    padding: 80px;
    border-bottom: 1px solid #e5e7eb;
}

.ap-pillars-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.ap-pillar {
    background: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ap-pillar-icon { color: #d38824; }
.ap-pillar-icon svg { width: 32px; height: 32px; }

.ap-pillar-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: #0d2240;
    line-height: 1.2;
    margin: 0;
}

.ap-pillar-desc,
.ap-pillar-desc * {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    font-family: var(--font-secondary);
    margin: 0;
}

/* ── Partnership Model ── */
.ap-partnership {
    background: #f9fafb;
    padding: 100px 80px;
}

.ap-partnership-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ap-partnership-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #0d2240;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0;
}

.ap-partnership-right p,
.ap-partnership-right * {
    font-size: 15px;
    line-height: 1.85;
    color: #6b7280;
    font-family: var(--font-secondary);
    margin-bottom: 16px;
}

.ap-partnership-right *:last-child { margin-bottom: 0; }

/* ── Capabilities ── */
.ap-capabilities {
    background: #fff;
    padding: 100px 80px;
}

.ap-capabilities-header {
    max-width: 1170px;
    margin: 0 auto 52px;
}

.ap-capabilities-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: #0d2240;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
}

.ap-capabilities-grid {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ap-capability-card {
    border: 1px solid #e5e7eb;
    border-left: 4px solid #d38824;
    border-radius: 4px;
    padding: 32px 36px;
    background: #fff;
}

.ap-capability-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d2240;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-family: var(--font-secondary);
}

.ap-capability-detail ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.ap-capability-detail ul li {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
    font-family: var(--font-secondary);
}

.ap-capability-detail ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #d38824;
    border-radius: 50%;
}

/* ── Legacy & Succession ── */
.ap-legacy {
    background: #f9fafb;
    padding: 100px 80px;
}

.ap-legacy-inner {
    max-width: 1170px;
    margin: 0 auto;
}

.ap-legacy-header { margin-bottom: 52px; }

.ap-legacy-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: #0d2240;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
}

.ap-legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ap-legacy-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #d38824;
    border-radius: 4px;
    padding: 36px 32px;
}

.ap-legacy-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: #0d2240;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ap-legacy-detail ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.ap-legacy-detail ul li {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
    font-family: var(--font-secondary);
}

.ap-legacy-detail ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #d38824;
    border-radius: 50%;
}

/* ── Testimonial ── */
.ap-testimonial {
    background: #fff;
    padding: 100px 80px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.ap-testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ap-testimonial-line {
    width: 48px;
    height: 4px;
    background: #d38824;
    margin: 0 auto 36px;
}

.ap-testimonial blockquote {
    font-family: var(--font-primary);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 400;
    font-style: italic;
    color: #0d2240;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ap-testimonial cite {
    font-size: 13px;
    color: #d38824;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ap-pillars { padding: 60px 40px; }
    .ap-partnership { padding: 80px 40px; }
    .ap-capabilities { padding: 80px 40px; }
    .ap-legacy { padding: 80px 40px; }
    .ap-testimonial { padding: 80px 40px; }
    .ap-partnership-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .ap-banner { min-height: 500px; }
    .ap-banner-content { padding: 60px 24px; }

    .ap-pillars { padding: 48px 24px; }
    .ap-pillars-inner { grid-template-columns: 1fr; }
    .ap-pillar { padding: 32px 28px; }

    .ap-partnership { padding: 60px 24px; }
    .ap-partnership-inner { grid-template-columns: 1fr; gap: 32px; }

    .ap-capabilities { padding: 60px 24px; }
    .ap-capabilities-grid { grid-template-columns: 1fr; }

    .ap-legacy { padding: 60px 24px; }
    .ap-legacy-grid { grid-template-columns: 1fr; }

    .ap-testimonial { padding: 60px 24px; }
}

@media (max-width: 480px) {
    .ap-banner-content { padding: 48px 20px; }
    .ap-pillars { padding: 40px 16px; }
    .ap-partnership { padding: 48px 20px; }
    .ap-capabilities { padding: 48px 20px; }
    .ap-legacy { padding: 48px 20px; }
    .ap-testimonial { padding: 48px 20px; }
}

/* ============================================================
   FIND AN OFFICE — Counter Strip
   ============================================================ */

/* ── Counter strip title: eyebrow with flanking lines ── */
.fao-counter-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.fao-counter-title p {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #162542;
    margin: 0;
    white-space: nowrap;
}

.fao-counter-line {
    flex: 1;
    height: 1px;
    background: #D08A18;
    max-width: 480px;
}

@media (max-width: 991px) {
    .fao-counter-title p {
        font-size: 12px;
    }
    .fao-counter-line {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .fao-counter-title {
        gap: 12px;
    }
    .fao-counter-line {
        max-width: 32px;
    }
}

.fao-counter-strip {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 48px 80px;
}

.fao-counter-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.fao-counter-item {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.fao-counter-item h3 {
    font-family: "georgia", serif;
    font-size: 48px;
    font-weight: 400;
    color: #0d2240;
    line-height: 1;
    margin-bottom: 10px;
}

.fao-counter-item p {
    font-family: "aptos", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0;
}

.fao-counter-divider {
    width: 1px;
    height: 56px;
    background: #d38824;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .fao-counter-strip {
        padding: 40px 24px;
    }

    .fao-counter-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .fao-counter-divider {
        display: none;
    }

    .fao-counter-item {
        padding: 0;
    }

    .fao-counter-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .fao-counter-inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ANIMATED COUNTERS — hide until animation starts
   Prevents a flash of the static fallback value before JS counts up
   ============================================================ */

.partner2-stat-number[data-target],
.ws-counter[data-target] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner2-stat-number.is-counting,
.ws-counter.is-counting {
    opacity: 1;
}

/* ============================================================
   ABOUT US — Hero
   ============================================================ */

.about-hero {
    position: relative;
    background-color: #162542;
    padding: 140px 40px 100px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(112, 181, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.about-hero-content-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title,
.about-hero-title * {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.about-hero-title em,
.about-hero-title i {
    color: #D08A18;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 24px 70px;
    }
    .about-hero-title,
    .about-hero-title * {
        font-size: 32px;
    }
}

/* ============================================================
   ABOUT US — Content blocks (2x2 grid)
   ============================================================ */

.about-content {
    background-color: #ffffff;
    padding: 90px 40px;
}

.about-content-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 64px;
}

.about-content-block {
    border-top: 3px solid #D08A18;
    padding-top: 24px;
}

.about-content-number {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #D08A18;
    margin-bottom: 12px;
}

.about-content-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    color: #162542;
    margin-bottom: 14px;
    line-height: 1.25;
}

.about-content-text,
.about-content-text * {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: #414449;
}

/* Bolded phrases (added by editors in the WYSIWYG) become the visual scan-anchors */
.about-content-text strong,
.about-content-text b {
    color: #162542;
    font-weight: 700;
}

.about-content-text a {
    color: #D08A18;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-content-text a:hover {
    color: #162542;
}

@media (max-width: 860px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 56px 24px;
    }
    .about-content-title {
        font-size: 22px;
    }
}

/* ============================================================
   ABOUT US — Why Clients Choose Us
   ============================================================ */

.about-why-us {
    position: relative;
    background-color: #ffffff;
    padding: 100px 40px;
    overflow: hidden;
    background-image: radial-gradient(rgba(22, 37, 66, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
}

.about-why-us-title {
    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 400;
    color: #162542;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    line-height: 1.25;
    position: relative;
}

.about-why-us-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.about-why-us-card {
    width: 320px;
    padding: 36px 28px;
    background: #f4f5f7;
    border: 1px solid rgba(208, 138, 24, 0.25);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(22, 37, 66, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-why-us-card:hover {
    transform: translateY(-6px);
    border-color: rgba(208, 138, 24, 0.8);
    box-shadow: 0 14px 32px rgba(22, 37, 66, 0.12);
}

.about-why-us-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D08A18;
    color: #162542;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.about-why-us-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: #162542;
    font-weight: 500;
}

@media (max-width: 700px) {
    .about-why-us-card {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .about-why-us {
        padding: 64px 24px;
    }
    .about-why-us-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

/* ============================================================
   ABOUT US — Closing statement
   ============================================================ */

.about-closing {
    background-color: #ffffff;
    padding: 90px 40px;
}

.about-closing-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-closing-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    color: #162542;
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-closing-text,
.about-closing-text * {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.75;
    color: #414449;
}

.about-closing-cta-wrap {
    margin-top: 32px;
}

.about-closing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #D08A18;
    color: #162542;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.about-closing-btn:hover {
    background-color: #B8790F;
    color: #162542;
    transform: translateY(-2px);
}

.about-closing-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.about-closing-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .about-closing {
        padding: 64px 24px;
    }
    .about-closing-title {
        font-size: 26px;
    }
}

/* ============================================================
   ABOUT US — Content timeline (alternating icon/text with scroll-draw line)
   ============================================================ */

.about-content-timeline {
    position: relative;
    background-color: #ffffff;
    padding: 100px 40px;
    overflow: hidden;
}

.about-content-track {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

/* Dashed base line + solid fill that grows with scroll */
.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(to bottom, #d7dce3 0 6px, transparent 6px 16px);
}

.about-timeline-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #D08A18, #162542);
}

.about-timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 60px 0;
}

.about-timeline-item-reverse {
    flex-direction: row-reverse;
}

.about-timeline-icon-col,
.about-timeline-text-col {
    flex: 1;
    min-width: 0;
}

.about-timeline-icon-col {
    display: flex;
    justify-content: center;
}

/* Double-ring icon circle */
.about-timeline-icon-ring {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: 1px solid rgba(208, 138, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.about-timeline-icon-circle {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #162542;
    border: 4px solid #D08A18;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
}

/* Center dot marking each node on the line */
.about-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #D08A18;
    z-index: 2;
}

.about-timeline-text-col {
    text-align: left;
}

.about-timeline-item-reverse .about-timeline-text-col {
    text-align: right;
}

.about-timeline-number {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #D08A18;
    margin-bottom: 10px;
}

.about-timeline-title {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 400;
    color: #162542;
    margin-bottom: 14px;
    line-height: 1.25;
}

.about-timeline-text,
.about-timeline-text * {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: #414449;
}

.about-timeline-text strong,
.about-timeline-text b {
    color: #162542;
    font-weight: 700;
}

.about-timeline-text a {
    color: #D08A18;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Tablet ── */
@media (max-width: 900px) {
    .about-timeline-item,
    .about-timeline-item-reverse {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .about-timeline-text-col,
    .about-timeline-item-reverse .about-timeline-text-col {
        text-align: center;
    }

    .about-timeline-line {
        display: none;
    }

    .about-timeline-dot {
        display: none;
    }

    .about-timeline-icon-ring {
        width: 120px;
        height: 120px;
    }

    .about-timeline-icon-circle {
        width: 88px;
        height: 88px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-content-timeline {
        padding: 56px 24px;
    }

    .about-timeline-item {
        padding: 36px 0;
    }

    .about-timeline-title {
        font-size: 22px;
    }
}

/* ============================================================
   Team Section
   ============================================================ */

.team-section-gap {
    flex-basis: 100%;
    width: 100%;
    height: 90px; /* adjust to control gap size */
}

.team-group-title {
    flex-basis: 100%;
    width: 100%;
    font-family: var(--font-primary);
    font-size: 24px;
    color: #162542;
    margin-bottom: 20px;
}

.team-group-title-additional {
    margin-top: 0; /* sits right after the gap spacer, so no extra top margin needed */
}