/* SANJARI PROPERTIES — Archi Green Style Clone */

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

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
  scroll-behavior: auto !important;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  html, body { overscroll-behavior: none; }
}

* { transition-duration: 0s !important; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.hide-mobile { display: none !important; }
@media (min-width: 1024px) {
  .hide-mobile { display: flex !important; }
  .hide-mobile img { display: block; }
}

.transitionWrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 9999999;
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.transitionContainer1, .transitionContainer2 {
  position: absolute;
  width: 100%; height: 100%;
  opacity: 1;
}
.transitionContainer1 { background-color: #000000AF; }
.transitionContainer2 { background-color: #000000; }

.cursorWrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 99999;
}
.cursorOuter {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid #051302;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
}
.cursorInner {
  position: fixed;
  width: 8px; height: 8px;
  background-color: #051302;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  scale: 0.2;
}

.offcanvasWrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 99998;
  display: none;
}
.offWrap {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #051302 0%, #0a2a05 50%, #051302 100%);
  opacity: 0;
  scale: 0;
}
.offInnerWrap {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
}
.offTextCont { display: flex; flex-direction: column; gap: 24px; z-index: 2; }
.offText {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #F5F5F5;
}
.offText h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.lucide-diamond-icon { width: 24px; height: 24px; flex-shrink: 0; }
.offImagesCont {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 500px;
}
.offImages {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  border-radius: 4px;
}
.closeOff {
  position: absolute;
  top: 40px; right: 40px;
  color: #F5F5F5;
  z-index: 3;
  width: 40px; height: 40px;
}
.closeOff svg { width: 100%; height: 100%; }

.headerTop {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 40px;
  opacity: 0;
}
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; line-height: 1; }
.logoImg { height: 40px; width: auto; }

.expertiseIntro {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}
.serviceTag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.sectionInnerCompact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.expertiseSection {
  background: #F5F5F5;
}
.expertiseGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .expertiseGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .expertiseGrid { grid-template-columns: repeat(3, 1fr); }
}
.expertiseCard {
  background: #FFF;
  border: 1px solid rgba(5, 19, 2, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.expertiseCard[open] {
  border-color: rgba(0, 200, 83, 0.35);
  box-shadow: 0 8px 24px rgba(5, 19, 2, 0.06);
}
.expertiseCard summary {
  list-style: none;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}
.expertiseCard summary::-webkit-details-marker { display: none; }
.expertiseCard summary img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}
.expertiseCardMeta strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #051302;
  line-height: 1.3;
}
.expertiseChevron {
  font-size: 0.75rem;
  color: #888;
  transition: transform 0.35s ease !important;
}
.expertiseCard[open] .expertiseChevron {
  transform: rotate(180deg);
  color: #00C853;
}
.expertiseCard p {
  padding: 0 16px 16px 94px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}
@media (max-width: 480px) {
  .expertiseCard p { padding-left: 16px; padding-top: 0; }
}

