/* =========================================================
   ASP LEVEL 3 DESIGN PAGE CSS
   Full file ready to paste
========================================================= */
:root{
  --lv-ink:#0b1220;
  --lv-muted:#5a6a7d;
  --lv-bg:#ffffff;
  --lv-card-bg:#ffffff;
  --lv-border:#e7edf5;
  --lv-shadow:0 14px 36px rgba(10,20,36,0.10);
  --lv-shadow-soft:0 10px 24px rgba(10,20,36,0.06);
  --lv-orange:#155e75;
  --lv-orange-600:#0f766e;
  --lv-orange-400:#155e75;
  --lv-radius:18px;
}

/* ---------- Section ---------- */
.generators-1-project{
  background: var(--lv-bg);
  color: var(--lv-ink);
  padding: clamp(40px, 4vw, 70px) 16px;
}

.generators-container{
  max-width:1180px;
  margin:0 auto;
}

.generators-header{
  margin-bottom:26px;
  text-align:center;
}

.generators-kicker{
  display:inline-block;
  font:600 12px/1.1 system-ui, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#06607b;
  background:#155f7537;
  padding:8px 12px;
  border-radius:999px;
}

.generators-header h2{
  margin:12px 0 0;
  font:700 clamp(22px,3.5vw,34px)/1.25 system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--lv-ink);
}

/* ---------- Grid ---------- */
.generators-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  margin-top:16px;
}

@media (max-width:1024px){
  .generators-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){
  .generators-grid{
    grid-template-columns:1fr;
  }
}

/* ---------- Card ---------- */
.generators-card{
  background:var(--lv-card-bg);
  border:1px solid var(--lv-border);
  border-radius:var(--lv-radius);
  overflow:hidden;
  box-shadow:var(--lv-shadow-soft);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  opacity:1;
  height:100%;
}

.generators-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--lv-shadow);
  border-color:#98e7ff;
}

.generators-body{
  padding:22px;
  color:var(--lv-ink);
  height:100%;
  display:flex;
  flex-direction:column;
}

.generators-year{
  display:inline-block;
  align-self:flex-start;
  margin-bottom:14px;
  background:linear-gradient(135deg, var(--lv-orange), var(--lv-orange-400));
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:7px 12px;
  border-radius:999px;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.generators-body h3{
  margin:0 0 12px;
  font:700 20px/1.4 system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--lv-ink);
}

.generators-client{
  color:var(--lv-muted);
  margin:0 0 14px;
  font-size:14px;
  line-height:1.6;
}

.generators-summary{
  margin:0;
  color:#253048;
  font-size:14px;
  line-height:1.8;
}

/* ---------- More button ---------- */
.generators-more-wrap{
  grid-column:1 / -1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:8px 0 6px;
}

