@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* =============================================================
   CSS Custom Properties
   ============================================================= */
:root {

  /* Light theme tokens */
  --light-background: #fdfdfd;
  --light-surface: #fdfdfd;
  --light-on-surface: #1a1a1a;
  --light-on-surface-variant: #696969;
  --light-primary: #ff4d54;
  --light-primary-container: #c8a96e;
  --light-on-primary-container: #533d0c;
  --light-outline-variant: #d0c5b5;
  --light-surface-bright: #f9f9f9;

  /* Typography */
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Red Hat Display", sans-serif;


  /* Spacing */
  --container-margin: 64px;
  --technical-gap: 16px;
  --section-gap: 160px;
  --unit: 8px;
}

/* =============================================================
   Section Spacing (Mandatory)
   ============================================================= */
.container-fluid {
  padding: 0 40px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding-bottom {
  padding-bottom: 80px;
}

.section-padding-top {
  padding-top: 80px;
}

.bg-alternate {
  background-color: #fcfcfc !important;
}

/* =============================================================
   Base Reset & Body
   ============================================================= */


html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}




body {
  background-color: #f4f3f1;
  color: var(--light-on-surface);
  overflow-x: hidden;
  font-family: var(--font-body);

}


/* =============================================================
   Split Layout â€” Shared
   ============================================================= */
.split-layout {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: table;
  table-layout: fixed;
  overflow: hidden;
}

.split-side {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-side-dark {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.split-side-light {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* =============================================================
   Background Image Layer
   ============================================================= */
.side-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.side-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.side-bg-overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(22, 19, 15, 0.6);
  z-index: 1;
}

.side-bg-overlay-light {
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 42%);
  z-index: 1;
}

.side-content .primary-btn-outline {
  color: #ffffff !important;
  border: 2px solid rgb(253, 253, 253);
}

/* Dark image treatment */
.side-img-dark {
  filter: grayscale(1);
  opacity: 0.4;
  transform: scale(1.05);
}

.split-side:hover .side-img-dark {
  transform: scale(1);
}

/* Light image treatment */
.side-img-light {
  opacity: 0.9;
  transform: scale(1);
}

.split-side:hover .side-img-light {
  transform: scale(1.1);
}

/* =============================================================
   Side Content Canvas
   ============================================================= */
.side-content {
  position: relative;
  z-index: 2;
  padding-left: var(--container-margin);
  padding-right: 32px;
  max-width: 600px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s;
}

.side-content-left:hover,
.split-side:hover .side-content-left {
  transform: translateX(16px);
}

.side-content-right:hover,
.split-side:hover .side-content-right {
  transform: translateX(-16px);
}

/* =============================================================
   Side Logo
   ============================================================= */
.side-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.side-logo-light {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
  background: #ffffff94;
  padding: 10px 46px;
  border-radius: 30px;
}

/* =============================================================
   Typography â€” Headings
   ============================================================= */
.heading-side-dark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--dark-on-surface);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.heading-side-light {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #f0f0f0;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Only one h1 per page â€” both headings styled, but PMC uses h2 */
.heading-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin-bottom: 48px;
}

.heading-sub-dark {
  color: var(--dark-on-surface-variant);
}

.heading-sub-light {
  color: #eeeeee;
}

/* =============================================================
   Service List
   ============================================================= */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 64px 0;
  border-left: 1px solid rgba(200, 169, 110, 0.4);
  padding-left: 24px;
}

.service-list-item {
  display: block;
  margin-bottom: 16px;
}

.service-num-dark {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--dark-primary);
  opacity: 0.5;
  margin-right: 16px;
}

.service-num-light {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--light-on-surface-variant);
  opacity: 0.6;
  margin-right: 16px;
}

.service-label-dark {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-on-surface);
}

.service-label-light {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface);
}

/* =============================================================
   CTA Button
   ============================================================= */
.btn-explore {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-explore-dark {
  background-color: var(--dark-primary);
  color: var(--dark-on-primary);
}

.btn-explore-light {
  background-color: var(--light-primary-container);
  color: var(--light-on-primary-container);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-explore-ripple {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.btn-explore:hover .btn-explore-ripple,
.btn-explore:focus .btn-explore-ripple {
  transform: translateY(0);
}

.btn-explore-label {
  position: relative;
  z-index: 1;
}

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
  padding: var(--technical-gap) var(--container-margin);
}

.footer-inner {
  display: table;
  width: 100%;
  table-layout: auto;
}

.footer-left {
  display: table-cell;
  vertical-align: bottom;
}

.footer-right {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  pointer-events: auto;
}

.footer-text-dark {
  color: var(--dark-on-surface-variant);
}

.footer-text-light {
  color: var(--light-on-surface-variant);
}

.footer-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  pointer-events: auto;
  margin-left: 32px;
  transition: color 0.3s;
}

.footer-link-dark {
  color: var(--dark-on-surface-variant);
}

.footer-link-dark:hover,
.footer-link-dark:focus {
  color: var(--dark-primary);
}

.footer-link-light {
  color: var(--light-on-surface-variant);
}

.footer-link-light:hover,
.footer-link-light:focus {
  color: var(--light-primary-container);
}

.footer-copy-dark {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--dark-primary);
  pointer-events: auto;
  margin-left: 32px;
}

.footer-copy-light {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--light-on-surface);
  pointer-events: auto;
  margin-left: 32px;
}

/* =============================================================
   Atmosphere Overlay
   ============================================================= */
.atmosphere-dark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, #16130f 0%, transparent 50%, transparent 100%);
  opacity: 0.4;
}

.atmosphere-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, #ffffff 0%, transparent 50%, transparent 100%);
  opacity: 0.3;
}

/* =============================================================
   Focus States (Accessibility)
   ============================================================= */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--light-primary-container);
  outline-offset: 2px;
}

body.theme-dark a:focus-visible,
body.theme-dark button:focus-visible {
  outline-color: var(--dark-primary);
}




/* =============================================================
   BIM.HTML â€” Page-specific styles
   ============================================================= */

/* Body for BIM page â€” scrollable, light theme */


/* =============================================================
   BIM VISION + MISSION
   ============================================================= */
.vm-wrap {
  height: 300vh;
  background: var(--light-background);
}

.vm-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--light-background);
}

.para {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 2;
  will-change: width, height, clip-path;
}

.para img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
}

.blend-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
}

.text-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.vm-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-primary);
  margin-bottom: 6px;
}

.vm-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-on-surface);
  line-height: 1.05;
  margin-bottom: 10px;
}

.vm-divider {
  width: 34px;
  height: 2px;
  background: var(--light-primary);
  margin-bottom: 10px;
}

.vm-body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--light-on-surface-variant);
  max-width: 560px;
}


/* =============================================================
   BIM Header
   ============================================================= */
.bim-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--container-margin);
  background-color: rgba(253, 253, 253, 0);
  transition: background-color 0.4s, backdrop-filter 0.4s;
}

.bim-header.scrolled {
  background-color: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bim-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.28em;
  color: var(--light-on-surface);
  text-decoration: none;
  text-transform: uppercase;
}

.bim-logo:hover,
.bim-logo:focus {
  color: var(--light-primary);
}

.bim-nav-link {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  text-decoration: none;
  transition: color 0.3s;
}

.bim-nav-link:hover,
.bim-nav-link:focus {
  color: var(--light-primary);
}

.bim-nav-link.bim-active {
  color: var(--light-primary);
}

.bim-btn-proposal {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--light-primary);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.bim-btn-proposal:hover,
.bim-btn-proposal:focus {
  background-color: var(--light-primary-container);
  color: var(--light-on-primary-container);
}

/* Hamburger */
.bim-hamburger {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 6px 10px;
  cursor: pointer;
  line-height: 0;
}

.bim-hamburger-line {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--light-on-surface);
  margin: 5px 0;
}

/* =============================================================
   BIM Offcanvas
   ============================================================= */
.bim-offcanvas {
  background-color: var(--light-background);
}

.bim-offcanvas .offcanvas-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.25em;
  color: var(--light-on-surface);
}

.bim-offcanvas-link {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light-on-surface-variant);
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-outline-variant);
  transition: color 0.3s;
}

.bim-offcanvas-link:hover,
.bim-offcanvas-link:focus {
  color: var(--light-primary);
}

/* =============================================================
   BIM Hero (top of page, above Why Us)
   ============================================================= */
.bim-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background-color: var(--light-background);
  overflow: hidden;
}

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

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

.bim-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.25) 0%, rgba(12, 12, 12, 0.65) 60%, rgba(12, 12, 12, 0.85) 100%);
  z-index: 1;
}

.bim-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 1200px;
}

.bim-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background-color: var(--light-primary);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bim-hero-cta:hover,
.bim-hero-cta:focus {
  opacity: 0.95;
  transform: translateY(-2px);
}

.bim-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-primary);
  display: block;
  margin-bottom: 24px;
}

.bim-hero-heading {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #e5e5e5;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.bim-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin-bottom: 48px;
}

.bim-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.1) contrast(1.05);
}

.bim-hero-rule {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--light-primary), transparent);
  display: block;
  margin-bottom: 24px;
}

/* =============================================================
   WHY US SECTION â€” Scroll-Driven Animation
   ============================================================= */

/* 300vh spacer gives GSAP the scroll distance to animate over */
.why-us-spacer {
  height: 300vh;
  position: relative;
  background-color: #ffffff;
}

/* Sticky viewport panel â€” stays pinned while user scrolls spacer */
.why-us-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /* background-color: var(--light-background); */
}

/* Subtle grid inside Why Us */
.why-us-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Centered content within the pinned panel */
.why-us-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: table;
  width: 100%;
}

.why-us-inner-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* â”€â”€ Title row â”€â”€
   display:table splits WHY and AARIHA into left/right table-cells.
   The image is position:absolute, top:50%/left:50% â€” always
   exactly centered regardless of font metrics or viewport size. */
.why-us-title-row {
  position: relative;
  display: table;
  width: 100%;
  table-layout: fixed;
  /* Height matches the display text so the absolute image has a real midpoint */
  height: clamp(88px, 15.4vw, 220px);
}

/* Left table-cell â€” WHY right-aligned into the center gap */
.why-us-title-left {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: right;
  padding-right: clamp(50px, 5vw, 90px);
}

/* Right table-cell â€” AARIHA left-aligned out of the center gap */
.why-us-title-right {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: left;
  padding-left: clamp(50px, 5vw, 90px);
}

.why-us-word-why {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  display: inline-block;
  will-change: transform;
  position: relative;
  z-index: 9;
}

.why-us-word-aariha {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--light-primary);
  text-transform: uppercase;
  display: inline-block;
  will-change: transform;
  position: relative;
  z-index: 9;
}

/* Center image â€” position:absolute, dead-centered on the row.
   GSAP animates scale via xPercent/yPercent so the centering
   translate is never overwritten. */
.why-us-image-wrap {
  position: absolute;
  top: 50px;
  left: 50%;
  /* CSS centering â€” GSAP will use xPercent:-50/yPercent:-50 instead
     of writing to transform directly, so this is kept for fallback */
  transform: translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform;
  z-index: 2;
}

.why-us-image {
  width: clamp(200px, 22vw, 500px);
  height: clamp(280px, 30vw, 360px);
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.12) contrast(1.05);
  /* border: 1px solid rgba(115, 91, 40, 0.2); */
  display: block;
  border-radius: 24px;
}

/* Gold divider rule below title */
.why-us-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--light-primary), transparent);
  margin: 28px auto 0;
  display: block;
}

/* Sub-content: label + description + CTA */
.why-us-sub {
  margin-top: 48px;
  will-change: transform, opacity;
}

.why-us-label {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  opacity: 0.6;
  margin-bottom: 16px;
  display: block;
}

.why-us-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
  max-width: 520px;
  margin: 0 auto 32px auto;
}

/* Scroll indicator */
.why-us-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  opacity: 1;
  transition: opacity 0.4s;
}

.why-us-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.why-us-scroll-hint-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  opacity: 0.4;
  display: block;
  margin-bottom: 8px;
}

.why-us-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--light-on-surface-variant), transparent);
  margin: 0 auto;
  opacity: 0.3;
  animation: whyScrollPulse 1.8s ease-in-out infinite;
}

@keyframes whyScrollPulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

/* Responsive adjustments for Why Us on desktop/laptops */
@media (min-width: 992px) and (max-width: 1499px) {
  .why-us-title-left {
    padding-right: clamp(100px, 10vw, 160px);
  }

  .why-us-title-right {
    padding-left: clamp(100px, 10vw, 160px);
  }

  .why-us-image {
    width: clamp(180px, 18vw, 280px);
    height: clamp(240px, 24vw, 360px);
  }

  .why-us-word-why,
  .why-us-word-aariha {
    font-size: clamp(60px, 10vw, 150px);
  }
}

@media (min-width: 992px) and (max-width: 1299px) {
  .why-us-title-left {
    padding-right: clamp(80px, 9vw, 130px);
  }

  .why-us-title-right {
    padding-left: clamp(80px, 9vw, 130px);
  }

  .why-us-image {
    width: clamp(140px, 15vw, 220px);
    height: clamp(200px, 20vw, 280px);
  }

  .why-us-word-why,
  .why-us-word-aariha {
    font-size: clamp(50px, 8vw, 100px);
  }

  .why-us-title-row {
    height: clamp(60px, 10vw, 120px);
  }

  .why-us-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}

/* =============================================================
   BIM CTA Button (shared)
   ============================================================= */
.btn-bim-cta {
  position: relative;
  display: inline-block;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  /* background-color: var(--light-primary); */
  background: linear-gradient(135deg, var(--light-primary) 0%, #ff7379 100%);
  color: #ffffff !important;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
}

.btn-bim-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 77, 84, 0.35);
  background: linear-gradient(135deg, #ff333c 0%, #ff5c62 100%);
}

.btn-bim-cta-ripple {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-bim-cta:hover .btn-bim-cta-ripple,
.btn-bim-cta:focus .btn-bim-cta-ripple {
  transform: translateY(0);
}

.btn-bim-cta-label {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.btn-bim-cta:hover .btn-bim-cta-label,
.btn-bim-cta:focus .btn-bim-cta-label {
  color: #ffffff;
}

/* =============================================================
   BIM Services Section
   ============================================================= */
.bim-services-section {
  background-color: var(--light-background);
}

.bim-section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-primary);
  margin-bottom: 20px;
  display: block;
}

