:root {
  --blue: #071b33;
  --blue-2: #10223e;
  --slate: #5f6874;
  --gold: #c39035;
  --gold-soft: #e8ddc8;
  --paper: #f8f8f8;
  --paper-2: #efebe3;
  --white: #ffffff;
  --ink: #101820;
  --muted: #68717c;
  --line: rgba(7, 27, 51, 0.12);
  --line-soft: rgba(7, 27, 51, 0.08);
  --shadow-soft: 0 18px 50px rgba(7, 27, 51, 0.07);
  --max: 1180px;
}

.impact-section, .connect-section{
  background-color: var(--paper);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  background-size: auto, 84px 84px, 84px 84px, auto;
   font-family: "Jost";
  line-height: 1.68;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
    z-index: 50;
    background: var(--blue);
    backdrop-filter: blur(18px);
    box-shadow: 0 0 10px #dddddda6;
    float: left;
    width: 100%;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}

.brand img {
  max-width: 100px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  width: 100%;
}


.nav-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}



.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  box-shadow: var(--gold-soft);
  border-color: var(--gold);
}

.nav-cta{
  border-color: var(--gold);
  color: var(--gold);
  border-radius: 50px;
}
.nav-cta:hover{
  background-color: var(--paper);
  color: var(--blue);
}

.section-space {
  padding: 90px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--blue);
  line-height: 1.04;
  letter-spacing: -0.03em;
}



h1 {
  max-width: 760px;
  font-size: clamp(35px, 6vw, 56px);
}

h2 {
  font-size: clamp(34px, 4vw, 40px);
}

h3 {
  font-size: 21px;
}

p {
  color: var(--muted);
}

h1 span{
  color: var(--gold);
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 75px 0 96px;
  /* background-image: url(../image/background.png); */
  background-size: 70%;
    background-repeat: no-repeat;
    background-position: right 0px;
    background-color: #f6f2f0;
    background-attachment: fixed;
    float: left;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.99fr;
  align-items: start;
  gap: 50px;
}

.hero-copy p {
  max-width: 700px;
  margin-top: 20px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
}

.quiet-link i {
  color: var(--gold);
  transition: transform 0.25s ease;
}

.quiet-link:hover i {
  transform: translateX(5px);
}



.pillar {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: rgba(248, 247, 244, 0.9);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}



.action-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
   margin-bottom: 72px;
}

.action-triad article {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.38);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    text-align: left;
        border-radius: 4px;
        margin-top: 80px;

}

.action-triad article:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 135, 76, 0.52);
  background: rgb(195 144 53 / 6%);
}

.action-triad article  i {
      width: 70px;
    min-height: 70px;
    display: flex;
    place-items: center;
    border: 1px solid rgba(169, 135, 76, 0.28);
    color: var(--gold);
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 40px;
}
.icon-head{
  display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    width: calc(100% + 50px);
    margin-left: -25px;
    margin-right: -25px;
    box-shadow: 0 1px 2px #ddd;
    padding: 25px;
    padding-top: 0;
}
.action-triad span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.action-triad h2 {
  font-family: Inter, sans-serif;
  font-size: 25px;
  letter-spacing: 0.03em;
  color: var(--gold);
  font-weight: 600;
}

.action-triad p {
  margin-top: 5px;
  font-size: 15px;
  line-height: 20px;
}

.action-triad h5 {
  color: var(--blue);
  font-size: 16px;
  line-height: normal;
  margin-top: 10px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
}
.action-triad h5:after {
    position: absolute;
    left: -14px;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #c39035;
    border-radius: 50%;
    content: "";
}

.connect-section{
  float: left;
  width: 100%;
  background-color: white;
}
.connect-copy:last-child{
  margin-bottom: 0;
}


.impact-intro {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 19px;
    align-items: center;
    margin-bottom: 52px;
    text-align: center;
    max-width: 940px;
    margin: auto;
    margin-bottom: 50px;
}

.impact-intro h2 {
  max-width: 560px;
  margin: auto;
}

.impact-intro p + p {
  margin-top: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  /* background-image: url(../image/dots.png); */
  background-size:110%  ;
  background-repeat: no-repeat;
  border-radius: 10px;
  transition: 0.5s !important;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 135, 76, 0.5);
  box-shadow: 0px 10px 12px rgba(169, 135, 76, 0.5);
}

.service-card i,
.domain-tags i,
.contact-lines i {
  color: var(--gold);
}