.generators-more{
  border:0;
  cursor:pointer;
  color:#023e50;
  font-weight:700;
  padding:12px 18px;
  border-radius:12px;
  background:linear-gradient(135deg, #cce9f2, #69d3f3);
  box-shadow:0 10px 24px #90e4fe68;
  transition:transform .25s ease, box-shadow .25s ease, filter .2s ease;
}

.generators-more:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px #149cc69d;
  background:linear-gradient(135deg, #42d3ff, #25ccff);
}

.generators-more:active{
  transform:translateY(0);
}

/* ---------- Reveal animations ---------- */
.reveal-left{
  opacity:0;
  transform:translateX(-40px);
}

.reveal-right{
  opacity:0;
  transform:translateX(40px);
}

.is-visible{
  opacity:1;
  transform:translateX(0);
  transition:transform .7s cubic-bezier(.2,.6,.2,1), opacity .7s;
}

.is-hidden{
  display:none;
}
/* =============== RESET =============== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

/* =============== TOKENS =============== */
:root {
  --bo-ink: #0b1220;
  --bo-muted: #6a7a89;
  --bo-accent: #0f766e;
  --bo-accent-dark: #155e75;
  --bo-accent-soft: #e0f2f1;
  --bo-bg: #ffffff;
  --bo-surface: #f3f6fb;
  --bo-surface-2: #f8fafc;
  --bo-border: #dde5f0;
  --bo-border-dark: rgba(148, 163, 184, 0.35);
  --bo-radius-xl: 26px;
  --bo-radius-lg: 20px;
  --bo-radius-md: 14px;
  --bo-radius-sm: 10px;
  --bo-radius-pill: 999px;
  --bo-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --bo-shadow-card: 0 14px 34px rgba(15, 23, 42, 0.08);
  --bo-shadow-hover: 0 18px 36px rgba(15, 23, 42, 0.12);
  --bo-container: 1180px;
}

/* =============== GENERIC =============== */
img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.bo-container,
.ieng-container {
  width: 100%;
  max-width: var(--bo-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

/* Simple reveal */
.bo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bo-reveal,
  .bo-reveal.is-visible,
  .bo-btn-primary,
  .bo-btn-ghost,
  .hero-feature-card,
  .ps-expertise-card,
  .ps-gallery-card,
  .bo-industry-card,
  .ieng-loc-card {
    transition: none !important;
  }
}

/* =============== HERO =============== */
.bo-hero {
  position: relative;
  background: radial-gradient(circle at top left, #dff4ff 0, #eef7ff 30%, #ffffff 82%);
  padding: clamp(78px, 9vh, 115px) 0 clamp(48px, 6vh, 72px);
  margin-top: 80px;
}

@media (max-width: 768px) {
  .bo-hero {
    margin-top: 72px;
  }
}

.bo-hero-inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
}

@media (max-width: 960px) {
  .bo-hero-inner {
    grid-template-columns: 1fr;
  }
}

.bo-hero-title {
  margin: 0 0 12px;
  max-width: 30ch;
  font-size: clamp(24px, 3vw, 33px); /* reduced from 48px */
  line-height: 1.2;
  color: var(--bo-ink);
  font-weight: 900;
}

.bo-hero-title span {
  color: var(--bo-accent);
}

@media (max-width: 900px) {
  .bo-hero-title {
    max-width: 100%;
  }
}

.bo-hero-sub {
  margin: 0 0 14px;
  color: var(--bo-muted);
  font-size: 15px;
  line-height: 1.75;
}

.bo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bo-btn-primary,
.bo-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  min-height: 44px;
  border-radius: var(--bo-radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.bo-btn-primary {
  background: linear-gradient(135deg, var(--bo-accent), var(--bo-accent-dark));
  color: #ffffff;
  box-shadow: var(--bo-shadow-soft);
}

.bo-btn-primary:hover {
  transform: translateY(-2px);
}

.bo-btn-ghost {
  background: rgba(15, 118, 110, 0.05);
  border-color: rgba(15, 118, 110, 0.22);
  color: var(--bo-accent);
}

.bo-btn-ghost:hover {
  background: var(--bo-accent);
  color: #ffffff;
  border-color: var(--bo-accent);
}

.bo-hero-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bo-stat {
  min-width: 140px;
}

.bo-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bo-muted);
}

.bo-stat-value {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--bo-ink);
}

.bo-hero-media {
  justify-self: stretch;
}

/* Hero feature card */
.hero-feature-card {
  background: #ffffff;
  border-radius: var(--bo-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--bo-shadow-soft);
  transition: transform 0.2s ease;
}

.hero-feature-card:hover {
  transform: translateY(-2px);
}

.hero-feature-media {
  position: relative;
  height: clamp(230px, 30vw, 370px);
  background: #f3f6fb;
}

.hero-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-feature-body {
  padding: 18px 18px 22px;
}

.hero-feature-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--bo-ink);
}

.hero-feature-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--bo-muted);
  max-width: 52ch;
}

@media (max-width: 640px) {
  .hero-feature-body {
    padding: 16px 16px 18px;
  }
}

/* =============== SECTION HEADINGS =============== */
.bo-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--bo-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}

.bo-section-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--bo-ink);
  font-weight: 800;
}

.bo-section-title--wide,
.bo-section-text--wide {
  max-width: 980px;
}