.bim-section-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.bim-section-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
  max-width: 480px;
}

.bim-service-card {
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--light-surface-bright);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background-color 0.4s;
}

.bim-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--light-primary);
  transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bim-service-card:hover::before,
.bim-service-card:focus-within::before {
  right: 0;
}

.bim-service-card:hover,
.bim-service-card:focus-within {
  border-color: rgba(115, 91, 40, 0.2);
  background-color: #f9f7f3;
}

.bim-service-num {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--light-primary);
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}

.bim-service-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bim-service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
}

/* =============================================================
   BIM Process Section
   ============================================================= */
.bim-process-section {
  background-color: var(--light-surface-bright);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bim-process-step {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bim-process-step:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bim-process-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--light-outline-variant);
  display: block;
}

.bim-process-title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bim-process-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
}

/* =============================================================
   BIM CTA Band
   ============================================================= */
.bim-cta-band {
  background-color: var(--light-primary);
  padding: 80px var(--container-margin);
}

.bim-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.btn-bim-cta-inverse {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #ffffff;
  color: var(--light-primary);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
}

.btn-bim-cta-inverse:hover,
.btn-bim-cta-inverse:focus {
  opacity: 0.88;
  color: var(--light-primary);
}

/* =============================================================
   New Rounded Dark Footer Design
   ============================================================= */
.bim-footer {
  background-color: var(--light-background);
  /* Page bg so the rounded footer stands out */
  border-top: none;
}

.footer-card {
  background-color: #111010;
  background-image: url('../img/footer-bg-20.png');
  /* Dark charcoal card background */
  border-radius: 80px 80px 0 0;
  /* High top rounded corners */
  padding: 80px 60px 45px;
  position: relative;
  color: #ffffff;
}

.footer-brand-header {}

/* Brand Mark / Logo Overlapping top edge */
.footer-brand-mark {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 5px solid #111010;
  overflow: hidden;
  z-index: 10;
  padding: 20px;
}

.footer-brand-mark img {
  width: 100%;
}

/* Brand Header */
.footer-brand-header {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  line-height: 1;
}

.footer-brand-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* CTA Buttons */
.footer-ctas {
  margin-bottom: 60px;
}


.primary-btn .arrow {
  transition: transform 0.3s;
  /* width: 20px; */
  /* height: 20px; */
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 60px;
}

.primary-btn .arrow img {
  width: 20px;
  height: 20px;
}

.primary-btn-outline .arrow {
  transition: transform 0.3s;
  /* width: 20px; */
  /* height: 20px; */
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 60px;
}

.primary-btn-outline .arrow img {
  width: 20px;
  height: 20px;
}

.primary-btn:hover .arrow {
  transform: translate(2px);
}

.primary-btn-outline:hover .arrow {
  transform: translate(2px);
}

.primary-btn {
  background-color: var(--light-primary);
  color: #ffffff !important;
  border: 2px solid var(--light-primary);

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 4px 4px 27px;
  border-radius: 100px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s;
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--light-primary) !important;
  border-color: var(--light-primary);
}

.footer-btn.primary-btn:hover {
  background-color: transparent;
  color: #ffffff !important;
  border-color: var(--light-primary);
}

.footer-btn.primary-btn-outline {
  background-color: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.primary-btn-outline {
  background-color: transparent;
  color: #000000 !important;
  border: 2px solid rgb(0, 0, 0);

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 4px 4px 27px;
  border-radius: 100px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s;
}

.footer-btn.primary-btn-outline:hover {
  background-color: #ffffff;
  color: #111010 !important;
  border-color: #ffffff;
}

.primary-btn-outline:hover {
  background-color: #000000;
  color: #f3f3f3 !important;
  border: 2px solid #000000;
}

.primary-btn-outline:hover .arrow {
  color: #ffffff !important;
  /* border: 2px solid #111010; */
}


/* Left Section: Contact & Socials */
.footer-contact-sec {
  /* Rely on Bootstrap grid column structure */
}

.footer-sec-heading {
  font-family: var(--font-display);
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-phone-email {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.footer-phone-email a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-phone-email a:hover {
  color: var(--light-primary);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-social-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-social-link .arrow img {
  width: 14px;
}

.footer-social-link .arrow {
  rotate: -40deg;
}

.footer-social-link:hover {
  color: var(--light-primary);
}

.footer-social-link .arrow {
  font-size: 0.85em;
  transition: transform 0.3s;
}

.footer-social-link:hover .arrow {
  transform: translate(2px, -2px);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.footer-links-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: var(--light-primary);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-pill a {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-legal-pill a:hover {
  color: #ffffff;
}

.footer-legal-pill .sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}


/* =============================================================
   BIM Focus States
   ============================================================= */
body.theme-bim a:focus-visible,
body.theme-bim button:focus-visible {
  outline: 2px solid var(--light-primary);
  outline-offset: 2px;
}








/* =============================================================
   BIM ECOSYSTEM â€” 3D Scrollytelling Section
   ============================================================= */

/* Outer wrapper â€” provides scroll height for 5 panels */
.bim-ecosystem-wrapper {
  position: relative;
  /* 5 panels Ã— 100vh each */
  min-height: 500vh;
  background-color: var(--light-background);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Fixed Three.js canvas layer â€” sits behind content, pointer-events off */
.bim-3d-canvas-wrap {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -100vh;
  /* pull panels back over canvas */
}

.bim-3d-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Ambient glow blobs */
.bim-3d-glow {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s;
}

/* Only show glows when ecosystem section is in view */
.bim-ecosystem-wrapper.is-active .bim-3d-glow {
  opacity: 1;
}

.bim-3d-glow--tl {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(115, 91, 40, 0.06) 0%, transparent 70%);
}

.bim-3d-glow--br {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(45, 52, 54, 0.03) 0%, transparent 70%);
}

/* Progress dots â€” left-side navigation */
.bim-3d-dots {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.bim-3d-dots.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.bim-3d-dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: background 0.4s, transform 0.4s;
  cursor: pointer;
}

.bim-3d-dot--active {
  background: var(--light-primary);
  transform: scale(2.5);
}

/* Loading overlay */
.bim-3d-loader {
  position: fixed;
  inset: 0;
  background: var(--light-background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out;
  pointer-events: none;
  opacity: 0;
  /* hidden until 3D section nears viewport */
}

.bim-3d-loader.is-loading {
  opacity: 1;
  pointer-events: all;
}

.bim-3d-spinner {
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.bim-3d-spinner::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--light-primary);
  animation: bim3dLoad 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes bim3dLoad {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.bim-3d-loader p {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  opacity: 0.5;
}

/* Scrollable panels stack â€” z-index above canvas */
.bim-3d-panels {
  position: relative;
  z-index: 10;
  pointer-events: none;
  /* pass-through except cards */
}

/* Each panel is a full-viewport-height scroll stop */
.bim-3d-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  pointer-events: none;
}

/* Even panels align right */
.bim-3d-panel--right {
  justify-content: flex-end;
}

/* Hero panel special alignment */
.bim-3d-panel--hero {
  position: relative;
}

/* Glass content card */
.bim-3d-card {
  max-width: 520px;
  padding: 48px 44px;
  background: rgba(253, 253, 253, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.bim-3d-card--visible,
.bim-3d-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Right-side cards slide from the right */
.bim-3d-panel--right .bim-3d-card {
  transform: translateX(28px);
}

.bim-3d-panel--right .bim-3d-card.is-visible {
  transform: translateX(0);
}

/* Hero heading */
.bim-3d-card-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bim-3d-card-heading-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--light-on-surface);
  display: block;
}

.bim-3d-card-heading-fill {
  color: var(--light-on-surface);
  display: block;
}

/* Section title */
.bim-3d-card-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 18px;
}

.bim-3d-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--light-primary);
}

.bim-3d-panel--right .bim-3d-card-title::after {
  left: auto;
  right: 0;
}

.bim-3d-card-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-primary);
  margin-bottom: 12px;
}

/* Body copy */
.bim-3d-card-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
  margin-bottom: 24px;
}

.bim-3d-card-body:last-child {
  margin-bottom: 0;
}

/* Feature bullet list */
.bim-3d-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.bim-3d-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bim-3d-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-primary);
  box-shadow: 0 0 8px rgba(115, 91, 40, 0.4);
  flex-shrink: 0;
}

/* Scroll indicator inside hero panel */
.bim-3d-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.bim-3d-scroll-hint span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  opacity: 0.4;
}

.bim-3d-mouse {
  width: 2px;
  height: 56px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
}

.bim-3d-wheel {
  width: 2px;
  height: 18px;
  background: var(--light-primary);
  position: absolute;
  top: 0;
  left: 0;
  animation: bim3dScroll 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes bim3dScroll {
  0% {
    top: 0;
    height: 0;
    opacity: 1;
  }

  50% {
    top: 0;
    height: 18px;
    opacity: 1;
  }

  100% {
    top: 56px;
    height: 0;
    opacity: 0;
  }
}

/* =============================================================
   BIM Ecosystem Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .bim-3d-panel {
    padding: 0 5%;
  }

  .bim-3d-card {
    max-width: 420px;
    padding: 36px 32px;
  }
}



/* =============================================================
   BIM WORKFLOW TIMELINE â€” GSAP Sticky Horizontal Scroll
   ============================================================= */

/* â”€â”€ 500vh spacer: gives scroll distance for 5 full-screen cards â”€â”€ */
.wf-spacer {
  height: 500vh;
  position: relative;
}

/* â”€â”€ Sticky full-screen pin â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #0b1712;
  /* very dark green â€” reference image bg */
}

/* Subtle grid overlay */
.wf-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 196, 135, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 196, 135, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* â”€â”€ Section header (top-left overlay) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-header-overlay {
  position: absolute;
  top: clamp(80px, 10vh, 120px);
  left: var(--container-margin);
  z-index: 30;
  pointer-events: none;
}

.wf-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.45em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 10px;
}

.wf-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: rgba(233, 225, 218, 0.12);
  /* ghost/watermark */
  text-transform: uppercase;
}

/* â”€â”€ Progress bar (bottom, full width) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-progressbar-wrap {
  position: absolute;
  bottom: 100px;
  left: var(--container-margin);
  right: var(--container-margin);
  height: 1px;
  background: rgba(229, 196, 135, 0.12);
  z-index: 30;
}

.wf-progressbar {
  height: 100%;
  width: 0%;
  background: var(--dark-primary);
  transition: width 0.1s linear;
}

/* â”€â”€ Step nav pips (bottom) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-steps-nav {
  position: absolute;
  bottom: 40px;
  left: var(--container-margin);
  right: var(--container-margin);
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  z-index: 30;
  pointer-events: none;
}

.wf-step-pip {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(208, 197, 181, 0.3);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.wf-step-pip em {
  font-style: normal;
  color: rgba(229, 196, 135, 0.3);
  font-size: 8px;
  transition: color 0.4s;
}

.wf-step-pip--active {
  color: rgba(233, 225, 218, 0.9);
}

.wf-step-pip--active em {
  color: var(--dark-primary);
}

/* â”€â”€ Horizontal strip (GSAP translates this) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-strip {
  display: flex;
  width: 500vw;
  /* 5 cards Ã— 100vw */
  height: 100vh;
  position: relative;
  z-index: 10;
  will-change: transform;
}

/* â”€â”€ Individual full-screen slide â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vh, 140px) var(--container-margin) clamp(60px, 8vh, 100px);
}

/* Card inner â€” mirrors reference image split */
.wf-slide-left {
  flex: 0 0 clamp(160px, 22vw, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(229, 196, 135, 0.07) 0%, transparent 100%);
  border-right: 1px solid rgba(229, 196, 135, 0.1);
  height: 100%;
  max-height: 520px;
  align-self: center;
}

.wf-slide-right {
  flex: 1 1 auto;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  height: 100%;
  max-height: 520px;
  align-self: center;
}

/* Outer card shell */
.wf-slide-left,
.wf-slide-right {
  background-color: #0e1b17;
  border: 1px solid rgba(229, 196, 135, 0.1);
}

.wf-slide-left {
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.wf-slide-right {
  border-left: 1px solid rgba(229, 196, 135, 0.08);
  border-radius: 0 4px 4px 0;
}

/* Ghost step number */
.wf-slide-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  color: rgba(229, 196, 135, 0.1);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  user-select: none;
}

/* Icon ring */
.wf-slide-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(229, 196, 135, 0.07);
  border: 1px solid rgba(229, 196, 135, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.wf-slide-icon-ring svg {
  width: 34px;
  height: 34px;
  color: var(--dark-primary);
}

/* Vertical stage label */
.wf-slide-stage {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-primary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: auto;
  opacity: 0.6;
}

/* Heading */
.wf-slide-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #e9e1da;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.wf-slide-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--dark-primary);
}

/* Body text */
.wf-slide-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: rgba(208, 197, 181, 0.75);
  margin-bottom: 28px;
  max-width: 440px;
}

/* Bullet list */
.wf-slide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wf-slide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: rgba(208, 197, 181, 0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wf-slide-list li:last-child {
  border-bottom: none;
}

.wf-slide-list li span {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark-primary);
  opacity: 0.8;
}

/* â”€â”€ Scroll hint â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wf-scroll-hint {
  position: absolute;
  bottom: 108px;
  right: var(--container-margin);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.4s;
  pointer-events: none;
}

.wf-scroll-hint.hidden {
  opacity: 0;
}

.wf-scroll-hint span:first-child {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(208, 197, 181, 0.35);
}

.wf-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--dark-primary), transparent);
  opacity: 0.4;
  animation: wfScrollPulse 2s ease-in-out infinite;
}

@keyframes wfScrollPulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}




/* =============================================================
   BLOG PAGE â€” blog.html
   ============================================================= */

/* â”€â”€ Blog Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: 0px 0px 60px 60px;
}

.hero-section-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(0.25) contrast(1.04);
}

.hero-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.50);
}

.hero-section-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
}

/* vertically & horizontally center via table-cell */


/* Override: make .hero-section-text itself act as the cell */