.portfolioMarqueeWrap {
  display: none;
}
.portfolioMobileStack {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: none;
}
.mobileProjectCard {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px;
  background: #FFF;
  border: 1px solid rgba(5, 19, 2, 0.07);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(5, 19, 2, 0.08);
  transform: translateZ(0);
}
.mobileProjectImage {
  flex: 0 0 68%;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #EEE;
  position: relative;
}
.mobileProjectImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mobileProjectInfo {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 10px 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobileProjectInfo .projectTag {
  margin-bottom: 2px;
}
.mobileProjectInfo .projectNum {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: #DDD;
  line-height: 1;
  margin: 4px 0 2px;
}
.mobileProjectInfo h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #051302;
  margin-bottom: 4px;
  line-height: 1.2;
}
.mobileProjectInfo p {
  color: #666;
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mobileProjectInfo .projectMeta {
  font-size: 0.72rem;
  color: #888;
  display: inline;
  margin-bottom: 0;
  margin-right: 8px;
}
.mobileProjectInfo .projectMeta + .projectMeta::before {
  content: '· ';
  margin-right: 4px;
  color: #CCC;
}
@media (min-width: 1024px) {
  .portfolioMobileStack { display: none !important; }
}

.brochureDesc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.contactActions { margin-top: 40px; }

.modalOverlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(5, 19, 2, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modalOverlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modalPanel {
  position: relative;
  background: #FFF;
  border: 1px solid rgba(5, 19, 2, 0.08);
  border-radius: 8px;
  padding: 36px 32px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  color: #051302;
  box-shadow: 0 24px 48px rgba(5, 19, 2, 0.12);
  transform: translateY(24px) scale(0.98);
}
#faqModal .modalPanel { max-width: 640px; }
#vvmcModal.modalOverlay {
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px;
}
#vvmcModal .modalPanel {
  max-width: min(420px, 86vw);
  width: 100%;
  padding: 0;
  max-height: none;
  overflow: visible;
  background: #051302;
  margin: auto;
}
#vvmcModal .vvmcFullImage {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
#vvmcModal .modalClose {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(5, 19, 2, 0.15);
}
.modalOverlay.open .modalPanel {
  transform: translateY(0) scale(1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.modalBrand {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #051302;
  margin-bottom: 12px;
}
.modalPanel h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: #051302;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.modalSub {
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.65;
}
.modalClose {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #051302;
  font-size: 1.4rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(5, 19, 2, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease !important;
}
.modalClose:hover {
  border-color: rgba(0, 200, 83, 0.45);
  color: #00C853;
}
.faqList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faqItem {
  background: #F5F5F5;
  border: 1px solid rgba(5, 19, 2, 0.08);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.faqItem[open] {
  border-color: rgba(0, 200, 83, 0.35);
  box-shadow: 0 8px 24px rgba(5, 19, 2, 0.06);
  background: #FFF;
}
.faqItem summary {
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #051302;
  list-style: none;
  padding: 14px 40px 14px 16px;
  position: relative;
  line-height: 1.4;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: #888;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.35s ease, color 0.35s ease !important;
}
.faqItem[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  color: #00C853;
}
.faqItem p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
  padding: 0 16px 16px;
}
.visitForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visitForm label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #051302;
  margin-bottom: 6px;
}
.visitForm input,
.visitForm textarea {
  width: 100%;
  padding: 12px 14px;
  background: #F5F5F5;
  border: 1px solid rgba(5, 19, 2, 0.08);
  border-radius: 6px;
  color: #051302;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}
.visitForm input::placeholder,
.visitForm textarea::placeholder { color: #999; }
.visitForm input:focus,
.visitForm textarea:focus {
  outline: none;
  border-color: rgba(0, 200, 83, 0.45);
  background: #FFF;
}
.visitForm .btn02 { align-self: flex-start; margin-top: 4px; }
.footerLogo { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }

.revealUp { opacity: 0; transform: translateY(40px); }

.servicesImages {
  transition: opacity 0.6s ease, clip-path 0.7s ease !important;
}

@media (max-width: 767px) {
  .headerTop { padding: 16px 20px; }
  .offInnerWrap { padding: 80px 24px; }
}

/* ===== Mobile optimization (phones & tablets, desktop unchanged) ===== */
@media (max-width: 1023px) {
  .projectsHorizontal.hide-mobile { display: none !important; }
  .projectsCont {
    min-height: auto;
    overflow: visible;
  }
  .projectsHeader {
    padding: 40px 20px 10px;
  }

  .portfolioMobileHeader .textAnim {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 0;
  }

  .portfolioMobileStack {
    display: block;
    height: calc(100dvh - 64px);
    min-height: calc(100svh - 64px);
    max-width: none;
    padding: 8px 14px 14px;
    box-sizing: border-box;
  }

  .portfolioMobileStack.isPinned {
    z-index: 40;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFF 40%, #F5F5F5 100%);
  }

  .mobileProjectCard {
    padding: 10px;
    border-radius: 14px;
  }

  .mobileProjectImage {
    flex: 0 0 70%;
  }

  .mobileProjectInfo .projectNum {
    font-size: 1.85rem;
  }

  .mobileProjectInfo h4 {
    font-size: 0.95rem;
  }

  .mobileProjectInfo p {
    font-size: 0.76rem;
    -webkit-line-clamp: 2;
  }

  .heroInner {
    padding: 96px 20px 44px;
    min-height: 100svh;
  }
  .heroText {
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
    margin-bottom: 18px;
  }
  .heroTextP,
  .heroTextPMobile {
    font-size: 0.84rem;
    line-height: 1.6;
    max-width: 100%;
  }
  .heroButtons {
    gap: 10px;
  }
  .btn01,
  .btn02 {
    padding: 12px 20px;
  }

  .sectionInner {
    padding: 52px 20px;
  }
  .sectionInnerCompact {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .sectionLabel {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }
  .textAnim {
    font-size: clamp(1.15rem, 4.8vw, 1.55rem);
    margin-bottom: 14px;
  }

  .heritageSection .textWrapper {
    gap: 28px;
  }
  .heritageText p,
  .heritageTextPMobile {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .expertiseIntro {
    font-size: 0.86rem;
    margin-bottom: 18px;
  }
  .expertiseGrid {
    gap: 8px;
  }

  .interiorHeader {
    margin-bottom: 28px;
  }
  .interiorGrid {
    gap: 24px;
  }
  .interiorText p {
    font-size: 0.86rem;
  }
  .leadershipCards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .leaderCard {
    padding: 16px 18px;
  }
  .leaderCard h4 {
    font-size: 1.05rem;
  }
  .featureList {
    grid-template-columns: 1fr;
  }

  .healthcareWrapper {
    min-height: auto;
    overflow: visible;
    justify-content: flex-start;
  }
  .healthcareInner {
    padding: 52px 0 0;
    gap: 24px;
    align-items: stretch;
  }
  .healthcareContent {
    padding: 0 20px 4px;
    order: 1;
  }
  .healthcareContent h2 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
    margin-bottom: 14px;
  }
  .healthcareContent p {
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .healthcareImage {
    order: 2;
    width: 100%;
  }
  .healthcareImage img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    object-position: center top;
    max-height: 72vh;
  }
  .homeSpacer2 {
    display: none;
  }

  .videoWrap {
    margin-top: 28px;
  }
  .playBtn {
    width: 88px;
    height: 88px;
    padding: 20px;
  }
  .playBtn i {
    font-size: 1.25rem;
  }

  .brochureInner {
    gap: 32px;
  }
  .brochureDesc {
    font-size: 0.86rem;
    margin-bottom: 20px;
  }
  .brochureImage img {
    max-height: 280px;
  }

  .contactGrid {
    margin-top: 28px;
    gap: 14px;
  }
  .contactCard {
    padding: 22px 18px;
  }
  .contactCard h4 {
    font-size: 0.78rem;
  }
  .contactCard p {
    font-size: 0.84rem;
  }
  .contactActions {
    margin-top: 24px;
  }

  .ctaCont {
    min-height: auto;
    padding: 56px 20px;
  }
  .ctaText {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  .animateHeading1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: 28px;
  }

  .footerCont2 {
    padding: 36px 20px;
  }
  .footerBrand h2 {
    font-size: 1.2rem;
  }

  #vvmcModal.modalOverlay {
    padding: 16px 12px;
  }
  #vvmcModal .modalPanel {
    max-width: min(380px, 92vw);
  }
}

.logoText {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F5F5F5;
  letter-spacing: 0.15em;
}
.logoSub {
  font-size: 0.65rem;
  color: #F5F5F5;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.headerNav { gap: 32px; align-items: center; }
.headerMenu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #F5F5F5;
  letter-spacing: 0.05em;
}
.headerActions { display: flex; align-items: center; gap: 16px; }
.offIcon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,245,245,0.1);
  color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.textUnderline { position: relative; display: inline-block; --line-color: #FFFFFF; }
.textUnderline::before, .textUnderline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  background-color: currentColor;
  transition: transform 0.25s ease-in-out, width 0.25s ease-in-out !important;
}
.textUnderline::before {
  width: 100%; right: 0; height: 1px;
  color: transparent;
  transform-origin: right;
  transition-delay: 0.15s;
}
.textUnderline::after {
  width: 0%; left: 0; height: 1.25px;
  color: var(--line-color);
  transform-origin: left;
}
.textUnderline:hover::before { transform: scaleX(0); transition-delay: 0s; }
.textUnderline:hover::after { width: 100%; transition-delay: 0.15s; }

.btn01, .btn02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  overflow: hidden;
  width: fit-content;
  transition: background-color 0.3s ease !important;
  cursor: pointer;
}
.btn01 {
  background-color: #FFFFFF;
  border: 1px solid #051302;
  border-bottom-width: 3px;
}
.btn01:hover { background-color: #EBEBEB; }
.btn01Text, .btn02Text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  display: block;
  overflow: hidden;
}
.btn01Text { color: #555; }
.btn02 {
  background-color: #00C853;
  border: 1px solid #000;
  border-bottom-width: 3px;
}
.btn02:hover { background-color: #009845; }
.btn02Text { color: #FFF; }

.HeroWrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.heroImageCont {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.heroImageCont::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.heroImageCont img {
  width: 100%; height: 100%;
  object-fit: cover;
  scale: 1.2;
}
.heroInner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.heroText {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  color: #F5F5F5;
  line-height: 1.05;
  letter-spacing: -0.03em;
  opacity: 0;
  margin-bottom: 32px;
}
.heroInfoCont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  opacity: 0;
}
@media (min-width: 768px) {
  .heroInfoCont { grid-template-columns: 1fr auto; align-items: end; }
}
.heroTextP {
  color: rgba(245,245,245,0.85);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 10px;
}
.heroTextPMobile { display: block; }
@media (min-width: 1024px) {
  .heroTextPMobile { display: none !important; }
}
.heroButtons { display: flex; gap: 14px; flex-wrap: wrap; }

html.smooth-scroll #smooth-content {
  will-change: transform;
}

.sectionInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.sectionLabel {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #051302;
  margin-bottom: 16px;
}
.contClr { background: #F5F5F5; }

.textAnim {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: #CCCCCC;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.heritageSection { position: relative; overflow: hidden; }
.heritageSection .textWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) {
  .heritageSection .textWrapper { grid-template-columns: 1.2fr 1fr; }
}
.heritageText p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.heritageTextPMobile { display: block; }
@media (min-width: 1024px) {
  .heritageTextPMobile { display: none !important; }
}
.heritageMap {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
}
.statsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .statsGrid { grid-template-columns: repeat(4, 1fr); }
}
.statItem h4 {
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 12px;
}
.statNumber {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #051302;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.servicesOutterCont { background: #EBEBEB; }
.servicesOutterCont .sectionInner { padding-bottom: 0; }
.servicesHeader { margin-bottom: 60px; }
.services { position: relative; }
.servicesRow {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .servicesRow { grid-template-columns: 1fr 1fr; min-height: 80vh; }
}
.services1 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.servicesImageCont {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(145deg, #FFF 0%, #F5F5F5 65%, #A8A8A8 85%, #BBB 90%, #FFF 100%);
}
.servicesImages {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  opacity: 0;
}
.servicesImages.active {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.servicesH2Cont {
  padding: 40px;
  background: #F5F5F5;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.servicesH2Cont .servicesHeading {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #051302;
}
.servicesNumbers { position: relative; width: 60px; height: 60px; }
.servicesNumber {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  font-weight: 200;
  color: #DDD;
  opacity: 0;
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
}
.servicesNumber.active { opacity: 1; }
.servicesHeight { position: relative; }
.servicesGradient {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 200px;
  background: linear-gradient(to top, #EBEBEB, transparent);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.servicesCont {
  padding: 60px 40px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  opacity: 0.1;
}
.servicesCont.active { opacity: 1; }
.serviceItem h4 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #051302;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.servicesText {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 520px;
}
.serviceQuote {
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
  border-left: 2px solid #00C853;
  padding-left: 16px;
}

.interiorHeader { margin-bottom: 48px; }
.interiorGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .interiorGrid { grid-template-columns: 1fr 1fr; }
}
.interiorText p { color: #555; line-height: 1.8; margin-bottom: 24px; }
.featureList {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.featureList li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #051302;
  padding: 12px 16px;
  background: #FFF;
  border-left: 3px solid #00C853;
}
.leadershipCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.leaderCard {
  background: #FFF;
  padding: 24px 28px;
  text-align: left;
}
.leaderCard h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  color: #051302;
  margin-bottom: 4px;
}
.leaderCard p { color: #888; font-size: 0.85rem; }

.healthcareWrapper {
  position: relative;
  min-height: 100vh;
  background: #051302;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.healthcareInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
@media (min-width: 1024px) {
  .healthcareInner { grid-template-columns: 1fr 1fr; }
}
.healthcareContent h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #F5F5F5;
  font-weight: 300;
  margin-bottom: 24px;
}
.healthcareContent p {
  color: rgba(245,245,245,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.healthcareActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.healthcareImage {
  width: 100%;
  line-height: 0;
}
.healthcareImage img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}
.homeSpacer2 { height: 30vh; background: #051302; }

.projectsCont {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #FFF 0%, #F5F5F5 65%, #A8A8A8 85%, #BBB 90%, #FFF 100%);
}
.projectsHeader {
  padding: 80px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.progressBarWrap {
  width: 100%;
  height: 2px;
  background: rgba(5,19,2,0.1);
  margin-top: 32px;
  overflow: hidden;
}
.progressBar {
  width: 100%; height: 100%;
  background: #051302;
  scale: 0 1;
  transform-origin: left center;
}
.projectsHorizontal {
  display: flex;
  gap: 40px;
  padding: 40px;
  width: max-content;
}
.projectCard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 85vw;
  max-width: 900px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .projectCard { grid-template-columns: 1.2fr 1fr; width: 70vw; }
}
.projectImage {
  overflow: hidden;
  clip-path: circle(25% at 50% 50%);
  aspect-ratio: 4/3;
}
.projectImage img { width: 100%; height: 100%; object-fit: cover; }
.projectInfo { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.projectTag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00C853;
  margin-bottom: 8px;
}
.projectMeta { font-size: 0.75rem; color: #888; display: block; margin-bottom: 4px; }
.projectNum {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  font-weight: 200;
  color: #DDD;
  line-height: 1;
  margin: 16px 0;
}
.projectInfo h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  color: #051302;
  margin-bottom: 12px;
}
.projectInfo p { color: #666; line-height: 1.7; font-size: 0.9rem; }

.videoWrap { margin-top: 40px; overflow: hidden; }
.videoPlaceholder {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}
.videoPlaceholder img { width: 100%; height: 100%; object-fit: cover; }
.videoEmbed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
@media (min-width: 768px) {
  .videoEmbed { min-height: 480px; }
}
.playBtn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #FFF;
  background: rgba(5,19,2,0.7);
  padding: 32px;
  border-radius: 50%;
  width: 120px; height: 120px;
  justify-content: center;
  transition: background 0.3s, scale 0.3s !important;
}
.playBtn:hover { background: rgba(0,200,83,0.9); scale: 1.05; }
.playBtn i { font-size: 1.5rem; }
.playBtn span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.brochureSection { background: #EBEBEB; }
.brochureInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .brochureInner { grid-template-columns: 1.2fr 1fr; }
}
.brochureImage img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 400px;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .contactGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .contactGrid { grid-template-columns: repeat(4, 1fr); }
}
.contactCard {
  background: #FFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contactCard h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #051302;
}
.contactCard p { color: #666; font-size: 0.9rem; line-height: 1.6; }
.contactCard a { color: #051302; }
.contactCard .btn01, .contactCard .btn02 { margin-top: auto; align-self: flex-start; }

.ctaCont {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #051302 0%, #0a3a08 50%, #051302 100%);
  padding: 100px 40px;
}
.ctaInner { max-width: 900px; margin: 0 auto; width: 100%; }
.ctaText {
  color: rgba(245,245,245,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0;
}
.animateHeading1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #F5F5F5;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  text-transform: lowercase;
}
.ctaButton { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; }

.footerWrapper { background: #051302; }
.footerCont2 {
  background: #051302;
  padding: 48px 32px;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}
.footerInner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .footerInner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}
.footerBrand h2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  color: #F5F5F5;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footerBrand p { color: rgba(245,245,245,0.6); font-size: 0.9rem; }
.footerLinks span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(245,245,245,0.5);
  margin-bottom: 16px;
}
.socialLinks { display: flex; gap: 16px; }
.socialLinks a {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,245,245,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5F5;
  font-size: 0.9rem;
  transition: background 0.3s !important;
}
.socialLinks a:hover { background: #00C853; border-color: #00C853; }
.footerCopy p { color: rgba(245,245,245,0.4); font-size: 0.8rem; }

.imageClipAnim { will-change: clip-path; }