.bo-section-text {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--bo-muted);
  line-height: 1.75;
}

/* =============== OVERVIEW =============== */
.bo-overview {
  background: var(--bo-bg);
  padding: clamp(42px, 5vh, 74px) 0;
}

.bo-overview-main {
  display: block;
}

.bo-overview-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .bo-overview-content-grid {
    grid-template-columns: 1fr;
  }
}

.bo-check-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bo-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bo-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.bo-check-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--bo-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

.bo-spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bo-spec-strip--overview {
  align-items: flex-start;
}

.bo-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: var(--bo-radius-pill);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.22);
  color: var(--bo-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.bo-spec-pill i {
  color: var(--bo-accent);
}

/* =============== EXPERTISE / SERVICES =============== */
.ps-expertise {
  background: radial-gradient(circle at top left, #558996 0%, rgb(67, 133, 151) 45%, #118691 100%);
  padding: clamp(46px, 6vh, 84px) 0;
}
.ps-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(6, 50, 69, 0.1), transparent 38%),
              radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.10), transparent 32%);
  pointer-events: none;
}

.ps-expertise .bo-container {
  position: relative;
  z-index: 1;
}
.ps-expertise-head {
  margin-bottom: 26px;
}

.ps-expertise-head .bo-eyebrow {
  color: #6ee7b7;
}

.ps-expertise-head .bo-section-title {
  color: #f8fafc;
}

.ps-expertise-sub {
  color: #cbd5e1;
  max-width: 840px;
}

.ps-expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (max-width: 900px) {
  .ps-expertise-grid {
    grid-template-columns: 1fr;
  }
}


.ps-expertise-card {
  background: #14384b;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.28);
}

.ps-expertise-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #f8fafc;
}

.ps-expertise-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

.ps-expertise-block h4 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14b8a6;
}

.ps-expertise-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #e2e8f0;
}

.ps-expertise-block li {
  margin: 0 0 6px;
  padding-left: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #f8fafc;
}


.ps-expertise-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}


.ps-expertise-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
  list-style: disc;
}



.ps-expertise-block li:last-child {
  margin-bottom: 0;
}

/* =============== GALLERY =============== */
.ps-gallery {
  background: #ffffff;
  padding: clamp(42px, 5vh, 72px) 0;
}

.ps-gallery-head {
  margin-bottom: 22px;
}

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

@media (max-width: 1024px) {
  .ps-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ps-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.ps-gallery-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--bo-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ps-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.ps-gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =============== GALLERY =============== */
.ps-gallery {
  background: #ffffff;
  padding: clamp(42px, 5vh, 72px) 0;
}

.ps-gallery-head {
  margin-bottom: 22px;
}

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

@media (max-width: 1024px) {
  .ps-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ps-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.ps-gallery-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--bo-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.ps-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.ps-gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============ IMAGE MODAL ============ */
.ps-image-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 9999;
}

.ps-image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ps-image-modal-content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  animation: psModalZoom 0.28s ease;
}

.ps-image-modal-content img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.ps-image-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}

.ps-image-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}

@keyframes psModalZoom {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =============== PROCESS / WHY IT MATTERS =============== */
.bo-process {
  background: var(--bo-bg);
  padding: clamp(46px, 6vh, 80px) 0;
}

.bo-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
}

@media (max-width: 960px) {
  .bo-process-inner {
    grid-template-columns: 1fr;
  }
}

.bo-process-text,
.bo-process-intro p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--bo-muted);
}

/* timeline */
.bo-timeline {
  position: relative;
}

.bo-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.bo-timeline-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--bo-accent) 0, #d1d5db 35%, #e5e7eb 100%);
}

.bo-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 8px 0 12px;
}

.bo-timeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0f172a;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: #a5f3fc;
  font-size: 15px;
  font-weight: 700;
}

.bo-timeline-content {
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e7eb;
}

.bo-timeline-item:last-child .bo-timeline-content {
  border-bottom: none;
}

.bo-timeline-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--bo-ink);
}