.hero-section-heading {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  /* margin-bottom: 10px; */
  text-align: center;
  /* vertical centering â€” push content to the visual midpoint */
  /* margin-top: 80px; */
}

.hero-section-breadcrumb {
  text-align: center;
  margin-top: 6px;
}

.hero-section-breadcrumb-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s;
  /* margin-right: 24px; */
  text-transform: uppercase;
}

.hero-section-breadcrumb-link:hover,
.hero-section-breadcrumb-link:focus {
  color: #ffffff;
}


/* .hero-section-breadcrumb-link::after {
  
     content: "â€¢â€¢";
    position: absolute;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 4px;
    left: 55px;
    top: 2px;
} */

.hero-section-breadcrumb-current {
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #ffffff;
}

/* â”€â”€ Blog Grid Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid-section {
  background-color: var(--light-background);
}



/* Row spacing between the three grid rows */
.blog-row {
  margin-bottom: 0;
}

/* â”€â”€ Blog Card â€” Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-card {
  margin-bottom: 32px;
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  line-height: 0;
  border-radius: 24px;
}

.blog-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card-img-link:hover .blog-card-img,
.blog-card-img-link:focus .blog-card-img {
  transform: scale(1.04);
}

/* Small card image height */
.blog-card--sm .blog-card-img {
  height: 180px;
}

/* Featured tall card */
.blog-card--featured .blog-card-img {
  height: 370px;
}

/* Large card */


/* Card body */
.blog-card-body {
  padding-top: 12px;
}

.blog-card-category {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--light-on-surface-variant);
  display: block;
  margin-bottom: 6px;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--light-on-surface);
  margin-bottom: 8px;
}

/* Featured card gets slightly larger title */
.blog-card-title--featured {
  font-size: 18px;
  line-height: 1.4;
}

.blog-card-title-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--light-on-surface);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title-link:hover,
.blog-card-title-link:focus {
  color: var(--light-primary);
}

.blog-card-meta {
  display: block;
}

.blog-card-author {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: var(--light-on-surface-variant);
  margin-right: 12px;
}

.blog-card-date {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--light-on-surface-variant);
}

.hero-section-breadcrumb-sep {
  color: #e5e5e5;
  font-size: 28px;
  vertical-align: middle;
  line-height: 1.2;
  font-family: var(--font-body);
}

/* â”€â”€ Pagination â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-pagination {
  padding-top: 16px;
  padding-bottom: 24px;
}

.blog-pagination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* center the list */
  text-align: center;
}

.blog-pagination-item {
  display: inline-block;
  margin: 0 4px;
}

.blog-pagination-btn {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--light-on-surface);
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
  border-radius: 50%;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.blog-pagination-btn:hover,
.blog-pagination-btn:focus {
  border-color: var(--light-on-surface);
  color: var(--light-on-surface);
}

/* Active page */
.blog-pagination-btn--active {
  border-color: var(--light-on-surface);
  background-color: transparent;
  font-weight: 700;
  color: var(--light-on-surface);
}

/* Arrow buttons â€” match circle style */
.blog-pagination-btn--arrow {
  color: var(--light-on-surface);
  /* vertically center the SVG */
  line-height: 36px;
  padding: 0;
}

.blog-pagination-btn--arrow svg {
  vertical-align: middle;
  margin-top: -2px;
}

/* Offcanvas CTA block-level on mobile */
.blog-offcanvas-cta {
  display: block;
  margin-top: 24px;
}





/* =============================================================
   Premium Expandable Navigation Pill & Header CSS
   ============================================================= */

/* Header Layout Container */
.header-inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* Force header transparent scroll */
.bim-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bim-header.scrolled {
  padding: 16px 0;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

/* Nav Pill Wrapper with perspective for 3D/premium effects */
.nav-pill-wrapper {
  position: relative;
  z-index: 1000;
}

/* Compact Nav Pill - Collapsed State */
.nav-pill {
  display: inline-flex;
  align-items: center;
  height: 62px;
  background: rgba(253, 253, 253, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  padding: 26px 14px 26px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, overflow 0s linear 0s;
  max-width: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bim-header.scrolled .nav-pill {
  background: rgba(253, 253, 253, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Expanded State of the Pill */
.nav-pill.nav-pill--expanded,
.nav-pill.nav-pill--init-expanded {
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: visible;
  /* Delay overflow change until expansion animation is finished */
  transition: max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    overflow 0s linear 0.6s;
}

/* Logo */
.nav-pill-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--light-on-surface) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  margin-right: 18px;
  flex-shrink: 0;
  transition: color 0.3s ease;
  line-height: 1;
}

.nav-pill-logo img {
  width: 100px;
}

.nav-pill-logo:hover {
  color: var(--light-primary) !important;
}

/* Minimal Toggle Menu Button beside logo */
.nav-pill-toggle {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--light-on-surface);
  border-radius: 99px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
}

.nav-pill-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.03);
}

.toggle-icon-dots {
  display: flex;
  gap: 3px;
  align-items: center;
}

.toggle-icon-dots .dot {
  width: 4px;
  height: 4px;
  background-color: var(--light-on-surface);
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-pill-toggle:hover .toggle-icon-dots .dot {
  background-color: var(--light-primary);
  transform: scale(1.2);
}

/* Hide toggle button when menu is expanded */
.nav-pill.nav-pill--expanded .nav-pill-toggle,
.nav-pill.nav-pill--init-expanded .nav-pill-toggle {
  opacity: 0;
  transform: translateX(-15px) scale(0.85);
  pointer-events: none;
  width: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

/* Links Container */
.nav-pill-content {
  display: inline-flex;
  align-items: center;
  flex-grow: 1;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

/* When expanded, fade and slide in content */
.nav-pill.nav-pill--expanded .nav-pill-content,
.nav-pill.nav-pill--init-expanded .nav-pill-content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0.15s;
}

/* Links Nav Grid */
.nav-pill-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
}

/* Nav Links inside pill */
.nav-pill-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-on-surface-variant) !important;
  text-decoration: none !important;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-pill-link:hover {
  color: var(--light-primary) !important;
}

/* Link Underline Micro-interaction */
.nav-pill-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  height: 2px;
  background-color: var(--light-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-pill-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Close Button at the far right of expanded menu */
.nav-pill-close {
  background: rgba(0, 0, 0, 0.04);
  border: none;
  color: var(--light-on-surface);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 10px;
}

.nav-pill-close:hover {
  background: rgba(255, 77, 84, 0.1);
  color: var(--light-primary);
  transform: scale(1.05) rotate(90deg);
}

.close-icon-line {
  display: block;
  width: 12px;
  height: 1.5px;
  background-color: currentColor;
  position: absolute;
}

.close-icon-line:first-child {
  transform: rotate(45deg);
}

.close-icon-line:last-child {
  transform: rotate(-45deg);
}

/* When expanded, show close button */
.nav-pill.nav-pill--expanded .nav-pill-close,
.nav-pill.nav-pill--init-expanded .nav-pill-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  pointer-events: auto;
  transition-delay: 0.22s;
}


/* =============================================================
   Premium Dropdowns
   ============================================================= */

/* Dropdown Container */
.nav-pill-dropdown-wrapper {
  position: relative;
}

/* Dropdown Arrow Indicator */
.arrow-icon {
  font-size: 7px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 2px;
  vertical-align: middle;
}

.nav-pill-dropdown-wrapper:hover .arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu styling */
.nav-pill-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 12px;
  /* Gap trigger area */
  z-index: 2000;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
}

/* Show Dropdown on Wrapper Hover */
.nav-pill-dropdown-wrapper:hover .nav-pill-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Inner Glassmorphic Container */
.dropdown-menu-inner {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 8px;
  width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.02);
}

/* Dropdown Item Link */
.dropdown-menu-item {
  display: block;
  padding: 10px 14px;
  text-decoration: none !important;
  color: var(--light-on-surface-variant) !important;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.dropdown-menu-item:hover {
  background: rgba(255, 77, 84, 0.04);
  color: var(--light-primary) !important;
  transform: translateX(4px);
}

.dropdown-menu-item .item-title {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* =============================================================
   Right Section CTA Button (BIM Works)
   ============================================================= */
.header-cta-wrapper {
  display: block;
  flex-shrink: 0;
  z-index: 1000;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bim-works-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--light-primary) 0%, #ff7379 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 77, 84, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.bim-works-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 77, 84, 0.35);
  background: linear-gradient(135deg, #ff333c 0%, #ff5c62 100%);
}

.bim-works-cta-btn:active {
  transform: translateY(0);
}


/* =============================================================
   Responsive Behavior (Mobile / Tablet Overrides)
   ============================================================= */


/* =============================================================
   Project Grid Page Specific Styles
   ============================================================= */
/* Project category tabs */
.project-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  width: 100%;
}

.project-tabs {
  display: inline-flex;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.project-tab {
  background: transparent;
  border: none;
  color: #666;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  outline: none;
}

.project-tab:hover {
  color: var(--light-primary);
}

.project-tab.active {
  background: var(--light-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 77, 84, 0.25);
}

/* Dynamic masonry columns grid */
.project-cards-grid {
  column-count: 2;
  column-gap: 48px;
  width: 100%;
}

@media (max-width: 991px) {
  .project-cards-grid {
    column-count: 1;
    column-gap: 0;
  }
}

.project-grid-header-col {
  break-inside: avoid;
  margin-bottom: 80px;
}

.project-card {
  break-inside: avoid;
  margin-bottom: 80px;
  transition: transform 0.4s ease;
}

.project-card.hidden-card {
  display: none !important;
}

.project-grid-section {
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: var(--light-background);
  overflow: hidden;
}

.project-grid-heading {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--light-on-surface);
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 80px;
  text-transform: capitalize;
}

.project-card {
  margin-bottom: 80px;
  transition: transform 0.4s ease;
}

.project-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img {
  transform: scale(1.04);
}

.project-card-category {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-primary-container);
  /* gold accent */
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--light-on-surface);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  color: var(--light-on-surface) !important;
  transition: color 0.3s ease;
}

.project-card-link .arrow {
  transition: transform 0.3s ease;
}

.project-card-link:hover {
  color: var(--light-primary) !important;
}

.project-card-link:hover .arrow {
  transform: translateX(4px);
}




/* =============================================================
   WHO WE ARE â€” Upper editorial layout
   ============================================================= */
.wwa-section {

  position: relative;
  /* wwa-section IS the scroll spacer â€” height set here */
  height: 204vh;
  scroll-margin-top: 100px;
}

/* Upper split layout â€” lives inside the sticky pin */
.wwa-upper {
  padding: 130px 0px 80px 0px;
  flex-shrink: 0;
}

.wwa-upper-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(48px, 6vw, 100px);
  margin: 0 auto;
}

/* Left column */
.wwa-left {
  flex: 0 0 45%;
  max-width: 45%;
  padding-top: 8px;
}



.section-sub-heading {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--light-primary);
  margin-bottom: 20px;
}




.section-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wwa-rule {
  width: 48px;
  height: 1px;
  background: var(--light-primary);
  margin-bottom: 28px;
}

.wwa-body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--light-on-surface-variant);
  margin-bottom: 40px;
}

.wwa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-on-surface) !important;
  transition: color 0.3s;
}

.wwa-cta:hover {
  color: var(--light-primary) !important;
}

.wwa-cta-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwa-cta:hover .wwa-cta-arrow {
  transform: translateX(5px);
}

/* Right column */
.wwa-right {
  flex: 1;
  min-width: 0;
}

.wwa-right .reveal-img-wrap {
  display: flex !important;
  justify-content: center;
}

.wwa-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e4dc;
  border-radius: 24px;
  width: 650px !important;
}


.wwa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(0.06) contrast(1.04);
  border-radius: 24px;
}

.wwa-img-wrap:hover .wwa-img {
  transform: scale(1.04);
}

.wwa-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.wwa-img-caption span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* Divider between upper and lower */


/* =============================================================
   WHO WE ARE â€” Horizontal scroll card experience
   ============================================================= */

/* 500vh spacer â€” now replaced by wwa-section itself, rule kept for safety */
.wwa-hscroll-spacer {
  height: 500vh;
  position: relative;
}

/* Sticky viewport panel */
.wwa-hscroll-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
}

/* Thin progress bar at the very top of the pin */
.wwa-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.wwa-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--light-primary);
  transition: width 0.05s linear;
}

/* The horizontal track â€” holds all 5 cards inline */
.wwa-hscroll-track {
  display: flex;
  align-items: center;
  will-change: transform;
  width: calc(5 * (100vw / 3));
  padding: 0 var(--container-margin);
  gap: 0;
  flex: 1;
  min-height: 0;
}

/* Individual card */
.wwa-card {
  flex: 0 0 calc(100vw / 3);
  width: calc(100vw / 3);
  padding: 0 clamp(24px, 3vw, 48px);
  display: flex;
  align-items: flex-start;
  position: relative;
  will-change: transform, opacity;
  overflow: hidden;
  margin-bottom: 32px;
  height: fit-content;
}

/* Vertical separator between cards */
.wwa-card+.wwa-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.wwa-card-inner {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Large gold step number â€” top of card, most prominent */
.wwa-card-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--light-primary);
  /* warm tan/gold from brand palette */
  margin-bottom: 16px;
  display: block;
}

/* Full-width rule directly under the number */
.wwa-card-top-rule {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 14px;
  flex-shrink: 0;
}

/* Icon */
.wwa-card-icon {
  width: 40px;
  height: 40px;
  color: var(--light-on-surface-variant);
  margin-bottom: 20px;
  opacity: 0.65;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
}

.wwa-card:hover .wwa-card-icon {
  color: var(--light-primary);
  opacity: 1;
}

.wwa-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Title */
.wwa-card-title {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--light-on-surface);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.wwa-card:hover .wwa-card-title {
  color: var(--light-primary);
}

/* Short description paragraph */
.wwa-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--light-on-surface-variant);
  margin-bottom: 18px;
  max-width: 320px;
}

/* Bullet list */
.wwa-card-list {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
}

.wwa-card-list li {
  font-family: var(--font-body);
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--light-on-surface-variant);
  padding-left: 2px;
}