.service-card i {
  margin-bottom: 24px;
  font-size: 22px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card ul {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.service-card li {
  position: relative;
  padding-left: 25px;
  color: var(--slate);
  font-size: 15px;
}

.service-card li + li {
  margin-top: 10px;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 17px;
    height: 17px;
    background-image: url(../image/check.png);
    background-size: contain;
    background-size: 15px;
    background-repeat: no-repeat;
}






.advantage-section {
  position: relative;
  overflow: hidden;
}



.advantage-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 74px;
}

.advantage-copy p {
  margin-top: 0px;
  font-size: 18px;
}
.advantage-copy h2 {
    margin-bottom: 20px;
}



.convergence-model {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 27, 51, 0.03) 1px, transparent 1px),
    rgba(255, 255, 255, 0.34);
  background-size: 62px 62px;
  overflow: hidden;
}

.convergence-model::before,
.convergence-model::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(7, 27, 51, 0.1);
}

.convergence-model::before {
  inset: 52px;
}

.convergence-model::after {
  inset: 120px;
  border-color: rgba(169, 135, 76, 0.18);
}

.policy { left: 52px; top: 68px; }
.technology { right: 52px; top: 106px; }
.market { left: 36px; top: 270px; }
.strategy { right: 42px; top: 320px; }
.execution { left: 174px; bottom: 70px; }

.convergence-core {
  width: 136px;
  height: 136px;
  font-family: Inter, sans-serif;
  font-weight: 900;
}

.connector-a { transform: rotate(225deg); }
.connector-b { transform: rotate(319deg); width: 196px; }
.connector-c { transform: rotate(181deg); width: 220px; }
.connector-d { transform: rotate(25deg); width: 206px; }
.connector-e { transform: rotate(104deg); width: 178px; }

.domains-section {
  background: var(--paper);
}

.domains-layout {
 display: grid;
    grid-template-columns: 1.14fr .94fr;
    gap: 100px;
    align-items: start;
}

.domains-heading {
  position: sticky;
  top: 108px;
}

.domains-heading p {
  margin-top: 24px;
  font-size: 18px;
}

.domain-tags {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin-top: 100px;
}

.domain-tags span {
  min-height: 39px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 20px;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.42);
    color: var(--blue);
    font-weight: 500;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    border: 1px solid var(--gold);
    border-radius: 5px;
    position: relative;
}
.domain-tags span img {
    position: absolute;
    left: -9px;
    top: 11px;
    width: 17px;
    background: white;
    border: 1px solid var(--gold);
    height: 17px;
    border-radius: 50%;
    padding: 2px;
}

.domain-tags span:hover {
  transform: translateX(5px);
  border-color: rgba(169, 135, 76, 0.44);
  background: var(--white);
}

.challenge-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 30px 46px;
  align-items: start;
  margin-top: 38px;
  padding: 42px 0 0;
  border-top: 1px solid var(--line);
}

.challenge-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.challenge-panel li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--blue);
  font-weight: 800;
}

.challenge-panel > p {
  grid-column: 1 / -1;
  max-width: 760px;
}

.why-section {
  background-color: var(--blue);
  color: var(--white);
  background-image: url(../image/dots.png);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.why-heading {
  position: sticky;
  top: 108px;
}

.why-heading h2,
.why-list h3,
.difference-panel h3 {
  color: var(--white);
}

.why-heading p,
.why-list p,
.difference-panel p,
.difference-panel li {
  color: rgba(255, 255, 255, 0.72);
}

.why-heading p {
  margin-top: 24px;
  font-size: 18px;
}

.why-list {
  display: grid;
  gap: 0;
}

.why-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-list article:first-child {
  padding-top: 0;
}

.why-list article:nth-child(even) {
  margin-left: 46px;
}

.why-list article:hover {
  transform: translateX(8px);
  border-color: rgba(169, 135, 76, 0.58);
}

.why-list span {
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 0.9;
}

.why-list p {
  margin-top: 12px;
  font-size: 16px;
}

.difference-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.2fr;
  gap: 36px;
  margin-top: 74px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.difference-panel ul {
  display: grid;
  gap: 10px;
}

.difference-panel li {
  position: relative;
  padding-left: 18px;
}

.difference-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.leadership-section {
  background: var(--paper);
  overflow-x: hidden;
}

.leadership-layout {
  display: grid;
 grid-template-columns: .95fr 1fr;
  gap: 70px;
  align-items: center;
}

.leadership-copy p {
  max-width: 720px;
  margin-top: 22px;
  font-size: 18px;
}

.profile-card {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-align: center;
  border-radius: 10px;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 135, 76, 0.45);
  background: var(--white);
}