.bo-timeline-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bo-muted);
}

/* =============== INDUSTRIES =============== */
.bo-industries {
  background: var(--bo-surface);
  padding: clamp(42px, 5vh, 72px) 0 62px;
}

.bo-industries-header {
  margin-bottom: 18px;
}

.bo-industries-header p {
  margin: 4px 0 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bo-muted);
}

.bo-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .bo-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bo-industries-grid {
    grid-template-columns: 1fr;
  }
}

.bo-industry-card {
  background: #ffffff;
  border-radius: var(--bo-radius-md);
  border: 1px solid var(--bo-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 16px 15px 18px;
  display: grid;
  gap: 6px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bo-industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
}

.bo-industry-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--bo-ink);
}

.bo-industry-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bo-muted);
}

/* =============== ABOUT / JOURNEY / WHERE WE OPERATE =============== */
.cmms-contact-form-wrap {
  background: #ffffff;
  padding: clamp(28px, 4vh, 42px) 0;
}

.cmms-contact-form-inner {
  width: 100%;
  max-width: var(--bo-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

.eyebrow-neplan-what-we-bring {
  margin: 0 0 12px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--bo-accent) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-neplan-what-we-bring::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bo-accent), var(--bo-accent-dark)) !important;
  display: inline-block;
}

.title-meet-ieng-about {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--bo-ink);
}

.about-text-abou-ieng {
  margin: 0;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bo-muted);
}

/* =============== MISSION / VISION / VALUES =============== */
.bo-mvv-section {
  background: #ffffff;
  padding: clamp(40px, 5vh, 70px) 0;
}

.bo-mvv-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 4px;
  border-radius: 999px;
  background: #f3f4f6;
  margin-bottom: clamp(28px, 4vh, 36px);
  gap: 4px;
}

.bo-mvv-tab {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--bo-muted);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bo-mvv-tab.is-active {
  background: #ffffff;
  color: var(--bo-ink);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.bo-mvv-content-wrap {
  position: relative;
}

.bo-mvv-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.bo-mvv-content.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.bo-mvv-text {
  flex: 1;
}

.bo-mvv-text h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--bo-ink);
}

.bo-mvv-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bo-muted);
}

.bo-mvv-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bo-mvv-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .bo-mvv-content.is-active {
    flex-direction: column;
    align-items: flex-start;
  }

  .bo-mvv-image {
    width: 100%;
  }
}

/* =============== LOCATIONS =============== */
.ieng-locations {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: clamp(42px, 5vh, 72px) 0;
}

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

@media (max-width: 1024px) {
  .ieng-loc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .ieng-loc-grid {
    grid-template-columns: 1fr;
  }
}

.ieng-loc-card {
  background: #ffffff;
  border: 1px solid var(--bo-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 18px 16px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ieng-loc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
}

.ieng-loc-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ieng-loc-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 118, 110, 0.08);
  color: var(--bo-accent);
  flex: 0 0 auto;
}

.ieng-loc-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--bo-ink);
}

.ieng-loc-row {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bo-muted);
}

.ieng-loc-row strong {
  color: var(--bo-ink);
}

.ieng-loc-row a {
  color: var(--bo-accent) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.ieng-loc-row a:hover {
  color: var(--bo-accent-dark) !important;
  text-decoration: none !important;
}

.ieng-loc-address {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--bo-muted);
}

.ieng-loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bo-accent), var(--bo-accent-dark));
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
  transition: transform 0.2s ease;
}

.ieng-loc-btn:hover {
  transform: translateY(-2px);
}

/* =============== OPTIONAL HELPERS =============== */
.bo-types-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .bo-types-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bo-types-grid--three {
    grid-template-columns: 1fr;
  }
}

.bo-type-card {
  gap: 10px;
}

.bo-type-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bo-type-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
}

.bo-type-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}

/* =============== LEGACY SUPPORT FOR YOUR EXISTING BLOCKS =============== */
.bo-overview-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bo-border);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bo-overview-image-wrap img,
.jb-detail-media img,
.hero-feature-media img {
  object-fit: cover;
  object-position: center;
}