.wwa-card-list li::marker {
  color: var(--light-primary-container);
  font-size: 0.8em;
}

/* Remove the old rule + cta â€” replaced above */
.wwa-card-rule {
  display: none;
}

.wwa-card-cta {
  display: none;
}

/* Step dots */


.wwa-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
  display: block;
}

.wwa-dot--active {
  background: var(--light-primary);
  transform: scale(1.3);
}

/* Scroll hint */
.wwa-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: var(--container-margin);
  text-align: right;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.4s;
}

.wwa-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.wwa-scroll-hint-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  opacity: 0.4;
  display: block;
  margin-bottom: 6px;
}

.wwa-scroll-hint-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--light-on-surface-variant), transparent);
  margin-left: auto;
  opacity: 0.25;
  animation: wwaScrollPulse 1.8s ease-in-out infinite;
}

@keyframes wwaScrollPulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.45;
  }
}

/* Contact US Page CSS */
/* Contact US Page CSS */
/* Contact US Page CSS */
.headline-main {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.heading-content {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-content .contact-link {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

.heading-content .contact-link:hover {
  color: #aaa;
}

.workspace-title {
  color: var(--light-primary);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.workspace-address {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.connect-title {
  font-family: var(--font-display);
  color: var(--light-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.connect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.connect-list li {
  margin-bottom: 0.5rem;
  font-family: "Red Hat Display";
}

.connect-list li:last-child {
  margin-bottom: 0;
}

.nav-link-custom {
  font-family: var(--font-bodyf);
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: #aaa;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}





.shape-line {
  position: absolute;
  fill: none;
  stroke: #ffd700;
  stroke-width: 2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation:
    drawFlow 25s linear infinite alternate,
    pulseOpacity 8s ease-in-out infinite;
}

@keyframes drawFlow {
  from {
    stroke-dashoffset: 2000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseOpacity {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

.animated-svg {
  width: 100%;
  height: 100%;
  animation: float 20s ease-in-out infinite;
  transform-origin: center;
}

@keyframes float {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.05) translate(20px, -20px);
  }
}

/* ===== MAP SECTION ===== */
.map-iframe {
  width: 100%;
  height: clamp(250px, 40vw, 420px);
  border: none;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-iframe:hover {
  filter: grayscale(0%) contrast(1);
}

/* ===== CONTACT FORM ===== */
.form-panel {
  background-color: black;
  padding: 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow-y: auto;
}

.form-panel-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.3rem;
  letter-spacing: 1.3px;
  color: #fff;
}

.form-panel-sub {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Red Hat Display" !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.panel-input {
  background: rgba(255, 255, 255, 0.92);
  border: none;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: #222;
  width: 100%;
  outline: none;
  border-radius: 0;
  transition: background 0.2s ease;
}

.panel-input::placeholder {
  color: #888;
}

.panel-input:focus {
  background: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -2px;
}

textarea.panel-input {
  resize: vertical;
  min-height: 80px;
}

.recaptcha-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #333;
  border-radius: 0;
  user-select: none;
  cursor: pointer;
}

.recaptcha-check {
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.recaptcha-logo {
  margin-left: auto;
  font-size: 0.6rem;
  text-align: center;
  color: #666;
  line-height: 1.2;
}

.panel-submit-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 0.55rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  width: fit-content;
}

.panel-submit-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}



/* Contact US END */
/* Contact US END */
/* Contact US END */

/* Clients Start */
.client-card-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.client-card-container-second {
  margin-top: 40px;
}

.client-card {
  width: 100%;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  padding: 40px;
}



/* =============================================================
   SECTION 3 â€“ founder
   ============================================================= */

@media (min-width: 992px) {
  .founder-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
}


@media (min-width: 992px) {
  .founder-section {
    height: auto;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

}



@media (min-width: 992px) {
  .founder-cards-container {
    height: 520px;
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .founder-cards-container {
    height: auto;
    margin-top: 40px;
  }
}


.founder-section {
  position: relative;
  background-color: #fcfcfc;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .founder-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .founder-section .container-fluid {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.founder-section .founder-header-text {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  line-height: 1.5;
  color: var(--light-on-surface-variant);
  margin-bottom: 6px;
  text-align: left;
}

.founder-cards-container {
  position: relative;
  height: auto;
  width: 100%;
}

@media (min-width: 992px) {
  .founder-cards-container {
    height: 520px;
    margin-top: 40px;
  }
}

.founder-row-card {
  margin-bottom: 80px;
}

.founder-row-card:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .founder-row-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
  }
}

/* Custom Image Wrapper - Portrait aspect ratio */
.founder-card-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 4; /* Portrait */
  width: 100%;
  max-width: 360px; /* Cap width to make it compact */
  margin: 0 auto; /* Center inside column */
}

.founder-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-card-img-wrap:hover img {
  transform: scale(1.03);
}

/* Custom Content - No Background Color, Transparent */
.founder-card-content {
  position: relative;
  padding: 20px 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px; /* Cap width to make it compact */
  margin: 0 auto; /* Center inside column */
}

.founder-card-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 12vw, 140px);
  font-weight: 800;
  color: rgba(17, 16, 16, 0.05); /* subtle layout overlay */
  line-height: 0.8;
  position: absolute;
  left: 20px;
  bottom: -20px;
  z-index: -1;
  user-select: none;
}

.founder-card-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  color: #111010;
  margin-bottom: 6px;
}

.founder-card-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888580;
  margin-bottom: 24px;
  display: block;
}

.founder-card-bio {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: #555250;
}

/* Responsive spacing adjustments */
@media (max-width: 991px) {
  .founder-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .founder-card-content {
    padding: 20px 0;
  }
  .founder-card-num {
    left: 0;
    bottom: -10px;
  }
  .founder-row-card {
    margin-bottom: 60px;
  }
}

/* =============================================================
   REVEAL IMAGE â€” add class "reveal-img" to any <img>
   JS auto-wraps it. Clip-path wipe + subtle scale on scroll entry.
   ============================================================= */
.reveal-img-wrap {
  display: block;
  overflow: hidden;
  /* Inherit dimensions from whatever container the img was in */
  width: 100%;
  height: 100%;
  position: relative;
}

.reveal-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: inherit;
  object-position: inherit;
  transform-origin: center center;
  will-change: transform, clip-path;
}

/* =============================================================
   CURSOR PILL â€” glassmorphism floating label for card hovers
   ============================================================= */
.cursor-pill {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.288);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, left, top;
}

.cursor-pill.cursor-pill--visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Subtle glass reflection line */
.cursor-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.45), transparent);
  border-radius: 999px;
}

/* Card hover â€” slight scale lift */
.blog-card:hover,
.project-card:hover {
  transform: translateY(-2px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================================
   LINE ANIMATION BG â€” reusable scroll-drawn architectural lines
   Drop <div class="line-animation-bg"></div> inside any section.
   Parent section needs: position:relative; isolation:isolate;
   ============================================================= */
.line-animation-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.line-animation-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.line-animation-bg path,
.line-animation-bg line,
.line-animation-bg polyline {
  fill: none;
  stroke: rgba(0, 0, 0, 0.07);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* Service Section CSS */


.home-service-section .service-head-description {
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 600;

}


.home-service-section .heading-container {
  text-align: right;
}

.about-us-section .service-head-description {
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
  width: 80%;
}

.about-content-container {
  display: flex;
  gap: 80px;
  align-items: end;
}


.about-content-container .about-content-img-wrap img {
  width: 80px;
}

.about-us-image-1,
.about-us-image-2 {
  border-radius: 20px;
}

.about-us-image-1 img,
.about-us-image-2 img {
  border-radius: 20px;
}

/* ==========================================================================
   PROCESS SECTION (BIM WORKFLOW)
   ========================================================================== */



.process-header {
  text-align: center;
  padding: 5rem 2rem 0;
}

.process-eyebrow {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: #C1272D;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.process-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #111;
  letter-spacing: 0.05em;
  margin: 0 0 0.8rem;
  line-height: 1;
}

.process-subtext {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.process-section {
  scroll-margin-top: 100px;
}

/* --- scroll spacer + sticky stage --- */
.process-scroll-spacer {
  height: 300vh;
  position: relative;
}

.process-stage {
  position: sticky;
  top: 102px;
  height: calc(100vh - 102px);
  width: 100%;
  overflow: hidden;
  /* background-image: url(../img/process-img.png); */
}

/* subtle architectural grid */
.process-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(193, 39, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 39, 45, 0.035) 1px, transparent 1px); */
  background-size: 64px 64px;
  pointer-events: none;
}

/* --- SVG overlay --- */
.process-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* connectors start fully hidden â€” JS controls opacity + dashoffset */
#pc0,
#pc1,
#pc2,
#pc3,
#pc4 {
  opacity: 0;
  stroke-dasharray: 999;
  stroke-dashoffset: 999;
}

/* --- HUB â€” centered with absolute + translate --- */
.p-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  /* JS changes --hub-scale, CSS applies it */
  transform: translate(-50%, -50%) scale(var(--hub-scale, 0.72));
  transform-origin: center center;
  z-index: 3;
  width: 200px;
  height: 200px;
  will-change: transform;
}

.p-hub-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid rgba(193, 39, 45, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: border-color 0.5s, box-shadow 0.5s;
}

.p-hub.hub-lit .p-hub-inner {
  border-color: rgba(193, 39, 45, 0.5);
  box-shadow:
    0 0 0 8px rgba(193, 39, 45, 0.06),
    0 0 40px rgba(193, 39, 45, 0.14),
    0 8px 40px rgba(0, 0, 0, 0.12);
}

.p-hub-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none;
  z-index: 0;
}

.p-hub.hub-lit .p-hub-glow {
  opacity: 1;
}

.p-hub-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(193, 39, 45, 0.18);
  animation: hubSpin 22s linear infinite;
  z-index: 1;
}

@keyframes hubSpin {
  to {
    transform: rotate(360deg);
  }
}

.p-hub-icon {
  width: 44px;
  height: 44px;
}

.p-hub-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: #111;
  line-height: 1;
}

.p-hub-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: #C1272D;
  text-transform: uppercase;
}

/* --- CARDS â€” all absolute, CSS % positions, no JS layout --- */
.p-card {
  position: absolute;
  width: 200px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Pentagon layout â€” transform: translate(-50%,-50%) centers card on anchor point */
.p-card-0 {
  left: 20%;
  top: 22%;
  transform: translate(-50%, -50%) scale(0.88);
}

.p-card-1 {
  left: 78%;
  top: 22%;
  transform: translate(-50%, -50%) scale(0.88);
}

.p-card-2 {
  left: 88%;
  top: 46%;
  transform: translate(-50%, -50%) scale(0.88);
}

.p-card-3 {
  left: 76%;
  top: 77%;
  transform: translate(-50%, -50%) scale(0.88);
}

.p-card-4 {
  left: 20%;
  top: 77%;
  transform: translate(-50%, -50%) scale(0.88);
}

.p-card.card-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) !important;
}

.p-card-inner {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: border-color 0.5s, box-shadow 0.5s;
}

.p-card.card-on .p-card-inner {
  border-color: rgba(193, 39, 45, 0.22);
  box-shadow:
    0 0 22px rgba(193, 39, 45, 0.1),
    0 6px 30px rgba(0, 0, 0, 0.09);
}

.p-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: #C1272D;
  margin-bottom: 0.55rem;
  display: block;
}

.p-card-icon {
  width: 26px;
  height: 26px;
  color: #bbb;
  display: block;
  margin-bottom: 0.7rem;
  transition: color 0.5s;
}

.p-card.card-on .p-card-icon {
  color: #C1272D;
}

.p-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0 0 0.5rem;
}

.p-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-card-list li {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: #777;
  line-height: 1.65;
  padding-left: 0.85rem;
  position: relative;
}

.p-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C1272D;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.p-card.card-on .p-card-list li::before {
  opacity: 1;
}


.head-box-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.service-card-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* Horizontal border lines */
.service-card-container .border-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #444444;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10;
}

.service-card-container .border-line-top {
  top: 0;
}

.service-card-container .border-line-bottom {
  bottom: 0;
}

/* Vertical divider line */
.service-card-container .border-line-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #444444;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 10;
  pointer-events: none;
}

/* Columns & Rows */
.service-card-container .row {
  position: relative;
  padding: 40px 0;
}

.service-card-container .image-column {
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
}

.service-card-container .image-column.order-lg-2 {
  padding: 20px 0 20px 20px;
}

.service-card-container .image-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card-container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.8s ease, transform 0.8s ease;
}

.service-card-container .image-wrapper:hover img {
  transform: scale(1.03);
}

.service-card-container .content-column {
  padding: 20px 0 20px 40px;
  display: flex;
  align-items: center;
}

.service-card-container .content-column.order-lg-1 {
  padding: 20px 40px 20px 0;
}

.service-card-container .content-wrapper {
  width: 100%;
}

.service-card-container .icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #C1272D;
}

.service-card-container .icon-box svg {
  width: 100%;
  height: 100%;
}

.service-card-container .section-title {
  font-family: 'Bebas Neue', var(--font-display), sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--dark-on-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-card-container .lead-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.service-card-container .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-container .bullet-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 1.5rem;
  position: relative;
}

.service-card-container .bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C1272D;
  font-weight: bold;
}


/* About us section 3 */

/* =============================================================
   SECTION 1 â€“ WHAT WE BRING
   ============================================================= */

.wb-wrap {
  height: calc(100vh * 4.0);
}

.wb-section {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wb-header {
  flex: 0 0 auto;
  padding: 18px 3rem 10px;
  background: var(--cream);
}

.wb-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wb-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wb-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}

.wb-heading {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}

.wb-heading em {
  font-style: italic;
  color: var(--muted);
}

