:root {
  --ink: #10243e;
  --muted: #627186;
  --brand: #f15a4f;
  --brand-dark: #d9473d;
  --cream: #fff8f2;
  --surface: #ffffff;
  --line: #e8edf3;
  --shadow: 0 18px 50px rgba(16, 36, 62, .12);
}

html { scroll-behavior: smooth; }

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after { box-sizing: border-box; }

img { max-width: 100%; }

.home-page {
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.home-page .header_section {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 36, 62, .08);
  box-shadow: 0 8px 30px rgba(16, 36, 62, .06);
}

.home-page .header_section .container-fluid {
  padding-right: clamp(32px, 5vw, 80px);
  padding-left: clamp(32px, 5vw, 80px);
}

.home-page .custom_nav-container .navbar-brand { margin-right: 32px; }
.home-page .custom_nav-container .navbar-nav { align-items: center; }
.home-page .custom_nav-container .navbar-nav .nav-item:last-child .nav-link { margin-right: 0; }

.home-page .custom_nav-container { min-height: 84px; padding: 7px 0; }
.home-page .brand-logo {
  width: 82px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
}

.home-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  margin: 10px 18px;
  padding: 8px 2px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
}

.home-page .hero_area {
  min-height: 680px;
  background: #091b31;
}

.home-page .slider_section { min-height: 596px; }
.home-page .slider_section .carousel-inner { width: 100%; }
.home-page .slider_section .hero-slide {
  min-height: 596px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-page .slider_section .hero-slide-advisory {
  background-image: linear-gradient(90deg, rgba(9,27,49,.28), rgba(9,27,49,.10) 50%, rgba(9,27,49,.03)), url(../images/hero-consulting-v3.png);
}
.home-page .slider_section .hero-slide-financial {
  background-image: linear-gradient(90deg, rgba(9,27,49,.28), rgba(9,27,49,.10) 50%, rgba(9,27,49,.03)), url(../images/hero-financial-v1.png);
}
.home-page .slider_section .hero-slide-recruitment {
  background-image: linear-gradient(90deg, rgba(9,27,49,.28), rgba(9,27,49,.10) 50%, rgba(9,27,49,.03)), url(../images/hero-recruitment-v1.png);
}
.home-page .slider_section .hero-slide-hr {
  background-image: linear-gradient(90deg, rgba(9,27,49,.28), rgba(9,27,49,.10) 50%, rgba(9,27,49,.03)), url(../images/hero-consulting-v2.png);
}
.home-page .slider_section .box { margin: 0; min-height: 596px; display: flex; align-items: center; }
.home-page .slider_section .detail-box { max-width: 760px; padding: 64px 0 90px; }

.home-page .slider_section .detail-box h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.home-page .slider_section .detail-box h2 {
  max-width: 670px;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
}

.hero-copy { max-width: 620px; margin: 18px 0 28px; color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 999px; font-weight: 700; transition: transform .2s, background .2s; }
.hero-actions a:hover { transform: translateY(-2px); }
.primary-action { color: #fff !important; background: var(--brand); box-shadow: 0 12px 30px rgba(241,90,79,.34); }
.primary-action:hover { background: var(--brand-dark); }
.secondary-action { color: #fff !important; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }

.home-page .carousel-indicators {
  bottom: 32px;
  justify-content: center;
  margin-right: 15%;
  margin-left: 15%;
}
.home-page .carousel-indicators li { width: 32px; height: 4px; border: 0; border-radius: 10px; opacity: .55; }
.home-page .carousel-indicators .active { width: 56px; background: var(--brand); opacity: 1; }

.home-page .layout_padding { padding: 96px 0; }
.home-page .heading_container { flex-direction: column; align-items: center; gap: 18px; margin-bottom: 48px; }
.home-page .heading_container .section-eyebrow {
  margin-bottom: -7px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-page .heading_container h2 { color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; }
.home-page .heading_container h2::before { width: 54px; height: 4px; bottom: -12px; border-radius: 99px; background: var(--brand); }
.home-page .heading_container p { margin: 8px 0 0; color: var(--muted); font-size: 1.08rem; }

.home-page .how_section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.home-page .how_container {
  counter-reset: service-card;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}
.home-page .how_container .box {
  position: relative;
  counter-increment: service-card;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(16,36,62,.07);
  transition: transform .25s, box-shadow .25s;
}
.home-page .how_container .box::before,
.services-page .how_container .box::before {
  content: "0" counter(service-card);
  position: absolute;
  top: 46px;
  right: 40px;
  z-index: 2;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(9,27,49,.72);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(6px);
}
.home-page .how_container .box:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.home-page .how_container .box .img-box {
  height: 178px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
}
.home-page .how_container .box .img-box img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform .4s ease;
}
.home-page .how_container .box:hover .img-box img { transform: scale(1.045); }
.home-page .how_container .box h5 { min-height: 48px; color: var(--ink); font-size: 1.12rem; line-height: 1.35; }
.home-page .how_container .box p { color: var(--muted); line-height: 1.7; }
.home-page .how_container .detail-box { display: flex; flex: 1; flex-direction: column; }

.home-page .footer-brand-logo {
  width: 170px;
  height: 170px;
  margin-left: 10px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.home-page .about_section .detail-box p,
.home-page .client_section .client_detail p { color: var(--muted); line-height: 1.75; }
.home-page .client_section .box { border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.home-page .slider {
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.home-page .slider .heading_container {
  margin: 80px 0 48px !important;
}
.home-page .slider ul {
  width: max-content;
  max-width: none;
}
.home-page .slider li { flex: 0 0 auto; }
.home-page .info_section { background: var(--ink); }
.home-page .footer_section { background: #091b31; }

@media (max-width: 991px) {
  .home-page .header_section .container-fluid { padding-right: 28px; padding-left: 28px; }
  .home-page .navbar-collapse { padding: 15px 0 22px; }
  .home-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link { margin: 5px 0; }
  .home-page .hero_area, .home-page .slider_section, .home-page .slider_section .box { min-height: 610px; }
  .home-page .slider_section .detail-box { padding: 70px 12px 110px; text-align: left; }
  .home-page .how_container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .how_container .box { width: auto; }
}

@media (max-width: 575px) {
  .home-page .header_section .container-fluid { padding-right: 18px; padding-left: 18px; }
  .home-page .brand-logo { width: 68px; height: 62px; }
  .home-page .slider_section .hero-slide { background-position: 68% center; }
  .home-page .slider_section .detail-box h1 { font-size: 2.65rem; }
  .home-page .hero-actions a { width: 100%; }
  .home-page .layout_padding { padding: 72px 0; }
  .home-page .how_container { grid-template-columns: 1fr; width: calc(100% - 36px); padding: 0; }
  .home-page .how_container .box { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Shared navigation and footer for every public page. */
.site-page .header_section {
  position: relative;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid rgba(16, 36, 62, .08);
  box-shadow: 0 8px 30px rgba(16, 36, 62, .06);
}
.site-page .header_section .container-fluid {
  padding-right: clamp(32px, 5vw, 80px);
  padding-left: clamp(32px, 5vw, 80px);
}
.site-page .custom_nav-container { min-height: 84px; padding: 7px 0; }
.site-page .custom_nav-container .navbar-brand { margin-right: 32px; }
.site-page .brand-logo { width: 82px; height: 72px; object-fit: contain; border-radius: 50%; }
.site-page .custom_nav-container .navbar-nav { align-items: center; }
.site-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  margin: 10px 18px;
  padding: 8px 2px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
}
.site-page .custom_nav-container .navbar-nav .nav-item:last-child .nav-link { margin-right: 0; }
.site-page .info_section { background: var(--ink); }
.site-page .footer-brand-logo {
  width: 170px;
  height: 170px;
  margin-left: 10px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.site-page .footer_section { background: #091b31; }
.site-page .info_contact > .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 24px 0 0;
}
.site-page .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: transform .2s, background .2s, border-color .2s;
}
.site-page .social-links a:hover,
.site-page .social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .16);
}
.site-page .info_contact > .social-links img {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
  object-fit: contain;
}

@media (max-width: 991px) {
  .site-page .header_section .container-fluid { padding-right: 28px; padding-left: 28px; }
  .site-page .navbar-collapse { padding: 15px 0 22px; }
  .site-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link { margin: 5px 0; }
}

@media (max-width: 575px) {
  .site-page .header_section .container-fluid { padding-right: 18px; padding-left: 18px; }
  .site-page .brand-logo { width: 68px; height: 62px; }
}

/* Services page */
.services-page .hero_area { height: auto; background: #fff; }
.services-page .services-main { background: #fff; }
.services-page .services-intro {
  padding: 92px 0 86px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(241,90,79,.11), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.services-page .services-intro .container { max-width: 920px; }
.services-page .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.services-page .services-intro h1 {
  margin: 0 auto 22px;
  color: var(--ink);
  font-size: clamp(2.65rem,5vw,4.4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.services-page .services-intro p { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.services-page .how_section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 90, 79, .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.services-page .how_section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 55px solid rgba(16, 36, 62, .035);
  border-radius: 50%;
  pointer-events: none;
}
.services-page .heading_container {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  padding: 0 20px;
}
.services-page .heading_container .section-eyebrow { margin-bottom: -4px; }
.services-page .heading_container h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
}
.services-page .heading_container h2::before {
  width: 54px;
  height: 4px;
  bottom: -12px;
  border-radius: 99px;
  background: var(--brand);
}
.services-page .heading_container p {
  max-width: 680px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.services-page .how_container {
  counter-reset: service-card;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}
.services-page .how_container .box {
  display: flex;
  position: relative;
  counter-increment: service-card;
  flex-direction: column;
  min-width: 0;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 36, 62, .07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.services-page .how_container .box:hover {
  transform: translateY(-7px);
  border-color: rgba(241, 90, 79, .3);
  box-shadow: var(--shadow);
}
.services-page .how_container .box .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 178px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--cream);
}
.services-page .how_container .box:hover .img-box { background: #fff1e9; }
.services-page .how_container .box .img-box img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform .4s ease;
}
.services-page .how_container .box:hover .img-box img { transform: scale(1.045); }
.services-page .how_container .detail-box { display: flex; flex: 1; flex-direction: column; margin-top: 0; }
.services-page .how_container .detail-box h5 {
  min-height: 54px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.4;
}
.services-page .how_container .detail-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.services-page .how_container .box:hover .detail-box p { color: var(--muted); }

.services-page .services-process { padding: 96px 0; background: #fff; }
.services-page .services-process-card {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  align-items: center;
  gap: 64px;
  padding: 58px 62px;
  border-radius: 28px;
  background: linear-gradient(135deg,#10243e,#17395f);
  box-shadow: 0 24px 58px rgba(16,36,62,.18);
}
.services-page .services-process-copy h2 { margin: 0 0 18px; color: #fff; font-size: clamp(2rem,3.5vw,3rem); line-height: 1.12; letter-spacing: -.04em; }
.services-page .services-process-copy p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.75; }
.services-page .services-process-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.services-page .services-process-steps li {
  display: grid;
  grid-template-columns: 52px 100px 1fr;
  align-items: center;
  min-height: 68px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.services-page .services-process-steps span { color: #ff8a71; font-size: .8rem; font-weight: 800; }
.services-page .services-process-steps strong { color: #fff; }
.services-page .services-process-steps small { color: rgba(255,255,255,.64); font-size: .88rem; }

@media (max-width: 991px) {
  .services-page .how_container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-page .services-process-card { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 575px) {
  .services-page .services-intro { padding: 58px 0 64px; }
  .services-page .services-intro h1 { font-size: 2.45rem; }
  .services-page .how_section { padding: 72px 0 82px; }
  .services-page .how_container { grid-template-columns: 1fr; width: calc(100% - 36px); }
  .services-page .how_container .detail-box h5 { min-height: auto; }
  .services-page .services-process { padding: 64px 0; }
  .services-page .services-process-card { padding: 36px 22px; }
  .services-page .services-process-steps li { grid-template-columns: 42px 1fr; }
  .services-page .services-process-steps small { grid-column: 2; margin-top: 3px; }
}

/* Responsive foundation shared by all pages. */
.site-page .container,
.site-page .container-fluid { max-width: 100%; }
.site-page p,
.site-page li,
.site-page a { overflow-wrap: anywhere; }
.site-page .content-illustration {
  display: block;
  width: min(450px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(16, 36, 62, .16);
}
.site-page .navbar-toggler {
  min-width: 48px;
  min-height: 48px;
  padding: 5px;
  border: 0;
}
.site-page .info_section .row > [class*="col-"] { min-width: 0; }
.site-page .info_contact > div { align-items: flex-start; }
.site-page .info_contact p { flex: 1; min-width: 0; line-height: 1.65; }
.site-page .info_section h5 { margin-bottom: 18px; }
.site-page .info_links ul { margin-bottom: 0; }
.site-page .footer_section p { max-width: 100%; line-height: 1.6; }

.home-page .about_section {
  padding: 104px 0;
  background: #fff;
}
.home-page .about_section .container { max-width: 1200px; }
.home-page .about_section .box {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.home-page .about_section .img-box,
.home-page .about_section .detail-box { width: 100%; }
.home-page .about_section .content-illustration { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.home-page .about_section .detail-box { padding: 0; text-align: left; }
.home-page .about_section .section-eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-page .about_section .detail-box h2 {
  max-width: 600px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.home-page .about_section .detail-box p { margin-bottom: 14px; font-size: 1.02rem; line-height: 1.75; }
.home-page .about-highlights { margin: 24px 0 30px; padding: 0; list-style: none; }
.home-page .about-highlights li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}
.home-page .about-highlights li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}
.home-page .about_section .btn-box { justify-content: flex-start; }
.home-page .about_section .btn-box a {
  padding: 13px 24px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(241, 90, 79, .22);
}
.home-page .about_section .btn-box a:hover { background: var(--brand-dark); }

.home-page .why_section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d2139 0%, #142f4f 100%);
  color: #fff;
}
.home-page .why-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}
.home-page .why-visual { display: flex; justify-content: center; }
.home-page .why-image-frame {
  position: relative;
  width: min(430px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}
.home-page .why-image-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 88px;
  height: 88px;
  border-top: 4px solid var(--brand);
  border-left: 4px solid var(--brand);
  border-radius: 24px 0 0;
}
.home-page .why-image-frame img { display: block; width: 100%; height: auto; border-radius: 24px; }
.home-page .why-content .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff8a71;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-page .why-content h2 {
  max-width: 650px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.home-page .why-intro { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.72); font-size: 1.03rem; line-height: 1.75; }
.home-page .why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-page .why-points li {
  position: relative;
  min-height: 52px;
  padding: 15px 14px 15px 44px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-weight: 600;
}
.home-page .why-points li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 16px;
  color: #ff8a71;
  font-weight: 800;
}

.home-page .clients_section {
  overflow: hidden;
  padding: 96px 0;
  background: #f7f9fc;
}
.home-page .section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.home-page .section-heading .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-page .section-heading h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.home-page .section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.home-page .client-logo-grid {
  --logo-gap: 18px;
  display: flex;
  gap: var(--logo-gap);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: client-logo-scroll 50s linear infinite;
}
.home-page .client-logo-grid:hover { animation-play-state: paused; }
.home-page .client-logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 190px;
  width: 190px;
  height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16,36,62,.06);
  transition: transform .22s, box-shadow .22s;
}
.home-page .client-logo-grid li:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.home-page .client-logo-grid img { width: 100%; height: 100%; object-fit: contain; }
@keyframes client-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--logo-gap) / 2))); }
}
.home-page .client_section {
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.home-page .client_section .container { max-width: 1180px; }
.home-page .client_section .box { width: min(850px, calc(100% - 36px)); margin-right: auto; margin-left: auto; }
.home-page .client_section .client_id { min-width: 0; }
.home-page .slider img {
  width: 210px !important;
  height: 150px !important;
  object-fit: contain;
  background: #fff;
}

.about-page .hero_area { height: auto; background: #fff; }
.about-page > .layout_padding-bottom {
  width: 100%;
  padding: 72px 0 92px;
}
.about-page > .layout_padding-bottom .container { width: min(100%, 980px); }
.about-page > .layout_padding-bottom .box { text-align: center; }
.about-page > .layout_padding-bottom .detail-box { padding: 18px 16px 0; }
.about-page > .layout_padding-bottom .detail-box p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .site-page .custom_nav-container .navbar-nav { width: 100%; align-items: stretch; }
  .site-page .custom_nav-container .navbar-nav .nav-item { width: 100%; }
  .site-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    width: 100%;
    padding: 12px 8px;
    text-align: center;
    border-radius: 8px;
  }
  .site-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: var(--brand);
    background: var(--cream);
  }
  .home-page .slider_section .detail-box { max-width: 680px; }
  .home-page .client_section .box { padding: 28px; }
}

@media (max-width: 767px) {
  .site-page .layout_padding { padding-top: 72px; padding-bottom: 72px; }
  .site-page .info_section { padding: 58px 0 38px; }
  .site-page .info_section .row > [class*="col-"] { margin-bottom: 34px; text-align: left; }
  .site-page .info_section .row > [class*="col-"]:first-child { text-align: center; }
  .site-page .footer-brand-logo { width: 138px; height: 138px; margin: 0 auto; }
  .site-page .info_contact > div { justify-content: flex-start; }
  .site-page .footer_section p { padding: 18px 15px; font-size: .9rem; }
  .home-page .about_section { padding: 72px 0; }
  .home-page .about_section .box { flex-direction: column; }
  .home-page .about_section .box { grid-template-columns: 1fr; gap: 34px; }
  .home-page .why_section { padding: 72px 0; }
  .home-page .why-grid { grid-template-columns: 1fr; gap: 42px; }
  .home-page .why-content { text-align: left; }
  .home-page .client_section .client_id { flex-wrap: wrap; gap: 12px; }
  .home-page .clients_section,
  .home-page .client_section { padding: 72px 0; }
  .home-page .slider img { width: 170px !important; height: 120px !important; }
}

@media (max-width: 575px) {
  .site-page h1 { overflow-wrap: normal; word-break: normal; }
  .site-page .info_section .container { padding-right: 22px; padding-left: 22px; }
  .site-page .info_contact > div { gap: 8px; }
  .site-page .info_section .info_contact .img-box { flex: 0 0 28px; width: 28px; }
  .site-page .social-links { gap: 12px; }
  .home-page .hero_area,
  .home-page .slider_section,
  .home-page .slider_section .box { min-height: 650px; }
  .home-page .slider_section .detail-box { padding: 62px 4px 115px; }
  .home-page .slider_section .detail-box h2 { font-size: 1.15rem; }
  .home-page .hero-copy { font-size: 1rem; line-height: 1.6; }
  .home-page .client_section .box { padding: 22px 18px; }
  .home-page .client_section .client_id { flex-direction: column; align-items: center; text-align: center; }
  .home-page .client_section .client_detail { text-align: left; }
  .home-page .section-heading { margin-bottom: 34px; padding: 0 8px; }
  .home-page .client-logo-grid { --logo-gap: 12px; animation-duration: 40s; }
  .home-page .client-logo-grid li { flex-basis: 150px; width: 150px; height: 112px; padding: 14px; }
  .home-page .about_section { padding: 62px 0; }
  .home-page .about_section .detail-box h2 { font-size: 2rem; }
  .home-page .why_section { padding: 62px 0; }
  .home-page .why_section .container { padding-right: 20px; padding-left: 20px; }
  .home-page .why-points { grid-template-columns: 1fr; }
  .about-page > .layout_padding-bottom { padding: 48px 0 70px; }
}

@media (max-width: 360px) {
  .site-page .header_section .container-fluid { padding-right: 12px; padding-left: 12px; }
  .site-page .brand-logo { width: 60px; height: 56px; }
  .home-page .slider_section .detail-box h1 { font-size: 2.25rem; }
  .services-page .how_container { width: calc(100% - 24px); }
  .services-page .how_container .box { padding: 28px 20px; }
}

/* Desktop composition */
@media (min-width: 992px) {
  .home-page .hero_area {
    min-height: 620px;
    background-position: center 42%;
  }
  .home-page .slider_section,
  .home-page .slider_section .box { min-height: 536px; }
  .home-page .slider_section .carousel-item .container {
    width: 100%;
    max-width: none;
    padding-right: clamp(72px, 8vw, 140px);
    padding-left: clamp(72px, 8vw, 140px);
  }
  .home-page .slider_section .carousel-item .row { margin-right: 0; margin-left: 0; }
  .home-page .slider_section .carousel-item .col-md-7 { padding-right: 0; padding-left: 0; }
  .home-page .slider_section .detail-box {
    max-width: 700px;
    margin-left: 0;
    padding: 38px 0 48px;
  }
  .home-page .slider_section .detail-box > div {
    display: grid;
    grid-template-rows: 150px 76px 90px 50px;
    align-content: center;
    row-gap: 12px;
  }
  .home-page .slider_section .detail-box h1 {
    display: flex;
    align-items: flex-end;
    max-width: 690px;
    min-height: 0;
    margin: 0;
    font-size: clamp(3.25rem, 4.8vw, 4.6rem);
    line-height: 1.02;
  }
  .home-page .slider_section .detail-box h2 {
    align-self: start;
    max-width: 610px;
    margin: 0;
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  }
  .home-page .hero-copy {
    align-self: start;
    width: 420px;
    max-width: 100%;
    min-height: 0;
    margin: 0;
  }
  .home-page .hero-actions { align-self: start; height: 50px; }
  .home-page .carousel-indicators { bottom: 24px; }

  .site-page .info_section {
    padding: 62px 0 42px;
    background: linear-gradient(135deg, #10243e 0%, #0b1d33 100%);
  }
  .site-page .info_section .container { max-width: 1240px; }
  .site-page .info_section .row {
    align-items: flex-start;
    margin-right: -18px;
    margin-left: -18px;
  }
  .site-page .info_section .row > [class*="col-"] {
    padding-right: 18px;
    padding-left: 18px;
  }
  .site-page .info_section .row > [class*="col-"]:first-child { text-align: center; }
  .site-page .footer-brand-logo {
    width: 124px;
    height: 124px;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, .12);
  }
  .site-page .info_section h5 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.12rem;
    letter-spacing: .01em;
  }
  .site-page .info_section p,
  .site-page .info_section li {
    color: rgba(255, 255, 255, .72);
    font-size: .94rem;
    line-height: 1.7;
  }
  .site-page .info_section .info_contact > div { margin: 0 0 14px; }
  .site-page .info_section .info_contact .img-box { flex: 0 0 28px; width: 28px; justify-content: flex-start; }
  .site-page .info_section .info_contact .img-box img { margin-right: 8px; }
  .site-page .info_links ul li { margin-bottom: 5px; }
  .site-page .info_contact > .social-links { margin-top: 20px; }
  .site-page .footer_section { border-top: 1px solid rgba(255, 255, 255, .08); }
  .site-page .footer_section p { padding: 16px 20px; font-size: .88rem; }
}

@media (min-width: 768px) {
  .home-page .client_section .box {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: stretch;
    width: min(1060px, calc(100% - 48px));
    min-height: 320px;
    margin: 38px auto;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
  }
  .home-page .client_section .box .client_id {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 100%;
    margin: 0;
    padding: 26px 22px;
    background: var(--cream);
  }
  .home-page .client_section .box .client_id::before,
  .home-page .client_section .box .client_id::after { display: none; }
  .home-page .client_section .box .client_id .img-box {
    width: 190px;
    height: 190px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(16, 36, 62, .15);
  }
  .home-page .client_section .box .client_id .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-page .client_section .box .client_id .name { margin-top: 18px; }
  .home-page .client_section .box .client_id .name h5 {
    margin-bottom: 6px;
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .home-page .client_section .box .client_id .name h6 {
    margin: 0;
    font-size: .94rem;
    line-height: 1.4;
  }
  .home-page .client_section .box .client_detail {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 38px 46px;
  }
  .home-page .client_section .box .client_detail p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
  }
}

.home-page .testimonial-carousel { width: 100%; }
.home-page .testimonial-carousel .owl-stage { display: flex; }
.home-page .testimonial-carousel .owl-item { display: flex; height: auto; }
.home-page .testimonial-carousel .box {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: 410px;
  margin: 10px 0 34px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16,36,62,.10);
}
.home-page .testimonial-carousel .box .client_id {
  width: 180px;
  height: 100%;
  margin: 0;
  padding: 26px 18px;
  justify-content: center;
  background: var(--cream);
}
.home-page .testimonial-carousel .box .client_id .img-box {
  width: 138px;
  height: 138px;
}
.home-page .testimonial-carousel .box .client_id .name h5 {
  white-space: normal;
  font-size: .98rem;
}
.home-page .testimonial-carousel .box .client_detail {
  align-items: center;
  padding: 28px 26px;
}
.home-page .testimonial-carousel .box .client_detail p {
  font-size: .93rem;
  line-height: 1.68;
}
.home-page .testimonial-carousel .owl-dots { display: flex; justify-content: center; gap: 8px; }
.home-page .testimonial-carousel .owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd4df;
}
.home-page .testimonial-carousel .owl-dot.active { width: 28px; border-radius: 99px; background: var(--brand); }

@media (max-width: 899px) {
  .home-page .testimonial-carousel .box { min-height: 360px; }
}

@media (max-width: 575px) {
  .home-page .testimonial-carousel .box {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-page .testimonial-carousel .box .client_id {
    width: 100%;
    padding: 24px 18px;
  }
  .home-page .testimonial-carousel .box .client_detail { padding: 24px 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .client-logo-grid {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    animation: none;
  }
  .home-page .client-logo-grid li[aria-hidden="true"] { display: none; }
}

/* Stable navigation positioning across all pages. */
.site-page { padding-top: 85px; }
.site-page .header_section {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 28px rgba(16, 36, 62, .10);
  backdrop-filter: blur(12px);
}
.site-page .custom_nav-container {
  display: flex;
  align-items: center;
  width: 100%;
}
.site-page .custom_nav-container .navbar-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.site-page .custom_nav-container .navbar-toggler { margin-left: auto; }

@media (min-width: 992px) {
  .site-page .custom_nav-container .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
  }
  .site-page .custom_nav-container .navbar-collapse > div {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
    width: 100%;
    margin-left: 0 !important;
  }
  .site-page .custom_nav-container .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
  }
  .site-page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    margin: 0;
    padding: 12px 16px;
  }
}

@media (max-width: 991px) {
  .site-page .custom_nav-container { flex-wrap: wrap; }
  .site-page .custom_nav-container .navbar-collapse { flex-basis: 100%; width: 100%; }
  .site-page .custom_nav-container .navbar-collapse > div { width: 100%; margin-left: 0 !important; }
  .site-page .custom_nav-container .navbar-nav { margin: 8px 0 0; }
}

@media (max-width: 575px) {
  .site-page { padding-top: 77px; }
}

/* About page */
.about-page .about-main { background: #fff; }
.about-page .about-intro { padding: 96px 0 108px; }
.about-page .about-intro-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); align-items: center; gap: clamp(46px,7vw,92px); }
.about-page .about-intro-visual { position: relative; }
.about-page .about-intro-visual > img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 60px rgba(16,36,62,.18); }
.about-page .about-image-note { position: absolute; right: -24px; bottom: 28px; display: flex; flex-direction: column; gap: 3px; padding: 16px 20px; border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.about-page .about-image-note strong { color: var(--ink); }
.about-page .about-image-note span { color: var(--muted); font-size: .86rem; }
.about-page .section-eyebrow { display: inline-block; margin-bottom: 13px; color: var(--brand); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-page .about-intro-content h1 { margin: 0 0 24px; color: var(--ink); font-size: clamp(2.5rem,4.5vw,4rem); line-height: 1.05; letter-spacing: -.05em; }
.about-page .about-intro-content p { margin-bottom: 15px; color: var(--muted); font-size: 1.02rem; line-height: 1.78; }
.about-page .about-intro-content .about-lead { color: var(--ink); font-size: 1.12rem; }
.about-page .about-primary-link { display: inline-flex; margin-top: 14px; padding: 14px 24px; border-radius: 999px; background: var(--brand); color: #fff !important; font-weight: 700; box-shadow: 0 10px 24px rgba(241,90,79,.24); }
.about-page .about-expertise { padding: 100px 0; background: #f7f9fc; }
.about-page .about-section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.about-page .about-section-heading h2 { margin: 0 0 16px; color: var(--ink); font-size: clamp(2.15rem,4vw,3.25rem); letter-spacing: -.04em; }
.about-page .about-section-heading p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.about-page .about-pillar-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.about-page .about-pillar { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 36px rgba(16,36,62,.07); }
.about-page .about-pillar > img { width: 100%; height: 220px; object-fit: cover; }
.about-page .about-pillar > div { padding: 26px; }
.about-page .about-pillar span { color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.about-page .about-pillar h3 { margin: 8px 0 12px; color: var(--ink); font-size: 1.3rem; }
.about-page .about-pillar p { margin: 0; color: var(--muted); line-height: 1.7; }
.about-page .about-commitment { padding: 90px 0; }
.about-page .about-commitment-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; padding: 54px 60px; border-radius: 26px; background: linear-gradient(135deg,#10243e,#17395f); }
.about-page .about-commitment-card h2 { margin: 0; color: #fff; font-size: clamp(2rem,3.4vw,2.85rem); line-height: 1.15; letter-spacing: -.035em; }
.about-page .about-commitment-card p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.8; }

@media (max-width: 991px) {
  .about-page .about-intro-grid { grid-template-columns: 1fr; }
  .about-page .about-intro-visual { max-width: 680px; margin: 0 auto; }
  .about-page .about-pillar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-page .about-commitment-card { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 575px) {
  .about-page .about-intro { padding: 58px 0 72px; }
  .about-page .about-intro-content h1 { font-size: 2.4rem; }
  .about-page .about-image-note { right: 12px; bottom: 12px; }
  .about-page .about-expertise { padding: 70px 0; }
  .about-page .about-pillar-grid { grid-template-columns: 1fr; }
  .about-page .about-pillar > img { height: 200px; }
  .about-page .about-commitment { padding: 64px 0; }
  .about-page .about-commitment-card { padding: 34px 24px; }
}

/* Homepage impact and final call to action. */
.home-page .impact_section { padding: 96px 0; background: #fff; }
.home-page .impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,36,62,.08);
}
.home-page .impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px 20px;
  text-align: center;
}
.home-page .impact-item + .impact-item { border-left: 1px solid var(--line); }
.home-page .impact-item strong { margin-bottom: 8px; color: var(--brand); font-size: clamp(2.5rem,4vw,3.7rem); line-height: 1; letter-spacing: -.05em; }
.home-page .impact-item span { color: var(--ink); font-weight: 700; }
.home-page .home-cta-section { padding: 0 0 96px; background: #fff; }
.home-page .home-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 54px;
  padding: 54px 60px;
  border-radius: 28px;
  background: radial-gradient(circle at 90% 0%, rgba(241,90,79,.22), transparent 34%), linear-gradient(135deg,#10243e,#17395f);
  box-shadow: 0 24px 60px rgba(16,36,62,.2);
}
.home-page .home-cta-copy { max-width: 720px; }
.home-page .home-cta-copy .section-eyebrow { color: #ff9a84; }
.home-page .home-cta-copy h2 { margin: 0 0 15px; color: #fff; font-size: clamp(2.15rem,3.8vw,3.25rem); line-height: 1.1; letter-spacing: -.045em; }
.home-page .home-cta-copy p { margin: 0; color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.7; }
.home-page .home-cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 190px; }
.home-page .home-cta-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 700; }
.home-page .home-cta-primary { background: var(--brand); color: #fff !important; box-shadow: 0 10px 26px rgba(241,90,79,.28); }
.home-page .home-cta-secondary { border: 1px solid rgba(255,255,255,.35); color: #fff !important; background: rgba(255,255,255,.07); }

@media (max-width: 991px) {
  .home-page .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .impact-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .home-page .impact-item:nth-child(4) { border-top: 1px solid var(--line); }
  .home-page .home-cta-card { grid-template-columns: 1fr; gap: 32px; }
  .home-page .home-cta-actions { flex-direction: row; }
}

@media (max-width: 575px) {
  .home-page .impact_section { padding: 70px 0; }
  .home-page .impact-grid { grid-template-columns: 1fr; }
  .home-page .impact-item { min-height: 145px; }
  .home-page .impact-item + .impact-item { border-top: 1px solid var(--line); border-left: 0; }
  .home-page .home-cta-section { padding: 0 0 70px; }
  .home-page .home-cta-card { padding: 38px 24px; }
  .home-page .home-cta-actions { flex-direction: column; width: 100%; }
}