.profile-image {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 1px solid rgba(169, 135, 76, 0.36);
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 27, 51, 0.04) 1px, transparent 1px),
    var(--paper-2);
  background-size: 18px 18px;
  color: var(--blue);
  font-size: 34px;
  overflow: hidden;
  margin: auto;
}

.profile-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin-top: 12px;
}

.profile-card p {
  margin-top: 18px;
  font-size: 16px;
}

.expertise-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.expertise-list strong {
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.faq-heading.aos-init.aos-animate {
    position: sticky;
    top: 218px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
  transition: background 0.25s ease;
}

.faq-list details[open] {
  background: var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 24px;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 760px;
  padding: 0 24px 26px;
}

.intersection-svg {
  width: 100%;
  max-width: 510px;
  margin-left: auto;
}

.intersection-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.connect-panel {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}


.contact-form-panel,
.connect-copy {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.contact-form-panel {
  padding: 44px;
  width: 60%;
}

.rightoption{
  width: 36%;
  float: right;
}
.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 27, 51, 0.16);
  outline: none;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 15px 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(95, 104, 116, 0.78);
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(169, 135, 76, 0.13);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.contact-form .primary-btn {
  min-width: 100%;
}

.connect-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    margin-bottom: 15px;
}

.connect-copy p {
  margin: 22px 0 28px;
  font-size: 16px;
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-lines a,
.contact-lines span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px;
  float: left;
  width: 100%;
}