.wb-scrolly-area {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.wb-scrolly-container {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.wb-scrolly-row {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  align-items: center;
}

.wb-img-col {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.wb-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e5df;
}

.wb-scrolly-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.wb-scrolly-img.active {
  opacity: 1;
  transform: scale(1);
}

.wb-scrolly-img.leaving {
  opacity: 0;
  transform: scale(0.97);
}

.wb-content-col {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.wb-content-panel {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.wb-block {
  position: absolute;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}

.wb-block.active {
  pointer-events: auto;
  opacity: 1;
}

.ri {
  overflow: hidden;
  display: block;
}

.rs {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
}

.ri-head .rs {
  transition-delay: 0.1s;
}

.ri-feats .rs {
  transition-delay: 0.22s;
}

.wb-block.active .rs {
  transform: translateY(0);
  opacity: 1;
}

.wb-block.exit-up .rs {
  transform: translateY(-50px) !important;
  opacity: 0 !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1),
    opacity 0.3s ease !important;
  transition-delay: 0s !important;
}

.wb-block.exit-down .rs {
  transform: translateY(50px) !important;
  opacity: 0 !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1),
    opacity 0.3s ease !important;
  transition-delay: 0s !important;
}

.wb-block-header {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 0.5rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.wb-block-num {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  padding-top: 0.6rem;
  letter-spacing: 0.5px;
}

.wb-block-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  /* line-height: 1; */
  color: var(--ink);
  /* letter-spacing: -0.01em; */
}

.wb-features {
  list-style: none;
  padding: 0 0 0 calc(3rem + 0.75rem);
  margin: 0;
}

.wb-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: #555250;
  margin-bottom: 0.75rem;
}

.wb-features li:last-child {
  margin-bottom: 0;
}

.wb-features li .dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.wb-mobile-slider {
  display: none;
}



/* ==========================================================================
   SERVICE CARD CONTAINER (BIM WORKFLOW / PRE-CONTRACT)
   ========================================================================== */

/* ==========================================================================
   STACKING CARDS PORTFOLIO SECTION
   ========================================================================== */
   
.stacking-cards-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.stacking-card {
  position: sticky;
  top: 140px;
  /* offset to clear header */
  width: 100%;
  height: clamp(450px, 70vh, 620px);
  margin-bottom: 80px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.25);
  transform-origin: top center;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stacking-card {
  position: sticky;
  top: 140px;
  /* offset to clear header */
  width: 100%;
  height: clamp(450px, 70vh, 620px);
  margin-bottom: 80px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.25);
  transform-origin: top center;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stacking-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Layering z-indices and staggered sticky offsets */
#pmc-card-1 {
  z-index: 1;
  top: 120px;
}

#pmc-card-2 {
  z-index: 2;
  top: 140px;
}

#pmc-card-3 {
  z-index: 3;
  top: 160px;
}

.stacking-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.stacking-card-bar {
  position: relative;
  background: #ffffff;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  border-radius: 20px;
  z-index: 2;
  margin: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stacking-card-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: 0.02em;
  line-height: 1;
  flex: 0 0 32%;
}

.stacking-card-metadata {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: space-around;
}

.metadata-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 180px;
}

.metadata-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-primary);
  letter-spacing: 0.15em;
}

.metadata-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  line-height: 1.35;
}

/* ==========================================================================
   HEADING TEXT SLIDE-DOWN ANIMATION
   ========================================================================== */
.char-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.char-inner {
  display: inline-block;
  will-change: transform;
}


/* =============================================================
   SECTION: CORE VALUES ACCORDION
   ============================================================= */

@media (min-width: 901px) {
  .pmc-card-3 {

    transform: translateY(0px);
    top: calc(50% - 130.797px);
    position: sticky;

  }

  .values-scroll-wrap {
    height: 300vh;
    /* Scroll travel distance */
  }

  .values-scroll-wrap .values-section {
    position: sticky;
    top: 0;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f4f3f1;
    /* Match body background */
  }
}

.values-header {
  margin-bottom: 40px;

  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.values-accordion {

  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 16, 16, 0.12);
  border-bottom: 1px solid rgba(17, 16, 16, 0.12);
}

.value-item {
  border-bottom: 1px solid rgba(17, 16, 16, 0.12);
}

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

.value-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.value-number {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #888580;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.value-item.active .value-number,
.value-header-btn:hover .value-number {
  color: var(--light-primary);
  /* Brand red accent: #ff4d54 */
}

.value-content-wrap {
  overflow: hidden;
  will-change: height, opacity;
}

.value-content-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  align-items: center;
}

.value-title {
  font-family: var(--font-display);
  /* Bebas Neue */
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  font-weight: 400;
  color: var(--light-on-surface);
  text-transform: uppercase;
}

.value-image-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background-color: rgba(0, 0, 0, 0.05);
  /* Placeholder tone during load */
}

.value-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--light-on-surface-variant);
  /* #696969 */
}


/* =============================================================
   SERVICE OVERVIEW SECTION â€” ABOUT BIM
   ============================================================= */

.overview-section {
  font-family: var(--font-body);
  color: var(--light-on-surface);
}

.overview-heading {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 2px;
  color: var(--light-on-surface);
}

.overview-large-img-wrap {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.overview-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-sm-img-wrap {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
}

.overview-sm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.overview-sub-heading {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ff4d54;
  /* Aariha Brand Red Accent */
  margin-bottom: 10px;
}

.overview-body-text {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.7;
  color: var(--light-on-surface-variant);
  margin-bottom: 0;
}

.overview-quote-text {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--light-on-surface);
  /* letter-spacing: -0.01em; */
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 30px;
}

.overview-gallery-row-1 .overview-sm-img {
  border-radius: 40px 0 40px 40px;
}

.overview-gallery-row-2 .overview-sm-img {
  border-radius: 0 40px 40px 40px;
}
.gallery-grid-img {
  border-radius: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.gallery-grid-img img {
    border-radius: 30px;
    height: 600px;
    

}



/* =============================================================
   SECTION: TEAM GRID (5 Responsive Cards)
   ============================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin-top: 60px;
  width: 100%;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--light-surface);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-card-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.05);
  /* Placeholder background */
  margin-bottom: 0;
}

.team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.team-card:hover .team-card-image {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.team-card-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  padding: 16px 20px;
  background: rgb(26 26 26 / 20%);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-card-info {
  background: rgba(15, 15, 15, 50%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-card-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--light-background);
  margin-bottom: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.team-card-role {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.2;
}

.team-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.35;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.team-card:hover .team-card-desc {
  max-height: 50px;
  opacity: 1;
  margin-top: 6px;
}


/* =============================================================
   ABOUT PMC SECTION
   ============================================================= */
.about-pmc {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f4f3f1;
  /* matches the body background */
}

.about-pmc-header-row {
  margin-bottom: 60px;
}

.about-pmc-heading-wrap {
  margin-bottom: 20px;
}

.about-pmc-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-on-surface-variant);
  display: block;
  margin-bottom: 12px;
}

.about-pmc-header-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--light-on-surface-variant);
  font-weight: 400;
  margin-bottom: 20px;
}

.about-pmc-content-row {
  margin-top: 40px;
}

.about-pmc-cards-row {
  position: relative;
}

.about-pmc-card {
  background-color: #ffffff;
  padding: 40px 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 24px;
}

.about-pmc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-pmc-card-icon-wrap {
  margin-bottom: 24px;
}

.about-pmc-card-icon {
  width: 42px;
  height: 42px;
  color: #c8a96e;
  /* gold secondary accent color */
}

.about-pmc-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--light-on-surface);
  font-weight: 500;
  margin: 0;
}



.about-pmc-image-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.about-pmc-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 120px 100%, 0 calc(100% - 120px));
  border-radius: 24px;
}


/* Project Card Description */
.project-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--light-on-surface-variant);
  margin-top: 12px;
  margin-bottom: 18px;
}

/* =============================================================
   FEATURED PROJECTS SECTION â€” SVG MASK SCROLL TRANSITIONS
   ============================================================= */

#projects-scroll-section.stage {
  height: 400vh;
  /* 3 slides -> 400vh scroll travel */
  position: relative;
  z-index: 10;
}

#projects-scroll-section .layers {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#projects-scroll-section .layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#projects-scroll-section .layer image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  /* Premium dark styling for contrast and text clarity */
}

#projects-scroll-section .texts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6vw;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

#projects-scroll-section .txt {
  position: absolute;
  width: 88vw;
  max-width: 700px;
  color: #ffffff;
  clip-path: inset(100% 0 0 0);
  transform: translateY(40px);
  pointer-events: auto;
  /* Enable clicking links inside text block */
}

#projects-scroll-section .project-num {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ff4d54;
  /* Aariha Brand Red Accent */
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

#projects-scroll-section .project-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 8rem);
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}

#projects-scroll-section .project-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

#projects-scroll-section .project-desc {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.75);
}

#projects-scroll-section .project-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #ff4d54;
  padding-bottom: 6px;
  transition: all 0.3s ease;
}

#projects-scroll-section .project-cta-btn:hover {
  color: #ff4d54;
  gap: 15px;
  text-decoration: none;
}

#projects-scroll-section .progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4vw;
  display: flex;
  gap: 1rem;
  z-index: 20;
}

#projects-scroll-section .segment {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

#projects-scroll-section .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #ff4d54;
}


.values-scroll-wrap {
  position: relative;
}



/* =============================================================
   CHALLENGES WE SOLVE SECTION â€” 2x2 PREMIUM GRID
   ============================================================= */

.challenges-section {
  position: relative;
  background-color: var(--light-background);
  min-height: 100vh;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  overflow: hidden;
}

.challenges-header-text {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  line-height: 1.5;
  color: var(--light-on-surface-variant);
  margin-bottom: 6px;
  text-align: left;
}

.challenge-card {
  position: relative;
  min-height: 260px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 50px;
  background-color: #201e1b;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.challenge-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.challenge-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  filter: brightness(1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  will-change: transform;
}

.challenge-card:hover .challenge-card-bg img {
  transform: scale(1.05);
  opacity: 0.22;
}

.challenge-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.challenge-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.challenge-card-num {
  position: absolute;
  left: 0px;
  bottom: -60px;
  transform: translateY(50%);
  font-family: var(--font-display);
  font-size: 166px;
  line-height: 0.8;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  transition: color 0.4s ease, transform 0.4s ease;
  user-select: none;
}

.challenge-card:hover .challenge-card-num {
  color: rgba(255, 255, 255, 0.15);
  transform: translateY(-22%) scale(1.03);
}

.challenge-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: clamp(100px, 12vw, 150px);
}

.challenge-card-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.challenge-card-desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}


/* =============================================================
   WHAT WE DELIVER SECTION â€” HORIZONTAL GALLERY
   ============================================================= */

.deliver-section {
  /* Clean dark background */
  overflow: hidden;
  position: relative;
}

.deliver-heading {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.deliver-heading .outlined-text {
  font-family: var(--font-body);
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
}

.deliver-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: #000000;
  max-width: 420px;
}

.deliver-nav-controls {
  margin-top: auto;
}

.deliver-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.deliver-nav-btn:hover {
  background-color: #000000;
  /*border-color: #ffffff;*/
  transform: scale(1.05);
}

.deliver-nav-btn:hover img {
  filter: invert(1);
}

.deliver-nav-btn img {
  width: 18px;
  height: 18px;
  transition: filter 0.3s ease;
}

.deliver-nav-btn.prev-btn img {
  transform: rotate(180deg);
}

/* Scroll Viewport & Row */
.deliver-cards-viewport {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  margin: -20px 0;
}

.deliver-cards-row {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Hide standard Firefox scrollbar */
  -webkit-overflow-scrolling: touch;
  /* Momentum scroll for iOS */
  padding: 20px 0 40px;
  margin-top: -20px;
  margin-bottom: -40px;
}

.deliver-cards-row::-webkit-scrollbar {
  display: none;
  /* Hide Chrome/Safari scrollbar */
}

/* Deliver Card */
.deliver-card {
  width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  will-change: transform, box-shadow;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deliver-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.deliver-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.deliver-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.deliver-card:hover .deliver-card-bg img {
  transform: scale(1.05);
}

.deliver-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.95) 100%);
  z-index: 2;
}

.deliver-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.deliver-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deliver-card-num {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.deliver-card:hover .deliver-card-num {
  color: #ff4d54;
  /* Branding accent */
}

.deliver-card-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.05);
}

.deliver-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliver-card-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.deliver-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Project Detail */
.project {
  padding: 40px 0;
}

.info {
  align-items: flex-start;
  margin-bottom: 70px;
}

.project-heading {
  font-size: 80px !important;
}

.box {
  margin: 0;
}

.label {
  margin: 0 0 8px;
  font-size: 16px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.hero-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.overview-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: #f8fbcb;
  border-radius: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 80px;
}

.overview-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 15px;
  scroll-behavior: smooth;
}

.hero img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.faq-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(460px, 1.4fr);
  gap: 4rem;
  align-items: start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.faq-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 340px;
}

.faq-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-copy {
  line-height: 1.4;
  font-size: 1.2rem;
  color: #151515;
  margin-top: 0;
  font-weight: 600;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid #111;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-question {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-action {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 0.75rem;
  background: #f9d24b;
  color: #111;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #111;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  transition: transform 0.2s ease;
}

.faq-answer {
  margin-top: 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.24s ease,
    max-height 0.24s ease;
  color: #1f1f1f;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
  max-height: 400px;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}


/* ==========================
   Masonry Gallery
========================== */

.gallery {
  padding: 90px 0;
  background: #fff;
}

.container-fluid {
  padding: 0 40px;
}

.grid {
  column-count: 3;
  column-gap: 20px;
}

.grid-item-link {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  break-inside: avoid;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.grid-item-link:hover {
  transform: scale(1.03);
}

.grid-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Different Heights */

.h1 {
  height: 320px;
}

.h2 {
  height: 420px;
}

.h3 {
  height: 740px;
}

.h4 {
  height: 380px;
}

.h5 {
  height: 660px;
}

.h6 {
  height: 340px;
}

.h7 {
  height: 500px;
}

.h8 {
  height: 360px;
}

.h9 {
  height: 740px;
}





/* =========================
       Article Layout
    ========================== */

.article p {
  margin-bottom: 2rem;
}


.article-wrapper {
  margin-bottom: 100px;
}

.drop-cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.75;
  padding-right: 12px;
  font-weight: 700;
}

.about {
  text-transform: uppercase;
  padding-bottom: 2px;
  margin-bottom: 3px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 0;
  font-weight: 400;
}

.metadata-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  display: block;
  margin-bottom: 8px;
}

.category-tag {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 10px;
  text-transform: uppercase;
  margin: 2px 4px 2px 0;
  background: #fff;
}