.bo-overview-image-wrap img {
  width: 100%;
  height: min(360px, 42vw);
  display: block;
}

.jb-detail-card {
  margin-bottom: 22px;
}

.jb-detail-para + .jb-detail-para {
  margin-top: 10px;
}

.bo-type-card {
  min-height: 210px;
}

.bo-industries-grid {
  align-items: stretch;
}

.bo-industry-card {
  height: 100%;
}

/* =============== CONTACT SPACING SAFETY =============== */
#contact {
  background: #ffffff;
  padding-top: 8px;
}

/* =============== SMALL MOBILE TUNING =============== */
@media (max-width: 640px) {
  .bo-hero-stats {
    gap: 14px;
  }

  .bo-stat-value {
    font-size: 18px;
  }

  .ps-gallery-card img {
    height: 230px;
  }

  .ps-expertise-card,
  .bo-industry-card,
  .ieng-loc-card {
    padding: 16px 14px;
  }
}

/* =========================================================
   STATIC FULL WIDTH SERVICE BLOCKS
========================================================= */
.asp-static-services {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  padding: clamp(34px, 4vw, 52px) 0 clamp(20px, 3vw, 30px);
}

.asp-static-services-head {
  margin-bottom: 18px;
}

.asp-static-services-sub {
  max-width: 860px;
}

.asp-static-services-list {
  display: grid;
  gap: 18px;
}

.asp-static-card {
  width: 100%;
}

.asp-static-card-inner {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(21, 94, 117, 0.04)),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  padding: clamp(22px, 3.5vw, 38px);
}

.asp-static-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: var(--bo-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asp-static-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #1e4f97;
}

.asp-static-text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--bo-ink);
  max-width: 1150px;
}

.asp-static-note {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--bo-muted);
  max-width: 1150px;
}

.asp-static-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 1150px;
}

.asp-static-points--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.asp-static-points li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--bo-ink);
}

.asp-static-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1e4f97;
  box-shadow: 0 0 0 5px rgba(30, 79, 151, 0.12);
}

.asp-static-points strong {
  font-weight: 800;
  color: #0b1220;
}

@media (max-width: 900px) {
  .asp-static-points--two {
    grid-template-columns: 1fr;
  }

  .asp-static-title {
    font-size: clamp(24px, 5vw, 38px);
  }

  .asp-static-text,
  .asp-static-note,
  .asp-static-points li {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .asp-static-services {
    padding-top: 28px;
  }

  .asp-static-card-inner {
    border-radius: 18px;
    padding: 20px 16px;
  }

  .asp-static-title {
    line-height: 1.14;
  }
}

/* =========================================================
   STATIC SERVICES - SAME DESIGN, BETTER POSITIONING
========================================================= */
.asp-static-services {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  padding: clamp(34px, 4vw, 52px) 0 clamp(26px, 3vw, 34px);
}

.asp-static-services-head {
  margin-bottom: 20px;
}

.asp-static-services-sub {
  max-width: 860px;
}

.asp-static-services-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.asp-static-card {
  width: 100%;
}

.asp-static-card--left .bo-container {
  display: flex;
  justify-content: flex-start;
}

.asp-static-card--right .bo-container {
  display: flex;
  justify-content: flex-end;
}

.asp-static-card-inner {
  width: min(100%, 68%);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(21, 94, 117, 0.04)),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  padding: clamp(22px, 3.5vw, 38px);
}

.asp-static-card--right .asp-static-card-inner {
  width: min(100%, 78%);
}

.asp-static-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: var(--bo-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asp-static-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #1e4f97;
}

.asp-static-text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--bo-ink);
  max-width: 1150px;
}

.asp-static-note {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--bo-muted);
  max-width: 1150px;
}

.asp-static-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 1150px;
}

.asp-static-points--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.asp-static-points li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--bo-ink);
}

.asp-static-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1e4f97;
  box-shadow: 0 0 0 5px rgba(30, 79, 151, 0.12);
}