.site-footer strong {
  display: block;
  color: var(--gold-soft);
  font-size: 18px;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer span {
  font-size: 14px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.55);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .impact-intro,
  .advantage-grid,
  .domains-layout,
  .why-layout,
  .leadership-layout,
  .faq-layout,
  .connect-panel {
    grid-template-columns: 1fr;
  }

  .domains-heading,
  .why-heading {
    position: static;
  }

  .service-grid,
  .action-triad {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-panel,
  .challenge-panel {
    grid-template-columns: 1fr;
  }

  .why-list article:nth-child(even) {
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 30px, var(--max));
  }
  .quiet-link{
    display: none;
  }
  

  .section-space,
  .hero-section {
    padding: 82px 0;
  }

  .brand img {
    width: 132px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 14px 18px;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  h2 {
  font-size: clamp(29px, 8vw, 46px);
        line-height: normal;
        padding: 0 15px;
  }

  .hero-copy p,
  .advantage-copy p,
  .domains-heading p,
  .leadership-copy p,
  .connect-copy p {
    font-size: 16px;
  }

  .convergence-model {
    min-height: 430px;
  }

  .action-triad,
  .service-grid,
  .domain-tags,
  .challenge-panel ul,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-panel,
  .connect-copy,
  .profile-card {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .primary-btn {
    width: 100%;
  }

  .convergence-model {
    min-height: 390px;
  }



  .convergence-core {
    width: 112px;
    height: 112px;
    font-size: 14px;
  }

  .visual-node,
  .pillar {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .node-policy,
  .policy { left: 18px; top: 42px; }
  .node-tech,
  .technology { right: 16px; top: 82px; }
  .node-market,
  .market { left: 14px; top: 214px; }
  .node-strategy,
  .strategy { right: 16px; top: 260px; }
  .node-execution,
  .execution { left: 76px; bottom: 44px; }

  .axis,
  .connector {
    width: 150px;
  }

  .action-triad article,
  .service-card {
    padding: 24px;
  }

  .action-triad article {
    grid-template-columns: 1fr;
  }
}

.service-card p{
  color: var(--gold);
}
.header-top1 {
    width: 100%;
    float: left;
    background: var(--gold);
}


.header-top1-full {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-top-left {
    display: flex
;
}

.header-top-left  ul li a{
color: var(--white);
font-size: 14px;
padding: 10px 0;
}

.header-top-left  ul li  a i{
    margin-right: 5px;
    position: relative;
}

.header-top-left  ul li{
    position: relative;
    
}

.header-top-left  ul li:last-child{

margin-left: 40px;
color: var(--white);

}

.header-top-left ul li:last-child::after {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
}
.header-top-left ul li a {
    color: var(--white);
    font-size: 14px;
    padding: 0;
}
.header-top-left ul li a:first-child::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0px;
    bottom: 5px;
    background-color: var(--white);
    transition: 0.4s;
}

.header-top-left  ul li  a:hover:after{

    width: 100%;
}


.header-top-right {
    display: flex;
    align-items: center;
    gap: 45px; 
}

ul.header-top-right-1 li a{
    padding: 10px;
    font-size: 14px;
    color: var(--white);
}


.header-top-right-2 li a{
    padding: 5px 10px;
    color: var(--white);
    position: relative;
   z-index: 1;
   display: inline-block;
}

.header-top-right-2 li a:hover{
    color: var(--primary-color);
}
ul.header-top-right-2 {
    display: flex;
}


.header-top-right-2 li a::after{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    background-color: var(--white);
    transition: 0.4s;
z-index: -1;

}

.header-top-right-2 li a:hover:after{
    transform: scale(1);
}
.header-top-left ul{
  display: flex;
}


   .testimonial-section {
    padding: 90px 0;
    background: var(--paper);
    float: left;
    width: 100%;
}


.section-heading h2{
    font-size:42px;
    margin-top:10px;
    color:#111;
}

.testimonial-item{
    padding:15px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
    border: 1px solid var(--paper);
}

.testimonial-card:hover{
    transform:translateY(-8px);
}
.testimonial-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h4{
    margin:0;
    font-size:18px;
    color:var(--blue)
}

.client-info span{
    color:var(--muted);
    font-size:14px;
}

.testimonial-slider .slick-dots{
    bottom:-50px;
}

.testimonial-slider .slick-dots li button:before{
    font-size:12px;
}
.slick-prev:before{
  content: "\F284" !important;
  font-family: bootstrap-icons!important;
  
}
.testimonial-slider button{
  background-color: white !important;
}
.slick-next:before{
  content: "\F285" !important;
  font-family: bootstrap-icons!important;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    z-index:2;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before{
    color:#111;
    font-size:20px;
}
.faq-heading.testmonail {
    text-align: center;
    margin-bottom: 40px;
    position: static !important;
}
.quote-icon {
    font-size: 120px;
    color: var(--gold);
    line-height: 70px;
    margin-bottom: 0;
    opacity: 0.2;
}

 
@media screen and (max-width: 767px) {
  .header-top1{
    display: none;
  }
  .nav-cta{
    display: none;
  }
      .main-nav {
        display: none;

    }
    .faq-heading{
      position: static !important;
    }

    .contact-form-panel{
      width: 100%;
      padding: 0;
      border: none;
    }
    .connect-copy{
      width: 100%;
    }
    .rightoption{
      width: 100%;
    }
    .section-space{
      padding-bottom: 15px;
    }
    .impact-section.section-space {
    padding-top: 60px;
}
}
.mobile-header{
  display: none;
}
@media screen and (max-width: 992px) {
  .site-header{
    display: none;
  }
  .mobile-header img {
    max-width: 90px;
}
.mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: var(--blue);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
}

.mobile-menu {
        display: inline-block !important;
        min-width: 53px;
        height: 43px;
        font-size: 35px;
        background: transparent;
        color: var(--gold);
        border: 2px solid;
        border-radius: 5px;
}
.menus {
   position: fixed;
        top: 98px;
        left: 0;
        background: #ffffffb5;
        z-index: 99;
        height: 100vh;
        width: 100%;
        transition: 0.4s;
        width: 0;
        overflow: hidden;
        backdrop-filter: blur(7px);
}
.menus ul{
  display: flex;
  flex-direction: column;
}
.menus ul a{
color: var(--gold);
        font-size: 19px;
        border-top: 1px solid;
        padding: 15px;
        font-weight: 600;
}
.menus.active{
  width: 100%;
}

.faq-list details {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px 0;
}
.faq-list summary {
    padding: 15px 15px;
    font-weight: 600;
}
.faq-list p {
    padding: 0 15px 15px;
}
.testimonial-slider .slick-prev {
    left: 0;
}
.testimonial-slider .slick-next {
    right: 0;
}
 .hero-section {
        padding: 130px 0;
        background-image: inherit !important;
        padding-bottom: 50px;
    }
    .action-triad article{
      margin-top: 0;
    }

}
   
span.higlisht{
  color: #0b4e92;
}
.rightimages {
    position: sticky;
    top: 0px;
}
.rightimages  h4{
  text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0;
}
.hero-copy h1{
  line-height: 60px;
}
.inside-di {
    float: left;
    width: 100%;
    margin-top: 15px;
}