/* =========================
       Quote Box
    ========================== */

.quote-box {
  background: var(--light-surface);
  padding: 2rem;
  margin-bottom: 2rem;
}

.quote-text {
  font-family: "Source Serif 4", serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

.quote-attribution {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-top: 1rem;
}

/* =========================
       Figure
    ========================== */

.figure-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: 0.7s;
  filter: grayscale(100%);
}

.article-figure:hover .figure-image {
  filter: grayscale(0);
}

.figure-caption {
  border-left: 2px solid var(--border);
  padding-left: 1rem;
  margin-top: 1rem;
  color: var(--secondary);
  font-style: italic;
}

/* =========================
       Animations
    ========================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
       Sidebar Sticky
    ========================== */

.sidebar-sticky {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  padding-right: 12px;
  margin-bottom: 20px;
}





@media (min-width: 1400px) {
  .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1199px) {
  .footer-ctas {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .title {
    font-size: 68px;
  }

  .hero img {
    height: 600px;
  }

  .label {
    font-size: 22px;
  }

  .value {
    font-size: 20px;
    letter-spacing: 1px;
  }
}



/* ==========================
   Mobile (768px)
========================== */

@media (max-width: 767px) {

  .sidebar-sticky {
    position: static;
    top: auto;
    max-height: none;
  }

  .sidebar-sticky .mb-5:first-child {
    display: none;
  }

  .quote-box {
    display: none;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .project,
  .gallery {
    padding: 50px 0;
  }

  .container-fluid {
    padding: 0 20px;
  }

  .info {
    margin-bottom: 40px;
    row-gap: 30px;
  }

  .info>div {
    margin-bottom: 0;
  }

  .title {
    font-size: 42px;
    line-height: 1.1;
  }

  .label {
    font-size: 14px;
  }

  .value {
    font-size: 16px;
  }

  .hero img {
    height: 350px;
    border-radius: 20px;
  }

  .hero-container {
    height: 350px;
  }

  .overview-panel {
    width: 100%;
    height: 100%;
    left: 100%;
    padding: 25px;
    border-radius: 20px;
  }

  .overview-content {
    padding-right: 8px;
  }

  .overview-content h2 {
    font-size: 28px;
  }

  .overview-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .grid {
    column-count: 1;
    column-gap: 0;
  }

  .grid-item-link {
    height: 300px !important;
    margin-bottom: 20px;
    border-radius: 15px;
  }
}

/* ==========================
   Small Mobile (480px)
========================== */

@media (max-width: 480px) {
  .container-fluid {
    padding: 0 15px;
  }

  .project,
  .gallery {
    padding: 40px 0;
  }

  .title {
    font-size: 34px;
  }

  .label {
    font-size: 12px;
  }

  .value {
    font-size: 1p6x;
    line-height: 1.5;
  }

  .hero img {
    height: 350px;
    border-radius: 12px;
  }

  .hero-container {
    height: 350px;
  }

  .overview-panel {
    width: 100%;
    height: 100%;
    left: 100%;
    padding: 18px;
    border-radius: 12px;
  }

  .overview-content h2 {
    font-size: 24px;
  }

  .overview-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .grid-item-link {
    height: 240px !important;
    border-radius: 12px;
  }
}


/* Responsive adjustment for fonts */

@media (max-width: 1499px) {
  .team-grid {
    gap: 20px;
  }

  .hero-section {
    height: 440px;
  }

  .founder-sticky {
    margin-bottom: 150px;
  }

  .bim-hero-heading {
    font-size: 75px;
  }

  .wwa-upper {
    padding: clamp(80px, 8vh, 100px) 0px clamp(16px, 2vh, 32px) 0px;
  }

  .section-sub-heading {
    margin-bottom: 12px;
  }

  .section-heading {
    font-size: clamp(36px, 4.5vw, 64px);
    margin-bottom: clamp(10px, 2vh, 16px);
  }

  .wwa-rule {
    margin-bottom: 20px;
  }

  .wwa-body {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.65;
    margin-bottom: clamp(16px, 3vh, 28px);
  }

  .wwa-img-wrap {
    max-width: 430px !important;
    width: 100% !important;
  }

  .wwa-hscroll-track {
    align-items: flex-end;
  }

  .wwa-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 1399px),
(max-height: 800px) and (min-width: 992px) {
  .wwa-upper {
    padding-top: 80px;
    padding-bottom: 12px;
  }

  .section-heading {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 8px;
  }

  .wwa-body {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .wwa-card-num {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .wwa-card-top-rule {
    margin-bottom: 8px;
  }

  .wwa-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .wwa-card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .wwa-card-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  .wwa-img-wrap {
    max-width: 360px !important;
  }

  .wwa-hscroll-track {
    align-items: flex-end;
  }

  .wwa-card {
    margin-bottom: 16px;
  }

  /* Process section (hub & spoke) adjustments */
  .p-card {
    width: 180px;
  }

  .p-card-inner {
    padding: 1rem 0.9rem 1.1rem;
    border-radius: 14px;
  }

  .p-card-0 {
    left: 20%;
    top: 22%;
  }

  .p-card-1 {
    left: 75%;
    top: 20%;
  }

  .p-card-2 {
    left: 90%;
    top: 48%;
  }

  .p-card-3 {
    left: 75%;
    top: 78%;
  }

  .p-card-4 {
    left: 20%;
    top: 76%;
  }

  .p-card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .p-card-list li {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .p-card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }

  .p-hub {
    width: 150px;
    height: 150px;
  }

  .p-hub-label {
    font-size: 1.2rem;
  }

  .p-hub-sub {
    font-size: 0.8rem;
  }
}


@media (min-width: 1300px) and (max-width: 1499px) {
  .process-header {
    padding: 7rem 2rem 0;
  }

  .p-hub {
    width: 170px;
    height: 170px;
  }

  .p-hub-label {
    font-size: 1.4rem;
  }

  .p-card-0 {
    left: 23%;
    top: 24%;
  }

  .p-card-1 {
    left: 73%;
    top: 20%;
  }

  .p-card-2 {
    left: 89%;
    top: 48%;
  }

  .p-card-3 {
    left: 73%;
    top: 76%;
  }

  .p-card-4 {
    left: 23%;
    top: 72%;
  }
}

@media (max-width: 1399px) {
  .overview-body-text {
    font-size: 18px;
  }

  .overview-large-img-wrap {
    aspect-ratio: 3 / 3 !important;
  }

  .overview-quote-text {
    padding-top: 10px;
  }

  .challenges-header-text {
    font-size: 18px;
  }
}

@media (max-width: 1199.98px) {

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


  .container-fluid {
    padding: 0 20px;
  }

  .project-grid-heading {
    font-size: 44px;
    margin-bottom: 60px;
  }

  .project-card-title {
    font-size: 22px;
  }
}

@media (max-width: 1199.98px) {
  .faq-page {
    padding: 3rem 2.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-copy {
    max-width: 100%;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  .faq-answer {
    font-size: 1.1rem;
  }

  .faq-title {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }
}

@media (max-width: 991.98px) {

  .faq-left {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .bim-hero-sub {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  .bim-hero-heading {
    font-size: 40px;
  }

  .faq-page {
    padding: 2rem 1.5rem;
  }

  .faq-grid {
    gap: 2rem;
  }

  .faq-title {
    font-size: clamp(3.6rem, 14vw, 5rem);
    line-height: 1.05;
  }

  .faq-item {
    row-gap: 0.8rem;
  }

  .faq-copy {
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-action {
    justify-content: flex-end;
  }
}

@media (max-width: 575.98px) {
  .faq-page {
    padding: 1.5rem 1rem;
  }

  .faq-grid {
    gap: 1.5rem;
  }

  .faq-title {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
    letter-spacing: 1px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.8rem;
  }

  .faq-toggle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .faq-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .faq-item {
    padding: 0.75rem 0;
  }

  .faq-action {
    gap: 0.6rem;
  }
}


/* =============================================================
   RESPONSIVE â€“ tablet 768pxâ€“1024px
   KEY FIXES:
   - S1: hide desktop scroll, show swiper with larger text
   - S2: properly sized text
   - S3: hide BOTH desktop AND mobile versions, show tablet layout
   ============================================================= */
@media (min-width: 768px) and (max-width: 1024px) {

  /* â”€â”€ Section 1: disable sticky scroll, show swiper â”€â”€ */
  .wb-wrap {
    height: auto;
  }

  .wb-section {
    height: auto;
    /* min-height: unset; */
    overflow: visible;
    display: block;
    position: static;
  }

  .wb-header {
    padding: 28px 2rem 18px;
  }

  .wb-heading {
    font-size: 44px;
  }

  .wb-eyebrow {
    font-size: 20px;
  }

  .wb-block-num {
    font-size: 18px;
  }

  /* .wb-block-title {
    font-size: 80px;
  } */

  /* .wb-features li {
    font-size: 48px;
  } */

  .wb-scrolly-area {
    display: none;
  }

  .wb-mobile-slider {
    display: block;
    width: 100%;
    padding-bottom: 52px;
  }

  .wb-swiper {
    width: 100%;
    padding-bottom: 44px !important;
  }

  .wb-swiper .swiper-slide {
    padding: 0 2rem;
  }

  .wb-slide-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #e8e5df;
  }

  .wb-slide-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
  }

  .wb-slide-content .wb-block-header {
    grid-template-columns: 2.5rem 1fr;
  }

  .wb-slide-content .wb-block-title {
    font-size: calc(26px + 8 * ((100vw - 768px) / 256));
  }

  .wb-slide-content .wb-features {
    padding-left: 0;
  }

  .wb-slide-content .wb-features li {
    font-size: calc(18px + 2 * ((100vw - 768px) / 256));
  }

  .wb-swiper .swiper-pagination {
    bottom: 8px;
  }

  .wb-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
    transition: background 0.25s, transform 0.25s;
  }

  .wb-swiper .swiper-pagination-bullet-active {
    background: var(--ink);
    transform: scale(1.35);
  }
}

@media (min-width: 1025px) {
  .vm-mission {
    position: absolute;
    top: 140px;
    left: 5%;
    max-width: 360px;
  }

  .vm-vision {
    position: absolute;
    bottom: 8%;
    right: 5%;
    max-width: 360px;
    text-align: right;
  }

  .vm-vision .vm-divider {
    margin-left: auto;
  }

  .vm-heading {
    font-size: clamp(28px, 3.8vw, 42px);
  }

  .vm-body {
    font-size: clamp(14px, 1.3vw, 16px);
  }
}

@media (max-width: 991.98px) {
  #projects-scroll-section .project-subtitle {
    font-size: 18px;
  }

  #projects-scroll-section .project-title {
    font-size: 36px;
  }

  .deliver-card {
    width: 320px;
    aspect-ratio: 4 / 5;
    border-radius: 30px;
  }

  .deliver-card-content {
    padding: 30px;
  }

  .values-scroll-wrap {
    height: auto !important;
  }

  .values-scroll-wrap .values-section {
    position: static !important;
    height: auto !important;
    padding-top: 0px;
    padding-bottom: 20px;
    background-color: transparent;
  }

  .value-header-btn {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .value-header-btn::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #888580;
    border-bottom: 2px solid #888580;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-right: 8px;
    flex-shrink: 0;
  }

  .value-item.active .value-header-btn::after {
    transform: rotate(-135deg);
    border-color: var(--light-primary);
  }

  .value-content-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }

  .value-title {
    font-size: 32px;
    text-align: left;
  }

  .value-image-wrap {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .value-description {
    font-size: 14px;
    text-align: left;
  }

  #projects-scroll-section .texts {
    padding: 8vw;
  }

  #projects-scroll-section .txt {
    width: 90vw;
  }

  #projects-scroll-section .project-desc {
    max-width: 90% !important;
    font-size: 16px;
  }

  #projects-scroll-section .progress-bar {
    padding: 6vw;
  }

  .stacking-cards-wrapper {
    padding: 20px 0 40px;
  }

  /* Keep sticky stacking on tablet â€” just compact the card */
  .stacking-card {
    position: sticky;
    height: clamp(320px, 55vw, 480px);
    min-height: unset;
    margin-bottom: 60px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  #pmc-card-1 {
    top: 80px;
  }

  #pmc-card-2 {
    top: 96px;
  }

  #pmc-card-3 {
    top: 112px;
  }

  .stacking-card-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
    width: calc(100% - 24px);
    margin: 12px;
  }

  .stacking-card-title {
    flex: none;
    width: 100%;
    font-size: 28px;
  }

  .stacking-card-metadata {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px 16px;
    justify-content: flex-start;
  }

  .metadata-col {
    max-width: 48%;
    gap: 2px;
  }

  .metadata-label {
    font-size: 10px;
  }

  .metadata-value {
    font-size: 12px;
  }

  .footer-card {
    border-radius: 40px 40px 0 0;
    padding: 60px 30px 30px;
  }

  .about-pmc {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-pmc-header-row {
    margin-bottom: 40px;
  }

  .about-pmc-image {
    margin-top: 30px;
    max-height: 450px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 80px 100%, 0 calc(100% - 80px));
  }

  .about-pmc-card {
    padding: 30px 24px;
    margin-bottom: 20px;
  }

  .overview-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  }

  .overview-gallery-row {
    margin-top: 10px;
  }

  .overview-large-img-wrap {
    aspect-ratio: 16 / 9;
    border-radius: 24px;
  }

  .overview-sm-img-wrap {
    border-radius: 20px;
  }

  .overview-quote-text {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  }

  .service-card-container {
    padding: 0;
  }

  .service-card-container .row {
    padding: 40px 0;
  }

  .service-card-container .border-line,
  .service-card-container .border-line-vertical {
    display: block;
  }

  /* On mobile the layout is vertical, so instantly show borders at full scale */
  .service-card-container .border-line {
    transform: scaleX(1);
  }

  .service-card-container .border-line-vertical {
    transform: scaleY(1);
    display: none;
    /* hide vertical divider â€” no left/right split on mobile */
  }

  .service-card-container .image-column,
  .service-card-container .image-column.order-lg-2 {
    padding: 0 0 30px 0;
  }

  .service-card-container .image-wrapper {
    height: 350px;
  }

  .service-card-container .content-column,
  .service-card-container .content-column.order-lg-1 {
    padding: 0;
  }

  .vm-heading {
    font-weight: 400;
  }

  .service-card-container .icon-box {
    width: 30px;
    height: 30px;
  }

  .service-card-container .section-title {
    font-size: 25px;
  }

  .service-card-container .lead-text {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .service-card-container .bullet-list li {
    margin-bottom: 18px;
  }

  .p-card.card-on {
    transform: unset !important;
  }

  .home-service-section .service-head-description {
    font-size: 18px;
    text-align: justify;
    font-weight: 400;
  }

  .home-service-section .heading-container {
    text-align: left;
  }

  .wwa-card {
    margin-bottom: 0;
  }

  .wwa-card-desc {
    max-width: 100%;
    font-size: 14px;
  }

  .wwa-img-wrap {
    width: 100% !important;
    aspect-ratio: 16 / 10;
  }

  .hero-section {
    height: 220px;
  }

  .hero-section-heading {
    font-size: 40px;
    margin-top: 60px;
  }

  .blog-grid-container {
    max-width: 100%;
  }

  .wf-slide-left {
    flex: 0 0 clamp(120px, 18vw, 200px);
    padding: 28px 20px;
  }

  .wf-slide-right {
    padding: 36px 32px;
  }

  .wf-slide-icon-ring {
    width: 56px;
    height: 56px;
  }

  .wf-slide-icon-ring svg {
    width: 26px;
    height: 26px;
  }

  .bim-header {
    padding: 16px 24px;
  }

  .why-us-title-left {
    padding-right: clamp(78px, 10vw, 120px);
  }

  .why-us-title-right {
    padding-left: clamp(78px, 10vw, 120px);
  }

  .why-us-image {
    width: clamp(70px, 9vw, 120px);
    height: clamp(96px, 12vw, 165px);
  }

  .bim-cta-band {
    padding: 64px 24px;
  }

  .bim-footer {
    padding: 40px 0px 0px;
  }

  .footer-ctas {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-brand-mark img {
    width: 100px;
  }

  .footer-brand-mark {
    padding: 10px;
    width: 160px;
    height: 80px;
  }

  .primary-btn {
    width: fit-content;
  }

  .primary-btn-outline {
    width: fit-content;
  }

  :root {
    --container-margin: 24px;
  }

  .split-layout {
    display: block;
    height: auto;
    overflow-y: auto;
  }

  .split-side {
    display: block;
    width: 100% !important;
    height: 100vh;
  }

  .heading-side-dark,
  .heading-side-light {
    font-size: 48px;
  }

  .side-header-content {
    padding: 80px 24px 40px;
    max-width: 100%;
  }

  .site-footer {
    position: relative;
    padding: 16px 24px;
  }

  .site-header-light {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-pill {
    justify-content: space-between;
  }

  .nav-pill-wrapper {
    width: 100%;
  }

  /* Under lg breakpoint, the pill stays compact and does not expand horizontally.
     We will trigger the offcanvas menu on click. */
  .nav-pill {
    max-width: 100% !important;
    /* Keep it compact */
    padding-right: 14px;
  }

  /* Disable horizontal slide-in content on mobile */
  .nav-pill-content {
    display: none !important;
  }

  .nav-pill-close {
    display: none !important;
  }

  .nav-pill-toggle {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    width: auto !important;
    padding: 6px 14px !important;
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
  }

  /* Polish the Mobile Offcanvas Menu content */
  .bim-offcanvas {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }

  .bim-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
  }

  .bim-offcanvas .offcanvas-body {
    padding: 24px;
  }

  /* Style mobile accordions/collapses */
  .offcanvas-dropdown-wrapper {
    margin: 10px 0;
  }

  .offcanvas-dropdown-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--light-on-surface-variant);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-outline-variant);
    cursor: pointer;
  }

  .offcanvas-dropdown-btn .arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
  }

  .offcanvas-dropdown-btn:not(.collapsed) .arrow {
    transform: rotate(180deg);
  }

  .offcanvas-dropdown-list {
    list-style: none;
    padding-left: 16px;
    margin: 4px 0 12px 0;
  }

  .offcanvas-dropdown-item {
    display: block;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--light-on-surface-variant);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: color 0.3s;
  }

  .offcanvas-dropdown-item:hover {
    color: var(--light-primary);
  }



  .wwa-section {
    height: auto;
  }

  .wwa-upper {
    /* padding: clamp(100px, 12vw, 120px) var(--container-margin) clamp(24px, 4vw, 40px); */
  }

  .wwa-upper-inner {
    flex-direction: column;
    gap: 32px;
  }

  .wwa-left {
    flex: none;
    max-width: 100%;
  }

  .section-heading {
    font-size: clamp(36px, 6vw, 48px);
    margin-bottom: 16px;
  }

  .wwa-body {
    max-width: 100%;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.65;
    margin-bottom: clamp(20px, 4vw, 32px);
  }

  .wwa-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 32px var(--container-margin);
    display: none !important;
  }

  /* On tablet/mobile the horizontal section becomes a normal vertical stack */
  .wwa-hscroll-spacer {
    height: auto;
  }

  .wwa-hscroll-pin {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .wwa-hscroll-track {
    flex-direction: column;
    width: 100%;
    padding: 0px var(--container-margin);
    gap: 0;
  }

  .wwa-card {
    flex: none;
    width: 100%;
    padding: 32px 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
    align-items: flex-start;
  }

  .wwa-card+.wwa-card::before {
    display: none;
  }

  .wwa-card-cta,
  .wwa-card-rule {
    display: none;
  }

  .wwa-step-dots,
  .wwa-scroll-hint,
  .wwa-progress-bar {
    display: none;
  }

  .headline-main {
    font-size: 4.5rem;
    line-height: 1.2;
  }

  .heading-content {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .workspace-title,
  .connect-title {
    font-size: 2rem;
  }

  .workspace-address {
    font-size: 1.5rem;
  }

  .connect-list {
    font-size: 1.5rem;
  }

  .form-title {
    font-size: 1.9rem;
  }

  .contact-label {
    font-size: 1rem;
  }

  aside {
    margin-top: 2rem;
  }
}



/* =========================
   TABLETS (768px)
========================= */
@media (max-width: 767.98px) {


  .nav-pill-wrapper {
    width: 100%;
  }

  .about-us-section .service-head-description {
    width: 100%;
  }

  .process-scroll-spacer {
    height: auto;
  }

  .process-stage {
    /* position: relative; */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem 3rem;
    gap: 1.5rem;
    /* background: #F5F6F8; */
  }

  .process-svg {
    display: none;
  }

  .p-hub {
    position: relative;
    left: auto;
    top: auto;
    transform: scale(1) !important;
    margin-bottom: 0.5rem;
    width: 180px;
    height: 180px;
  }

  .p-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;

    opacity: 1 !important;
    transform: none !important;
  }

  .p-card-inner {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
  }

  .p-card.card-on .p-card-inner {
    border-color: rgba(193, 39, 45, 0.25);
    box-shadow:
      0 0 20px rgba(193, 39, 45, 0.1),
      0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .p-card:hover .p-card-inner {
    transform: translateY(-3px);
    box-shadow:
      0 0 24px rgba(193, 39, 45, 0.14),
      0 12px 36px rgba(0, 0, 0, 0.12);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-card {
    border-radius: 20px;
  }

  .team-card-image-wrap {
    border-radius: 20px;
  }

  .team-card-info {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .team-card-name {
    font-size: 16px;
  }

  .team-card-role {
    font-size: 12px;
  }

  .about-content-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Section 1 */
  .wb-wrap {
    height: auto;
  }

  .wb-section {
    height: auto;
    min-height: unset;
    overflow: visible;
    display: block;
    position: static;
  }

  .wb-header {
    padding: 24px 1.25rem 16px;
  }

  .wb-scrolly-area {
    display: none;
  }

  .wb-mobile-slider {
    display: block;
    width: 100%;
    padding-bottom: 52px;
  }

  .wb-swiper {
    width: 100%;
    padding-bottom: 44px !important;
  }

  .wb-swiper .swiper-slide {
    padding: 0 1.25rem;
  }

  .wb-slide-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #e8e5df;
  }

  .wb-slide-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .wb-slide-content .wb-features {
    padding-left: 0;
  }

  .wb-slide-content .wb-block-title {
    font-size: 20px;
  }

  .wb-slide-content .wb-features li {
    font-size: 13px;
  }

  .wb-swiper .swiper-pagination {
    bottom: 8px;
  }

  .wb-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
    transition: background 0.25s, transform 0.25s;
  }

  .wb-swiper .swiper-pagination-bullet-active {
    background: var(--ink);
    transform: scale(1.35);
  }

  .bim-3d-panel {
    justify-content: center !important;
  }

  .bim-3d-card {
    transform: translateY(28px) !important;
    text-align: center;
  }

  .bim-3d-card.is-visible,
  .bim-3d-card--visible {
    transform: translateY(0) !important;
  }

  .bim-3d-card-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .bim-3d-dots {
    display: none;
  }

  .bim-3d-feature-list li {
    justify-content: center;
  }

  .why-us-word-why,
  .why-us-word-aariha {
    font-size: clamp(52px, 16vw, 80px);
  }

  .why-us-title-row {
    height: clamp(80px, 20vw, 120px);
  }

  .why-us-title-left {
    padding-right: clamp(30px, 12vw, 90px);
  }

  .why-us-title-right {
    padding-left: clamp(30px, 12vw, 90px);
  }

  .why-us-image-wrap {
    top: 50% !important;
  }

  .why-us-image {
    width: clamp(85px, 18vw, 130px);
    height: clamp(115px, 24vw, 175px);
    border-radius: 16px;
  }

  .why-us-sub {
    margin-top: clamp(65px, 14vw, 95px);
  }

  .bim-hero-img {
    height: 320px;
  }

  .vm-mission {
    position: absolute;
    top: 100px;
    left: 5%;
    right: 5%;
    max-width: 100%;
    text-align: left;
  }

  .vm-vision {
    position: absolute;
    bottom: 4%;
    left: 5%;
    right: 5%;
    max-width: 100%;
    text-align: left;
  }

  .vm-vision .vm-divider {
    margin-left: 0;
  }

  .vm-heading {
    font-size: clamp(20px, 6vw, 28px);
  }

  .vm-body {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.55;
  }

  .vm-tag {
    font-size: 10px;
  }

  .hero-section {
    height: 370px;
  }

  .hero-section-heading {
    font-size: 32px;
    margin-top: 56px;
  }

  /* On mobile all cards use standard small height */
  .blog-card--featured .blog-card-img--featured,
  .blog-card--lg .blog-card-img--lg {
    height: 200px;
  }

  .project-grid-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .project-card {
    margin-bottom: 50px;
  }

  main.container-fluid {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .headline-main {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .heading-content {
    font-size: 0.95rem;
  }

  .heading-content p {
    line-height: 1;
  }

  .heading-content p br {
    display: none;
  }

  .workspace-title,
  .connect-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .workspace-address {
    font-size: 1rem;
    line-height: 1.6;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .map-iframe {
    height: 320px;
  }

  .contact-btn {
    width: 100%;
    padding: 1rem;
  }

  .animated-svg {
    opacity: 0.4;
  }
}

@media (max-width: 575.98px) {

  .drop-cap::first-letter {
    font-size: 3.5rem;
    padding-right: 8px;
  }

  .quote-box {
    display: none;
  }

  .sidebar-sticky {
    position: static;
    top: auto;
    max-height: none;
  }

  .sidebar-sticky .mb-5:first-child {
    display: none;
  }

  .section-title,
  .display-5 {
    font-size: 2rem !important;
  }

  .card-title,
  .article-card h4 {
    font-size: 1.25rem;
  }

  .figure-caption {
    font-size: 13px;
  }

  .row.g-5 {
    gap: 1.2rem;
  }

  .deliver-card {
    width: 280px;
    aspect-ratio: auto;
    height: 350px;
  }

  .hero-section-heading {
    font-size: 28px;
  }

  .blog-card--sm .blog-card-img {
    height: 200px;
  }

  /* On mobile stack instead of horizontal scroll */
  .wf-spacer {
    height: auto;
  }

  .wf-pin {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .wf-strip {
    width: 100%;
    flex-direction: column;
    height: auto;
  }

  .wf-slide {
    width: 100%;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    padding: 120px 20px 80px;
  }

  .wf-slide-left {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-height: none;
    padding: 24px 20px;
    border-radius: 4px 4px 0 0;
    border-right: 1px solid rgba(229, 196, 135, 0.1);
    border-bottom: none;
    gap: 20px;
  }

  .wf-slide-right {
    width: 100%;
    max-height: none;
    padding: 28px 20px;
    border-radius: 0 0 4px 4px;
    border-top: none;
  }

  .wf-slide-num {
    margin-bottom: 0;
    font-size: 48px;
  }

  .wf-slide-icon-ring {
    margin-bottom: 0;
    width: 52px;
    height: 52px;
  }

  .wf-slide-stage {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 0;
    margin-left: auto;
  }

  .wf-header-overlay,
  .wf-progressbar-wrap,
  .wf-steps-nav,
  .wf-scroll-hint {
    display: none;
  }

  .why-us-description {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .btn-bim-cta {
    padding: 14px 32px;
  }

  .bim-section-heading {
    font-size: clamp(36px, 10vw, 56px);
  }

  .heading-side-dark,
  .heading-side-light {
    font-size: 40px;
  }

  .btn-explore {
    padding: 14px 28px;
  }

  .wwa-upper {
    /* padding: 96px 24px 32px; */
  }

  .wwa-divider {
    margin: 24px var(--container-margin);
  }

  .section-heading {
    font-size: clamp(32px, 8vw, 36px);
  }

  .headline-main {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .heading-content {
    font-size: 0.95rem;
  }

  .heading-content p br {
    display: none;
  }

  .workspace-address {
    font-size: 0.95rem;
  }

  .map-iframe {
    height: 250px;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .contact-label {
    font-size: 0.7rem;
  }

  .contact-input {
    font-size: 0.95rem;
  }

  .contact-btn {
    font-size: 0.9rem;
  }

  .shape-line {
    stroke-width: 1;
  }
}


@media (max-width: 480px) {
  .founder-mobile-header {
    padding: 36px 20px 24px;
  }

  .fcm-identity {
    padding: 20px 0;
  }

  .fcm-bio {
    padding: 16px 0px 36px;
  }

  .fcm-divider {
    margin: 0 20px 32px;
  }

  .fcm-image img {
    aspect-ratio: 4 / 5;
  }
}



@media (min-width: 992px) and (max-width: 1024px) {
  .headline-main {
    font-size: 3.8rem;
    line-height: 1.2;
  }

  .heading-content {
    font-size: 1.7rem;
    max-width: 100%;
    line-height: 1.5;
  }

  /* .heading-content p {
          line-height: 1.3;
          font-size: 1.5rem;
        } */

  .workspace-title,
  .connect-title {
    font-size: 2rem;
  }

  .workspace-address {
    font-size: 1.4rem;
  }

  .connect-list {
    font-size: 1.4rem;
  }

  .form-title {
    font-size: 2.8rem;
  }

  .contact-label {
    font-size: 1.5rem;
  }

  .contact-input::placeholder {
    font-size: 1.2rem;
  }

  .map-iframe {
    height: 560px;
  }

  .contact-btn {
    padding: 0.8rem 2rem;
    font-size: 1.5rem;
  }

  /* Yellow background SVG */
  .animated-svg {
    transform: scale(1.1);
  }

  .shape-line {
    stroke-width: 1.5;
  }
}


/* --- MOBILE: static vertical stack --- */
@media (max-width: 767px) {}

/* â”€â”€â”€ TABLET â”€â”€â”€ */
@media (min-width: 768px) and (max-width: 1023px) {
  .p-hub {
    width: 150px;
    height: 150px;
  }

  .p-card {
    width: 160px;
  }
}







@media screen and (max-width: 575px) {
  .overview-heading {
    font-size: 2.4rem;
  }

  .overview-large-img-wrap {
    border-radius: 16px;
  }

  .overview-sm-img-wrap {
    border-radius: 14px;
  }

  #projects-scroll-section .texts {
    padding: 10vw 6vw;
  }

  #projects-scroll-section .project-desc {
    max-width: 100%;
    margin-bottom: 25px;
  }

  #projects-scroll-section .project-title {
    margin-bottom: 10px;
  }

  #projects-scroll-section .project-subtitle {
    margin-bottom: 15px;
  }

  /* Phone: stack cards are smaller and tighter */
  .stacking-card {

    margin-bottom: 50px;
    border-radius: 18px;
  }

  #pmc-card-1 {
    top: 60px;
  }

  #pmc-card-2 {
    top: 72px;
  }

  #pmc-card-3 {
    top: 84px;
  }

  .stacking-card-bar {
    padding: 12px 14px;
    gap: 8px;
    margin: 8px;
    border-radius: 14px;
  }



  .stacking-card-metadata {

    gap: 16px;
  }

  .metadata-col {
    max-width: 100%;
  }

  /* .metadata-label {
    font-size: 9px;
  } */

  .metadata-value {
    font-size: 11px;
  }
}



@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card-info {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 14px 18px;
  }

  .team-card-name {
    font-size: 18px;
  }

  .team-card-role {
    font-size: 13px;
  }
}