.asp-static-points strong {
  font-weight: 800;
  color: #0b1220;
}

/* Custom widths for placement rhythm */
.asp-static-card:nth-child(1) .asp-static-card-inner {
  width: min(100%, 60%);
}

.asp-static-card:nth-child(2) .asp-static-card-inner {
  width: min(100%, 74%);
}

.asp-static-card:nth-child(3) .asp-static-card-inner {
  width: min(100%, 66%);
}

.asp-static-card:nth-child(4) .asp-static-card-inner {
  width: min(100%, 76%);
}

.asp-static-card:nth-child(5) .asp-static-card-inner {
  width: min(100%, 68%);
}

.asp-static-card:nth-child(6) .asp-static-card-inner {
  width: min(100%, 62%);
}

.asp-static-card:nth-child(7) .asp-static-card-inner {
  width: min(100%, 64%);
}

.asp-static-card:nth-child(8) .asp-static-card-inner {
  width: min(100%, 72%);
}

@media (max-width: 900px) {
  .asp-static-points--two {
    grid-template-columns: 1fr;
  }

  .asp-static-card-inner,
  .asp-static-card--right .asp-static-card-inner,
  .asp-static-card:nth-child(1) .asp-static-card-inner,
  .asp-static-card:nth-child(2) .asp-static-card-inner,
  .asp-static-card:nth-child(3) .asp-static-card-inner,
  .asp-static-card:nth-child(4) .asp-static-card-inner,
  .asp-static-card:nth-child(5) .asp-static-card-inner,
  .asp-static-card:nth-child(6) .asp-static-card-inner,
  .asp-static-card:nth-child(7) .asp-static-card-inner,
  .asp-static-card:nth-child(8) .asp-static-card-inner {
    width: 100%;
  }

  .asp-static-title {
    font-size: clamp(24px, 5vw, 38px);
  }

  .asp-static-text,
  .asp-static-note,
  .asp-static-points li {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .asp-static-services {
    padding-top: 28px;
  }

  .asp-static-card-inner {
    border-radius: 18px;
    padding: 20px 16px;
  }

  .asp-static-title {
    line-height: 1.14;
  }
}



/* ===== Expertise section animation ===== */
.ps-expertise {
  position: relative;
  overflow: hidden;
}

/* soft moving background glow */
.ps-expertise::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  animation: psGlowMove 8s ease-in-out infinite alternate;
}

/* heading reveal slightly smoother */
.ps-expertise-head.bo-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ps-expertise-head.bo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* card reveal animation */
.ps-expertise-card.bo-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ps-expertise-card.bo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger effect */
.ps-expertise-card:nth-child(1) { transition-delay: 0.05s; }
.ps-expertise-card:nth-child(2) { transition-delay: 0.12s; }
.ps-expertise-card:nth-child(3) { transition-delay: 0.19s; }
.ps-expertise-card:nth-child(4) { transition-delay: 0.26s; }
.ps-expertise-card:nth-child(5) { transition-delay: 0.33s; }
.ps-expertise-card:nth-child(6) { transition-delay: 0.40s; }
.ps-expertise-card:nth-child(7) { transition-delay: 0.47s; }
.ps-expertise-card:nth-child(8) { transition-delay: 0.54s; }
.ps-expertise-card:nth-child(9) { transition-delay: 0.61s; }
.ps-expertise-card:nth-child(10) { transition-delay: 0.68s; }

/* hover animation */
.ps-expertise-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.34);
  border-color: rgba(45, 212, 191, 0.35);
}

/* title small motion on hover */
.ps-expertise-title,
.ps-expertise-text,
.ps-expertise-block {
  transition: transform 0.3s ease;
}

.ps-expertise-card:hover .ps-expertise-title {
  transform: translateX(4px);
}

.ps-expertise-card:hover .ps-expertise-text,
.ps-expertise-card:hover .ps-expertise-block {
  transform: translateX(2px);
}

/* keyframes */
@keyframes psGlowMove {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-40px, 30px) scale(1.12);
    opacity: 0.9;
  }
}