/* =============================================================
   CUSTOM BLACK DOT CURSOR (PMC & BIM)
   ============================================================= */
@media (hover: hover) {

  /* Hide the native cursor globally */
  html,
  body,
  a,
  button,
  [role="button"],
  input,
  select,
  textarea,
  .team-card,
  .nav-pill-toggle,
  .nav-pill-logo {
    cursor: none !important;
  }

  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1), height 0.25s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s ease, border 0.25s ease;
    will-change: left, top, width, height;
  }

  /* Magnifying lens text hover effect */
  .custom-cursor-dot.cursor-hover {
    width: 34px;
    height: 34px;
    background-color: transparent;
    border: 1.5px solid #ffffff;
  }
}

/* Responsive adjustment for Challenges Section */
@media screen and (max-width: 991px) {

  .stacking-card {
    height: 500px;
  }

  .section-padding-bottom {
    padding-bottom: 40px;
  }

  .challenges-section {
    min-height: auto;
    display: block;
  }

  .challenge-card {
    padding: 30px 35px;
    min-height: auto;
    border-radius: 40px;
  }

  .challenge-card-info {
    padding-left: 110px;
  }
}

@media screen and (max-width: 575px) {
  .challenge-card {
    border-radius: 32px;
    padding: 24px 28px;
  }

  .challenge-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .challenge-card-num {
    position: static;
    transform: none;
    font-size: 64px;
    margin-bottom: 8px;
  }

  .challenge-card:hover .challenge-card-num {
    transform: scale(1.03);
  }

  .challenge-card-info {
    padding-left: 0;
  }
}

/* =============================================================
   PROCESS PAGE â€” PREMIUM SCROLL-DRIVEN TIMELINE
   ============================================================= */

/* Main outer wrapper for process section */
.process-timeline-section {
  /* background-color: #f4f3f1; */
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Pinned frame */
.process-timeline-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background effects: drafting grid, noise texture, vignettes */
.process-timeline-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.process-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.process-bg-paper {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.process-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 30%, rgba(244, 243, 241, 0.6) 100%);
}

/* Progress counter in top-right */
.process-global-counter {
  position: absolute;
  top: 70px;
  right: 60px;
  z-index: 10;
  font-family: var(--font-heading), serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-global-counter .counter-num {
  color: var(--light-primary);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.process-global-counter .counter-sep {
  color: rgba(26, 26, 26, 0.2);
}

.process-global-counter .counter-total {
  color: rgba(26, 26, 26, 0.4);
}

.page-bim-process .process-slides-wrapper {
  height: 640% !important;
  /* 8 slides * 80% = 640% */
}

.page-pmc-process .process-slides-wrapper {
  height: 400% !important;
  /* 5 slides * 80% = 400% */
}

/* Vertical slides wrapper */
.process-slides-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  will-change: transform;
}

/* Timeline SVG container */
.process-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.process-svg-container svg {
  display: block;
}

/* SVG Line Paths */
.timeline-guide-path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.06);
  stroke-width: 2px;
}

.timeline-active-path {
  fill: none;
  stroke: var(--light-primary);
  stroke-width: 2px;
  stroke-linecap: square;
  opacity: 0.85;
}

/* Standard Process Slide layout */
.process-slide {
  height: 80vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-sizing: border-box;
}

/* Left panel text styles */
.process-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-group {
  opacity: 0;
  transform: translateY(30px);
}

.info-label {
  font-family: var(--font-heading), serif;
  font-size: 1.1rem;
  color: var(--light-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.info-text {
  font-family: var(--font-body), sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Right Card styles */
.process-timeline-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  perspective: 1000px;
}

.process-card-content {
  background: #ffffff;
  border: 1px solid rgba(184, 157, 114, 0.3);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  transform: rotateX(4deg) rotateY(-4deg);
  transform-style: preserve-3d;
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.process-timeline-card:hover .process-card-content {
  box-shadow: 0 20px 40px rgba(184, 157, 114, 0.1);
  border-color: rgba(184, 157, 114, 0.4);
}

/* Circle Node along Timeline */
.node-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  background-color: #fcfcfc;
  /* White/off-white background as requested by user */
  border: 2px solid var(--light-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translate(-50%, -50%) scale(0.9);
  top: 50%;
  opacity: 0.35;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}

/* Adjust circle node left/right positions based on layout */
.process-slide[data-slide-index="1"] .node-circle,
.process-slide[data-slide-index="3"] .node-circle,
.process-slide[data-slide-index="5"] .node-circle,
.process-slide[data-slide-index="7"] .node-circle {
  left: 100%;
  /* Align with right border of right-hand card */
}

.process-slide[data-slide-index="2"] .node-circle,
.process-slide[data-slide-index="4"] .node-circle,
.process-slide[data-slide-index="6"] .node-circle,
.process-slide[data-slide-index="8"] .node-circle {
  left: 0;
  /* Align with left border of left-hand card */
}

/* Active node state */
.node-circle.node-active {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
  background-color: #ffffff;
  /* Bright white when active */
  box-shadow: 0 0 20px rgba(184, 157, 114, 0.4);
}

.node-num {
  font-family: var(--font-heading), serif;
  font-size: 1.4rem;
  color: #050505;
  /* Black text for high contrast against white background */
  font-weight: 700;
}

/* Technical illustrations in cards */
.process-card-illustration {
  height: 120px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  color: rgba(26, 26, 26, 0.3);
  opacity: 0;
  transform: scale(0.85) rotate(2deg);
  will-change: transform, opacity;
  transition: color 0.4s ease;
}

.process-card-illustration img {
  border-radius: 20px;
}

.process-timeline-card:hover .process-card-illustration {
  color: rgba(184, 157, 114, 0.7);
}

.process-card-illustration svg {
  max-height: 100%;
}

.process-card-title {
  font-family: var(--font-heading), serif;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.process-card-desc {
  font-family: var(--font-body), sans-serif;
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Large Screens Card Sizing Adjustments */
@media (min-width: 1500px) {
  .process-timeline-card {
    max-width: 720px;
  }

  .process-timeline-section .container {
    max-width: 1520px;
  }

  .process-card-content {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-card-illustration {
    height: 230px;
    margin-bottom: 32px;
  }

  .process-card-title {
    font-size: 2.5rem;
  }

  .process-card-desc {
    font-size: 1.15rem;
  }

  .info-label {
    font-size: 1.25rem;
  }

  .info-text {
    font-size: 1.15rem;
  }
}


@media(min-width:992px) and (max-width:1200px) {



  .drop-cap::first-letter {
    float: left;
    font-family: "Source Serif 4", serif;
    font-size: 6rem;
    line-height: 0.75;
    padding-right: 12px;
    font-weight: 700;
  }

  .about {
    text-transform: uppercase;
    padding-bottom: 2px;
    margin-bottom: 3px;
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 400;
  }

  .metadata-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
  }

  .category-tag {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 2px 4px 2px 0;
    background: #fff;
  }

  .quote-box {
    background: var(--surface);
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .quote-text {
    font-family: "Source Serif 4", serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
  }

  .quote-attribution {
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-top: 1rem;
  }

  .figure-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 0.7s;
    filter: grayscale(100%);
  }

  .article-figure:hover .figure-image {
    filter: grayscale(0);
  }

  .figure-caption {
    border-left: 2px solid var(--border);
    padding-left: 1rem;
    margin-top: 1rem;
    color: var(--secondary);
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
}

/* Responsive Overrides (Mobile stack) */
@media (max-width: 991px) {

  .bim-hero-heading {
    font-size: 46px;
  }

  .bim-hero-content {
    padding: 100px 16px;
  }

  .project,
  .gallery {
    padding: 70px 0;
  }

  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .info {
    row-gap: 40px;
    margin-bottom: 50px;
  }

  .title {
    font-size: 56px;
  }

  .hero img {
    height: 500px;
  }

  .hero-container {
    height: 500px;
  }

  .overview-panel {
    width: 100%;
    height: 100%;
    left: 100%;
    padding: 40px;
    border-radius: 20px;
  }

  .overview-content {
    padding-right: 10px;
  }

  .grid {
    column-count: 2;
    column-gap: 20px;
  }

  .h1 {
    height: 260px;
  }

  .h2 {
    height: 340px;
  }

  .h3 {
    height: 500px;
  }

  .h4 {
    height: 300px;
  }

  .h5 {
    height: 450px;
  }

  .h6 {
    height: 280px;
  }

  .h7 {
    height: 380px;
  }

  .h8 {
    height: 300px;
  }

  .h9 {
    height: 500px;
  }

  .sidebar-sticky {
    position: static;
    top: auto;
    max-height: none;
  }

  .sidebar-sticky .mb-5:first-child {
    display: none;
  }

  .quote-box {
    display: none;
  }

  .section-title {
    font-size: 2.8rem;
  }

  /* Article Layout */
  .article-wrapper {
    padding: 2rem 0;
  }





  .figure-caption {
    font-size: 1.2rem;
  }

  .metadata-label {
    font-size: 12px;
    margin-bottom: 0;
  }

  .article-figure {
    margin: 3rem 0;
  }

  .primary-btn .arrow,
  .primary-btn-outline .arrow {
    padding: 6px;
  }

  .primary-btn-outline {
    font-size: 12px;
  }

  .primary-btn .arrow img,
  .primary-btn-outline .arrow img {
    width: 14px;
    height: 14px;
  }

  .client-card {
    height: 140px;
  }

  .process-timeline-pin {
    height: auto;
    overflow: visible;
  }

  .process-slides-wrapper {
    position: static;
    height: auto !important;
  }

  .process-slide {
    height: auto;
    min-height: auto;
    padding: 80px 0;
    overflow: visible;
  }

  .process-svg-container {
    display: none;
    /* Hide interactive timeline on mobile */
  }

  .process-timeline-card {
    max-width: 100%;
    margin-top: 28px;
    margin-bottom: 40px;
  }

  .process-card-content {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(184, 157, 114, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }

  .process-card-illustration {
    opacity: 1 !important;
    transform: none !important;
    height: 100px;
  }

  .process-slide .node-circle {
    display: flex;
    position: absolute;
    width: 56px;
    height: 56px;
    top: 0;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(184, 157, 114, 0.2);
  }

  .process-slide .node-circle .node-num {
    font-size: 1.15rem;
  }

  .process-info-panel {
    gap: 24px;
  }

  .info-group {
    opacity: 1 !important;
    transform: none !important;
  }

  .process-global-counter {
    display: none;
  }
}

/* Premium Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f3f1;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.preloader-logo-wrap {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
}

.preloader-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.preloader-text-wrap {
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
  transform: translateY(100%);
  opacity: 0;
}

.preloader-progress-bars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.preloader-bar {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.preloader-bar::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(26, 26, 26, 0.04);
  /* Faint guide track */
}

.preloader-bar-fill {
  width: 2px;
  /* Elegant thin line width */
  height: 100%;
  background-color: #B89D72;
  /* Accent gold color */
  transform: scaleY(0);
  transform-origin: bottom;
  will-change: transform;
}