@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
  overflow-x: hidden;
	 user-select: none;
}
img
{-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none; 
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: 'Michigan Signature';
  src: url('../fonts/Michigan-Signature.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Semibold.otf') format('opentype');
  font-weight: 600;
}

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-bg: #EFEFEF;
  --gray-text: #8a8a86;
  --border: #e7e7e4;
  --font-parkinsans: "Parkinsans";
  --font-goga: "Goga Test";
  --font-inter: "Inter", sans-serif;
	  --menu-bg: #FC2600
}


.logo img {
  height: 37px;
/* 	width:60px; */
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* back to original — irrelevant to this bug since .mobile-menu is its child, not a sibling */
  width: 100%;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.is-stuck {
  background: #ffffff96;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Must come AFTER .is-stuck. backdrop-filter would make the navbar the
   containing block for the fixed .mobile-menu and clip it to navbar height. */
.navbar.menu-open {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1101; /* was 2 — must be higher than .mobile-menu's 1050 so logo/X stay visible */
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo svg {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 70px;
}

.time-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-parkinsans);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0%;
  text-transform: capitalize;
  background: var(--gray-bg);
  color: var(--black);
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.time-pill svg {
  width: 17px;
  height: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #F5F5F7;
  border-radius: 999px;
  padding: 6px;
}

.nav-links a {
  text-decoration: none;
  padding: 9px 16px;
  font-family: 'Parkinsans';
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0%;
  border-radius: 999px;
  color: #000000;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}

.nav-links a.disabled {
  color: var(--gray-text);
  font-weight: 500;
  pointer-events: none;
}

.nav-links a:not(.disabled):hover {
  background: rgba(0, 0, 0, 0.06);
}

.book-cta-btn {
  background: #000;
  color: var(--white) !important;
  font-family: var(--font-parkinsans);
  font-weight: 700;
  font-size: 11px !important;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 14px 20px !important;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
}
.book-cta-btn:hover {
  background: #FC2600 !important;
}
.cta-btn:hover {
  background: #2b2b2b;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #000;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1100;
  transition: background-color .25s ease;
}

.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.is-open {
  background: #000;
}

.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ============ FULL SCREEN MOBILE MENU ============ */
/* ============================================================
   FIX (menu entrance): previously this panel only did an 8px
   translateY + opacity fade — reads as a fade-in, not a "drops
   down from the top like a curtain" reveal. Now driven by
   clip-path: the closed state clips everything except a 0px
   sliver at the very top (inset(0 0 100% 0)); opening animates
   the bottom inset down to 0%, so the panel visibly wipes/drops
   from the top edge to fill the screen — matching the reference
   video. visibility keeps the same "only hide after the close
   transition finishes" pattern as before.
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050; /* sits below .navbar (1100) so logo + X remain visible on top */
/*   background:#EB4927; */
	background:#000;
  opacity: 1;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: clip-path .55s cubic-bezier(.65,0,.35,1),
              visibility 0s linear .55s;
  overflow-y: auto;
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0 0 0% 0);
  -webkit-clip-path: inset(0 0 0% 0);
  transition: clip-path .55s cubic-bezier(.65,0,.35,1);
}

.mobile-menu-inner {
  min-height: 100%;
  padding: 150px 20px 60px;
  display: flex;
  flex-direction: column;
/*   align-items: center;      /* center nav links horizontally */ 
/*   justify-content: center;  */
/*   text-align: center; */
  gap: 6px;
}
/* Individual link entrance/exit — the panel itself now reveals via
   the clip-path curtain drop above; this adds a per-link stagger on
   top of it, using the --i index main.js already sets on each link.
   FIX: previously nothing in this stylesheet referenced var(--i), so
   every link animated in at the exact same instant with no stagger
   at all. transition-delay below is what makes the links rise into
   place one after another, top to bottom, like the video. */
.mobile-menu-inner a,
.mobile-menu-inner .cta-btn.book-cta-btn {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .45s cubic-bezier(.22,.9,.32,1),
              transform .45s cubic-bezier(.22,.9,.32,1);
  transition-delay: calc(0.1s + var(--i, 0) * 0.06s);
}

.mobile-menu.is-open .mobile-menu-inner a,
.mobile-menu.is-open .mobile-menu-inner .cta-btn.book-cta-btn {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-inner .cta-btn,
.mobile-menu-inner .book-cta-btn{
	display:none;
}
.mobile-menu-inner a {
    text-decoration: none;
    border-bottom: none;
    font-family: 'Parkinsans';
    font-weight: 400;
    font-size: 54px !important;
    line-height: 104%;
    letter-spacing: 0%;
    text-transform: lowercase;
    transition: color .2s ease;
    color: #ffffff;
}
.mobile-menu-inner a.disabled {
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

/* highlight current page solid black, like "WORK" in the reference screenshot */
.mobile-menu-inner .current-menu-item > a,
.mobile-menu-inner .current_page_item > a,
.mobile-menu-inner a.current-menu-item {
  color: #fc2600;
	font-weight: 400;
}

/* ============================================================
   ARROW ICON (e.g. "Blog") — NEW. main.js already adds the
   `.has-arrow` class to any mobile menu link labeled "blog" (see
   ARROW_LINKS in main.js), but no rule for that class existed
   anywhere in this file, so the class was a no-op. This is the
   missing styling: a small diagonal arrow after the link text,
   matching the reference video. Swap the `color` below to any
   accent you prefer — black was used here since it already
   matches .current-menu-item and pops against the orange panel.
   To put the arrow on a different item instead: either edit
   ARROW_LINKS in main.js, or (Appearance → Menus, with "CSS
   Classes" enabled under Screen Options) add the class
   `has-arrow` to that menu item directly.
   ============================================================ */
.mobile-menu-inner a.has-arrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-inner a.has-arrow::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  flex-shrink: 0;
  background-color: #FC2600;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width='19'%20height='19'%20viewBox='0%200%2019%2019'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M1.43934%2015.4393L0.37868%2016.5L2.5%2018.6213L3.56066%2017.5607L1.43934%2015.4393ZM17%202H18.5V0.5H17V2ZM3.56066%2017.5607L18.0607%203.06066L15.9393%200.93934L1.43934%2015.4393L3.56066%2017.5607ZM17%200.5H1V3.5H17V0.5ZM15.5%202V18H18.5V2H15.5Z'%20fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width='19'%20height='19'%20viewBox='0%200%2019%2019'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M1.43934%2015.4393L0.37868%2016.5L2.5%2018.6213L3.56066%2017.5607L1.43934%2015.4393ZM17%202H18.5V0.5H17V2ZM3.56066%2017.5607L18.0607%203.06066L15.9393%200.93934L1.43934%2015.4393L3.56066%2017.5607ZM17%200.5H1V3.5H17V0.5ZM15.5%202V18H18.5V2H15.5Z'%20fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

/* CTA button — centered, high-contrast, clearly visible against the orange */
.mobile-menu-inner .cta-btn,
.mobile-menu-inner .book-cta-btn {
    margin-top: 32px;
    position: absolute;
    bottom: 40px;
    align-self: center;
    width: 75%;
    max-width: 276px;
    text-align: center;
  padding: 16px 28px !important;
  background: #000;
  color: #fff !important;
  border-radius: 999px;
  text-transform: none;
  font-size: 14px !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-menu-inner .cta-btn:hover,
.mobile-menu-inner .book-cta-btn:hover {
  background: #1a1a1a;
}

/* lock page scroll while the menu is open */
body.no-scroll {
  overflow: hidden;
}
.mobile-menu-time-row {
  display: none;
  position: absolute;
  top: 120px;
  left: 24px;  
  right: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logo-mobile {
  display: none;
  position: relative;
  align-items: center;
}

.logo-mobile-img { display: none; }
.logo-mobile-img--default { display: block; }
.logo-mobile-img--open { display: none; }

@media (max-width: 900px) {
  .logo-desktop { display: none; }
  .logo-mobile { display: flex; }
}

/* Swap to the white logo the instant the mobile menu overlay opens —
   .menu-open is toggled on #navbar by the existing hamburger JS in main.js */
.navbar.menu-open .logo-mobile-img--default { display: none; }
.navbar.menu-open .logo-mobile-img--open { display: block; width:60px; }
/* .navbar.menu-open .logo-mobile {
  visibility: hidden;
} */
@media (max-width: 900px) {
  .nav-inner { padding: 14px 20px; }
  .clients-heading { font-size: 30px !important; }
  p.clients_para { font-size: 18px !important; }
  .nav-links, .nav-right > .cta-btn { display: none; }
  .hamburger { display: flex; }
  .time-pill { font-size: 12px; padding: 8px 12px; }
  .mobile-menu { display: block; }
	.nav-right .time-pill {
    display: none;
  }
	.mobile-menu-time-row {
    display: none;
  }

}
/* Re-theme the pills for the dark/colored mobile menu background */
.mobile-menu-time-row .time-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.mobile-menu-time-row .time-pill svg circle,
.mobile-menu-time-row .time-pill svg path {
  stroke: #fff;
}

@media (max-width: 380px) {
  .mobile-menu-inner a {
    font-size: 32px;
  }
}
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 40px 64px;
  color: #000;
}

.hero-grid {
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f0;
  color: #4a4a47;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-parkinsans);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 28px;
/*   opacity: 0;
  transform: translateY(24px); */
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a4e34d;
  flex-shrink: 0;
}

.headline {
  font-size: 60px;
  line-height: 108%;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  max-width: 648px;
  margin: 0;
  font-family: var(--font-parkinsans);
}

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(1deg);
  will-change: transform, opacity;
}

.side {
  padding-top: 14px;
  FLOAT: right;
  margin-top: -51px;
}

.side p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  font-family: var(--font-goga);
  max-width: 488px;
  text-transform: capitalize;
  margin: 0 0 41px;
}

.cta-btn {
  display: inline-block;
  background: #FC2600;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-parkinsans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
/*   opacity: 0;
  transform: translateY(20px); */
}

.cta-btn:hover { background: #d1361f; }
.cta-btn:active { transform: scale(0.97) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .badge, .split-word, .cta-btn {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .side { padding-top: 0; margin-top: 30px; }
  .side p { max-width: none; font-size: 16px; }
  .slider-section { padding: 60px 0 !important; }
}

@media (max-width: 700px) {
  .hero { padding: 40px 20px 48px; }
  .headline { font-size: 35px; line-height: 120%; }
}

.slider-section {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  will-change: transform;
}

.slide-card {
  flex: 0 0 400px;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  background: #eee;
/*   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); */
}

.slide-card img, .slide-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 640px) {
  .slide-card { flex-basis: 250px;
        height: 250px; border-radius: 24px; }
	.service-bullets li{
    font-size: 15px;	}
	.service-bullets{
		gap:5px;
	}
	.slider-track{
		animation: scrollLeft 80s linear infinite;
	}
}

.logos-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px 64px;
  background: #ffffff;
  overflow: hidden;
}

.logos-eyebrow{
  color: #000;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(20px);
  font-family: var(--font-parkinsans);
  font-weight: 400;
  font-size: 20px;
  line-height: 163%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.logos-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 37px;
  width: max-content;
}

.logos-section.in-view .logos-track { animation: scrollLogos 22s linear infinite; }
.logos-section:hover .logos-track { animation-play-state: paused; }
.logo-item img{
	    width: 115px;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-parkinsans);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
}

.logo-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.logo-item .pin { width: 14px; height: 14px; color: #ea3f24; }
.logo-item.italic { font-style: italic; font-weight: 800; }

@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logos-section.in-view .logos-eyebrow { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.logos-section.in-view .logo-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* This keyframe is referenced by several reveal animations below
   (process step titles, FAQ questions, statement text, how-we-work
   titles/descriptions) via `animation: riseInWord ...`, but it was never
   actually defined anywhere in this file. An `animation` referencing an
   unknown @keyframes name is silently ignored by the browser — no error,
   it just never runs — so every one of those elements was stuck at its
   base `.split-word { opacity: 0; }` forever, invisible even after their
   section's `.in-view` class was correctly added. Adding the missing
   definition here fixes all of them at once. */
@keyframes riseInWord { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .logos-eyebrow, .logo-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 640px) {
  .logos-section { padding: 40px 20px 48px; }
  .logos-track { gap: 36px; }
  .logo-item { font-size: 16px; }
}

.projects-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.projects-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.projects-header-row .projects-heading { margin: 0; }

.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

/* ============ PROJECTS TABS — same pill + "+" icon design as
   .case-tab (Case Studies section), including active state, hover
   state and the "SEE MORE / SEE LESS" trigger pill. ============ */
.projects-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e2e5;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-goga);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 6%;
  text-transform: uppercase;
  color: #797979;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

button.projects-tab:hover {
    color: #000;
}
.projects-tab.active:hover {
    color: #fff !important;
}

.projects-tab::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
}

.projects-tab:hover {
  border-color: #c9c9cc;
}

.projects-tab.active {
  background: #000;
  border-color: #000;
  color: #fff !important;
}

.projects-tab.active::after {
  opacity: 1;
}

.projects-tab .tab-count,
.projects-tab span {
  color: #9a9a9e;
  font-weight: 500;
}

.projects-tab.active .tab-count,
.projects-tab.active span {
  color: rgba(255, 255, 255, 0.65);
}

/* "See more / See less" trigger pill — same treatment as .case-tab-more */
.projects-tab-more {
  background: none;
  border: 1px solid transparent;
  color: #1a1a1a;
}

.projects-tab-more::after {
  content: '⌄';
  font-size: 16px;
  opacity: 1;
  transition: transform .25s ease;
}

.projects-tab-more.is-expanded::after {
  transform: rotate(180deg);
}

.projects-tab-more:hover {
  color: #FC2600;
}

.projects-heading {
  font-family: var(--font-parkinsans);
  font-weight: 600;
  max-width: 300px;
  font-size: 55px;
  line-height: 109.00000000000001%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000;
  margin: 0 0 40px;
}

.projects-heading .split-word {
  display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 15px;
}

.project-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card.card-fade-out {
  opacity: 0; transform: translateY(14px) scale(0.97); pointer-events: none;
}

.project-image { border-radius: 17px; overflow: hidden; height: 600px; background: #eee }

.project-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

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

.project-caption {
 margin-top: 17px; padding: 0 2px;
}

.project-name {
  margin: 0; font-size: 20px; line-height: 150%; letter-spacing: 0%;
  font-family: var(--font-parkinsans); font-weight: 600; color: #000; text-transform: capitalize;
}

.project-tag {font-family: 'Goga Test';
    font-size: 16px;
    line-height: 163%;
    letter-spacing: 0%;
    text-transform: capitalize;
    font-weight: 300;
    color: #747474;
    white-space: nowrap;
} 

.see-all-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 700px;
  margin: 90px auto 0px; padding: 22px 18px; background: #000; color: #ffffff; border: none;
  border-radius: 20px; font-size: 20px; font-weight: 600; text-transform: capitalize; cursor: pointer;
  font-family: var(--font-parkinsans); transition: background-color 0.3s ease; opacity: 0; transform: translateY(24px);
}

.see-all-btn svg { width: 40px; height: 40px; flex-shrink: 0; transition: transform 0.3s ease; }
.see-all-btn:hover { background: #FC2600; }
.see-all-btn:hover svg { transform: translateX(4px); }

.projects-section.in-view .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.projects-section.in-view .project-card { animation: riseInCard 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.projects-section.in-view .see-all-btn { animation: riseInCard 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInCard { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .split-word, .project-card, .see-all-btn { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 760px) {
  .projects-header-row { flex-direction: column; gap: 20px; margin-bottom:0px; align-items: flex-start; }
  .projects-tabs { gap: 14px; }
}

/* ============ MOBILE: dropdown filter instead of pill row (same
   pattern as Case Studies' .case-studies-tabs / .mobile-filter-dropdown).
   The dropdown markup itself is injected by script.js and reuses the
   shared .mobile-filter-dropdown / .mobile-filter-toggle /
   .mobile-filter-list styles defined further below. ============ */
@media (max-width: 768px) {
  .projects-tabs {
    display: none;
  }
}


.clients-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px 40px;
  overflow: hidden;
}

.clients-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 50px; line-height: 109.00000000000001%;
  text-transform: capitalize; color: #000; max-width: 300px;
}

.clients-heading_wrap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; }

p.clients_para {
  font-family: var(--font-parkinsans); font-weight: 400; font-style: Regular; font-size: 25px; max-width: 383px;
  leading-trim: NONE; line-height: 163%; letter-spacing: 0%; text-transform: capitalize;
}

.clients-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.clients-section.in-view .clients-heading .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .split-word { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============ TESTIMONIAL SLIDER (Swiper.js) ============ */
/* ============ TESTIMONIAL SLIDER (vanilla, no library) ============ */
.testimonial-slider { position: relative; max-width: 100%; margin: 0 auto; }
.testimonial-slider-viewport { position: relative; overflow: hidden; width: 100%;}

/* Fix 1: Give the track a minimum height so slides don't collapse */
.testimonial-slider-track {
  position: relative;
  width: 100%;
  min-height: 400px; /* prevents collapse before JS runs */
}

/* Fix 2: Ensure slides are absolutely positioned and full-width */
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
	gap:50px;
  grid-template-columns: 400px 1fr;
/*   overflow: hidden; */
  transition: transform 0.55s cubic-bezier(.22, .9, .32, 1);
  transform: translateX(100%);   /* ← all slides start off-right */
}

.testimonial-slide.is-active {
  transform: translateX(0%);     /* ← active slide is visible */
}

.testimonial-photo-wrap { position: relative; min-height: 360px; }
.testimonial-photo { width: 100%; height: 100%; object-fit: cover; display: block;border-radius:24px; }

.testimonial-person-tag {
  position: absolute; left: 20px;
    right: 20px;
    bottom: 25px; background: #fff; border-radius: 16px;
  padding: 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.testimonial-person-icon {
  width: 28px; height: 28px; border-radius: 50%; background: #000; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; display:none;
}
.testimonial-person-icon svg { width: 15px; height: 15px; }
.testimonial-person-name {     margin: 0;
    color: #000;
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
	letter-spacing: 0%; }
.testimonial-person-role { margin: 5px 0 0; font-family: Inter;
font-weight: 500;
font-style: Medium;
font-size: 13px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
 color: #525C54; }

.testimonial-quote-card {     background: url(https://www.shekharhans.com/wp-content/uploads/2026/09/image-365790.png);
       color: #fff;
    padding: 48px 44px;
    display: flex;
    border: 1px solid #00000008;
    background-position: top center;
    background-size: cover;
    border-radius: 48px;
    flex-direction: column;
    justify-content: space-between; }
.testimonial-quote-icon {     width: 60px;
    height: 60px;
    color: #FC2600;
    margin-bottom: 20px;
}
.testimonial-quote-text {
    font-family: 'Goga Test';
    font-size: 20px;
    line-height: 150%;
    color: #000;
    margin: 0 0 32px;
	max-width:550px;
}
.testimonial-quote-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.testimonial-stars { display: flex; gap: 4px; color: #FC2600; }
.star-icon { width: 16px; height: 16px; }
.testimonial-quote-logo { height: 30px; width: 70px; object-fit: contain; opacity: 1; }

.testimonial-slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testimonial-nav-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid #e2e2e5; background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.testimonial-nav-btn svg { width: 18px; height: 18px; color: #000; transition: color .2s ease; }
.testimonial-nav-btn:hover { background: #000; border-color: #000; }
.testimonial-nav-btn:hover svg { color: #fff; }
@media (max-width: 999px){
	.testimonial-slide{
		grid-template-columns: 250px 1fr;
		padding-left:0px;
		    gap: 30px;
		padding-right:0px;
	}
	.testimonial-quote-text{
		font-size:16px;
	}
	.testimonial-quote-card{
		padding:30px;
	}
	.testimonial-person-role{
		font-size:12px;
	}
	.testimonial-person-name{
		font-size:15px;
	}
}
@media (max-width:640px){
	.testimonial-slide{
		padding-left:20px;
		padding-right:20px;
	}
}
@media (max-width: 600px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
	  border: 1px solid #00000008;
    gap: 0;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    background: url(https://www.shekharhans.com/wp-content/uploads/2026/09/image-365790.png);
    background-position: top center;
    background-size: cover;
  border-radius: 24px;
    overflow: hidden;
  }
	.testimonial-slider{
		padding: 0 20px;
	}
  .testimonial-slider-track {
    min-height: 480px;
  }

  /* Header row: avatar + name/role, inline, top of the merged card */
  .testimonial-photo-wrap {
    position: relative;
    min-height: 0;
    width: auto;
    height: auto;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Divider line under the header row, inset to match card padding */
  .testimonial-photo-wrap::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: #ddd;
  }

  .testimonial-person-tag {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .testimonial-person-icon {
    display: none;
  }

  .testimonial-person-name {
/*     color: #fff; */
    font-size: 17px;
  }

  .testimonial-person-role {
/*     color: rgba(255, 255, 255, 0.65); */
    font-size: 13px;
  }

  /* Quote block: no background/shadow of its own now — the slide carries it */
  .testimonial-quote-card {
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 20px 24px 35px;
  }

  .testimonial-quote-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
/*     color: #fff; */
  }

  .testimonial-quote-icon path {
/*     fill: #fff;
    stroke: #fff; */
  }

  .testimonial-quote-text {
    font-size: 17px;
/*     color: #fff; */
  }

  .testimonial-quote-logo {
/*     height: 22px; */
  }
}

@media (max-width: 960px) {
  .projects-heading { font-size: 30px !important; }
  .project-image { height: 300px;}
  .project-name { font-size: 15px !important; }
  .services-section { padding: 70px 0  !important; margin-top:50px !important;}
  .services-container { padding: 0 20px !important; }
  .services-heading { font-size: 30px !important; }
  .services-tag { margin-bottom: 30px !important; }
	.faq-list {
    margin-top: 0px;
}
}
@media (max-width: 640px) {
  .projects-section { padding: 40px 20px 56px; }
  .projects-grid { grid-template-columns: 1fr; gap: 24px; }
  .project-image { height: 300px}
  .see-all-btn { padding: 18px 22px; font-size: 14px; }
}


@media (max-width:640px) {
  .clients-section { padding: 48px 0 20px; }
  .clients-heading_wrap { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; padding: 0 20px; }
  p.clients_para{
		max-width:285px;
	}
}

.services-section {
  background: #000; border-radius: 0px; padding: 90px 0; color: #ffffff; overflow: hidden; margin: 80px auto 0;
}

.services-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.services-header { margin-bottom: 60px; }

.services-tag {
  display: inline-block; font-size: 17px; font-weight: 600; color: #fff; font-family: var(--font-parkinsans);
  border: 1px solid #FC2600; padding: 6px 16px; border-radius: 999px; margin-bottom: 40px;
}

.services-heading {
  font-size: 55px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; max-width: 760px;
  margin: 0; font-family: var(--font-parkinsans); color: #ffffff;
}

.services-heading em { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; }

.services-pin { perspective: 1400px; }
.services-stack, .services-image-stack { transform-style: preserve-3d; }
.image-pair { backface-visibility: hidden; will-change: transform, opacity; }

.services-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.services-left { position: relative; }
.services-stack { position: relative; height: 450px; overflow: hidden; }

.service-cta-btn { opacity: 1 !important; transform: none !important; max-width: 276px; }

.services-right { position: relative; }
.services-image-stack { position: relative; height: 700px; overflow: hidden; }

.image-pair { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; }
.image-pair-inner { position: relative; width: 100%; height: 500px; }

.image-box {
  position: absolute; width: 330px; height: 400px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); left: 0; top: 0;
}

.image-box.offset { width: 300px; height: 420px; left: 261px; top: 60px; z-index: 2; }
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bg-blue { background: linear-gradient(160deg, #7fc7e8, #4a9fd6); }
.bg-lime { background: linear-gradient(160deg, #d4f766, #a8e63c); }
.bg-coral { background: linear-gradient(160deg, #f5a08a, #e8735a); }
.bg-cream { background: linear-gradient(160deg, #f5e6a8, #e8d074); }
.bg-green { background: linear-gradient(160deg, #2d6a4f, #1b4332); }
.bg-mint { background: linear-gradient(160deg, #95e6b8, #52c98a); }
.bg-peach { background: linear-gradient(160deg, #e8c4a0, #d9a374); }
.bg-teal { background: linear-gradient(160deg, #1b4d4a, #0d2e2c); }

@media (max-width: 860px) {
  .services-flex { grid-template-columns: 1fr; gap: 40px; }
  .services-pin { height: auto; padding: 40px 0 100px; }
  .services-stack { height: 460px; }
  .services-image-stack { height: 300px; }
  .image-pair-inner { height: 260px; }
  .image-box { width: 180px; height: 240px; }
  .image-box.offset { width: 140px; height: 180px; left: 120px; top: 30px; }
}

.process-section { max-width: 1320px; margin: 0 auto; padding: 150px 40px 150px; }

.process-heading {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 55px; line-height: 109.00000000000001%;
  letter-spacing: 0%; text-transform: capitalize; color: #000; margin: 0 0 73px;
}

.process-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.process-list { border-top: 1px solid #202024; }

.process-row {
  display: flex; align-items: center; gap: 24px; padding: 48px 24px; border-bottom: 1px solid #202024;
  opacity: 0; transform: translateY(24px); transition: background-color 0.3s ease, border-color 0.3s ease; cursor: pointer;
}

.process-row:hover { background-color: #FC2600; border-color: #FC2600; }
.process-row:hover .process-num, .process-row:hover .process-title { color: #ffffff; }
.process-row:hover .process-icon { filter: invert(1); }
.process-row-end { height: 1px; }

.process-num {
  color: #000000; font-family: 'Geist Mono'; font-weight: 500; font-size: 12px; line-height: 100%;
  letter-spacing: 0%; width: 24px; flex-shrink: 0; transition: color 0.3s ease;
}

.process-title {
  flex: 1; font-family: var(--font-parkinsans); font-size: 25px; line-height: 100%; 
  font-weight: 700; color: #000; margin: 0; transition: color 0.3s ease;
}

.process-title .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.process-icon { width: 77px; height: 75px; color: #111111; flex-shrink: 0; transition: filter 0.3s ease; }

.process-section.in-view .process-heading .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.process-section.in-view .process-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.process-section.in-view .process-title .split-word { animation: riseInWord 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInRow { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .split-word, .process-row { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 600px) {
  .process-section { padding: 70px 20px; }
  .process-row { gap: 14px; padding: 24px 10px; }
  .process-icon { width: 40px; height: 40px; }
  .process-heading { font-size: 30px; margin: 0 0 30px; }
  .process-title { font-size: 15px; }
}

.about-section { position: relative; margin: 0 auto; padding: 64px 40px 100px; overflow: hidden; font-family: var(--font-parkinsans); }

.about-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 111px; align-items: center; }

/* .about-photo-wrap { position: relative; } */
.about-blob svg { position: absolute; top: -54px; left: -7%; width: 778px; border-radius: 0px; z-index: 0; }

.about-photo {
position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
/*     height: 800px; */
    border-radius: 20px;
    display: block;
/*     margin-top: -66px; */
  opacity: 0; transform: translateY(30px);
}

.about-content { padding-top: 20px; }

.about-heading {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 45px; line-height: 120%; letter-spacing: -0.01em;
  color: #000; margin: 0 0 20px; max-width: 532px;
}

.about-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.about-desc {
  color: #000000EE; font-family: 'Parkinsans'; font-weight: 400; font-size: 20px; line-height: 150%;
  letter-spacing: 0%; max-width: 580px; margin: 0 0 24px; opacity: 0; transform: translateY(20px);
}

.about-signature { margin-bottom: 55px; rotate: -8deg; margin-top: -27px; opacity: 0; transform: translateY(16px); }

.signature-text {
  font-family: 'Michigan Signature'; font-weight: 400; font-size: 25px; line-height: 150%; rotate: -8deg;
  letter-spacing: 0%; color: #0800F6EE;
}

.about-name { font-size: 13px; font-weight: 700; color: #111111; margin: 0; opacity: 0; transform: translateY(14px); }

.about-role {
  color: #000; margin: 2px 0 46px; font-family: 'Parkinsans'; font-weight: 400; font-size: 18px; line-height: 150%;
  letter-spacing: 0%; opacity: 0; transform: translateY(14px);
}

.about-cta-btn { opacity: 0; transform: translateY(20px); font-size: 14px; padding: 13px 28px; text-align: center; }

.about-cards-wrap { position: relative; height: 260px; margin-top: 20px; }

.about-cards-blob { position: absolute; right: -11px; width: 1200px; bottom: 0; border-radius: 999px; z-index: 0; opacity: 0; }

.about-cards { position: absolute; z-index: 1; height: 100%; top: 0px; transform: translateY(-81%); right: 8%; display: flex; align-items: center; }

.about-card {
  width: 230px; height: 290px; border-radius: 42px; overflow: hidden; background: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); opacity: 0; transform: translateY(30px) scale(0.9);
}

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

.card-1 { transform: translateY(30px) scale(0.9) rotate(-10deg); margin-right: -30px; margin-top: -30px; z-index: 1; }
.card-2 { z-index: 2; }
.card-3 { transform: translateY(30px) scale(0.9) rotate(1deg); margin-left: -6px; z-index: 1; }

.about-section.in-view .about-blob { animation: blobIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-photo { animation: riseIn 0.7s cubic-bezier(.22, .9, .32, 1) forwards; animation-delay: 0.1s; }
.about-section.in-view .about-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-desc { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-signature { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-name { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-role { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-cta-btn { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-cards-blob { animation: blobIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-1 { animation: cardIn1 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-2 { animation: riseIn 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-3 { animation: cardIn3 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes blobIn { to { opacity: 1; transform: scale(1); } }
@keyframes cardIn1 { to { opacity: 1; transform: translateY(0) scale(1) rotate(-10deg); } }
@keyframes cardIn3 { to { opacity: 1; transform: translateY(0) scale(1) rotate(10deg); } }

@media (prefers-reduced-motion: reduce) {
  .about-blob, .about-photo, .split-word, .about-desc, .about-signature, .about-name, .about-role,
  .about-cta-btn, .about-cards-blob, .about-card {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) {
  .about-container { grid-template-columns: 1fr; }
  .about-blob svg { top: -54px; left: -40px; width: 100%; }
  .about-container { gap: 40px }
  .about-section { padding: 64px 20px 50px; }
  .about-heading { font-size: 30px; line-height: 120%; }
  .about-desc { font-size: 17px; }
  .about-cards-wrap { margin-top: 120px; height: 100%; }
  .card-1 { margin-top: 0px; }
  .about-cards-blob { width: 100%; top: 0px; }
  .about-cards { position: relative; padding: 0 20px; bottom: 0px; transform: translateY(0%); right: 0px; }
  .about-cards-wrap { grid-column: 1 / 2; display: none; }
  .about-card { width: 300px; height: 300px; }
}

.faq-section { background: #000000; padding: 120px 20px 100px; position: relative; font-family: var(--font-parkinsans); }

.faq-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; gap: 40px; align-items: start; }

.faq-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 123%; text-transform: capitalize;
  color: #ffffff; margin: 0; max-width: 522px;
}

.faq-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.faq-list { margin-top: 300px; }
.faq-item { border-bottom: 1px solid #2a2a2e; opacity: 0; transform: translateY(20px); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none;
  border: none; cursor: pointer; padding: 34px 0; text-align: left;
}

.faq-question span:first-child { color: #ffffff; font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 1.5; }
.faq-question .split-word { display: inline-block; }

.faq-toggle {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #FF3701; display: flex;
  align-items: center; justify-content: center; color: #FF3701; transition: transform 0.3s ease;
}

.faq-toggle svg { width: 15px; height: 15px; }
.faq-toggle svg line:first-child { transition: opacity 0.25s ease; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p a {
    color: #FC2600;
}
.faq-answer p {
  font-size: 17px; line-height: 1.7; font-family: var(--font-goga); color: #666668; margin: 0 0 22px; padding-right: 60px
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-section.in-view .faq-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.faq-section.in-view .faq-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.faq-section.in-view .faq-question .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .split-word, .faq-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 860px) {
  .faq-container { grid-template-columns: 1fr; gap: 32px; flex-direction: column; }
  .footer-glow img { top: -95px !important; }
}

@media (max-width: 700px) {
  .faq-section { padding: 90px 0 70px !important; margin-top: 70px !important; }
  .faq-container { padding: 0 20px !important; }
  .sh_badge img { width: 170px !important; }
  .sh_badge { position: absolute !important; top: -72px !important; right: 0px !important; }
  .faq-heading { font-size: 30px !important; }
  .faq-question { padding: 26px 0 !important; }
  .faq-question span:first-child { font-size: 16px !important; }
  .faq-toggle { flex-shrink: 0; width: 33px !important; height: 33px !important; }
  .faq-answer p { padding-right: 20px !important; font-size: 15px !important; line-height: 140% !important; }
  .about-signature { margin-bottom: 30px !important; rotate: -8deg; margin-top: -4px !important }
  .about-role { color: #000; margin: 2px 0 35px !important; }
  .booking-section { padding: 70px 20px 170px !important; }
  .booking-badge { font-size: 12px !important; }
  .booking-heading { font-size: 30px !important; margin: 0 auto 50px !important; }
  .faq-list { margin-top: 0px !important; }
  .footer-heading { font-size: 30px !important; margin: 0 0 40px !important; }
}

.booking-section { max-width: 1000px; margin: 0 auto; padding: 90px 40px 300px; font-family: var(--font-parkinsans); text-align: center; }

.booking-badge {
  display: inline-block; color: #000000EE; background: #D9D9D936; padding: 11px 28px; border-radius: 99px;
  font-weight: 400; font-size: 18px; line-height: 150%; letter-spacing: 0%; text-align: center; text-transform: uppercase;
  margin-bottom: 39px; opacity: 0; transform: translateY(20px);
}

.booking-heading {
  color: #000; max-width: 514px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 109.00000000000001%; letter-spacing: 0%; text-align: center; margin: 0 auto 82px;
}

.booking-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.booking-widget {
  border: 1px solid #e7e7e4; border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); overflow: hidden;
  height: 630px; background: #ffffff;
}

#my-cal-inline-call { height: 100% !important; }

.booking-section.in-view .booking-badge { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.booking-section.in-view .booking-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.booking-section.in-view .booking-widget { animation: riseInWidget 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInWidget { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .booking-badge, .split-word, .booking-widget { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 760px) { .booking-mock { grid-template-columns: 1fr; } }

.footer-section { background: #000000; padding: 56px 0 0; font-family: var(--font-parkinsans); color: #ffffff; border-radius: 0px; position: relative; }

.footer-glow img { position: absolute; top: -150px; left: 0; right: 0; width: 100%; height: auto; pointer-events: none; z-index: 0; }

.sh_badge { position: absolute; top: -95px; right: 200px; }
.sh_badge img { width: 248px; }

.footer-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding-bottom: 40px; }
.footer-left { opacity: 0; transform: translateY(24px); max-width: 673px; }

.footer-heading {
  color: #ffffff; font-family: var(--font-parkinsans); font-weight: 600; font-size: 80px; line-height: 114.99999999999999%;
  letter-spacing: 0%; text-transform: capitalize; max-width: 700px; margin: 0 0 75px;
}

.footer-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }
.footer-cta-btn { opacity: 1 !important; transform: none !important; }
.footer-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(20px); }

.footer-col-title {
  color: #fff; margin: 0; font-family: var(--font-parkinsans); font-weight: 400; font-size: 16px; line-height: 100%;
  margin-bottom: 19px; letter-spacing: 0%; text-transform: uppercase;
}

.footer-col-title:hover { color: #ffffff; }
.footer-contact { min-width: 160px; grid-column: 1 / -1; opacity: 0; transform: translateY(20px); }

.footer-label {
  font-family: 'Parkinsans'; font-weight: 400; font-size: 16px; line-height: 100%; letter-spacing: 0.04em;
  text-transform: uppercase; color: #FFFFFF66; margin: 0 0 15px;
}

.footer-label-spaced { margin-top: 40px; }

.footer-value {
  color: #ffffff; margin: 0; font-family: Parkinsans; font-weight: 800; font-size: 18px; line-height: 112.99999999999999%;
  letter-spacing: 0%; text-transform: lowercase;
}

.footer-bottom { padding: 50px 0 40px; opacity: 0; transform: translateY(16px); }

.footer-copyright {
  color: #FFFFFF66; margin: 0; font-family: var(--font-parkinsans); font-weight: 400; font-size: 16px; line-height: 100%; letter-spacing: 0%;
}

.footer-copyright a { color: #6b6b70; text-decoration: underline; }

.footer-wordmark { display: flex; }
.footer-wordmark img { width: 100%; height: auto; object-fit: contain; margin-top: 150px; }

.wordmark-s, .wordmark-h {
  font-family: var(--font-parkinsans); font-weight: 800; font-size: clamp(180px, 26vw, 320px); color: #ffffff;
  letter-spacing: -0.02em; opacity: 0; transform: translateY(60px);
}

.footer-section.in-view .footer-left { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-col { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-contact { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-bottom { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .wordmark-s { animation: riseInMark 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .wordmark-h { animation: riseInMark 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInMark { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .footer-left, .split-word, .footer-col, .footer-contact, .footer-bottom, .wordmark-s, .wordmark-h {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 80px; }
  .footer-col-title { font-size: 14px; line-height: 100%; margin-bottom: 13px; }
  .footer-right { justify-content: flex-start; gap: 40px; flex-wrap: wrap; }
  .footer-value { font-size: 14px; }
  .footer-bottom { padding: 20px 0 40px; }
}

@media (max-width: 700px) {
  .footer-container { padding: 0 20px; }
  .footer-wordmark img { width: 100%; height: auto; margin-top: 20px; }
}

.about-hero-section {  padding: 64px 40px 0; font-family: var(--font-parkinsans); overflow: hidden; }
.about-hero-section {
/*   position: relative;  */
}

.about-hero-section::before,
.contact-hero-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	    opacity: 56%;
  height: 480px; /* adjust to taste — controls how far down the gradient shows */
  background-image: url('https://personal.shekharhans.com/wp-content/uploads/2026/09/image-365790-1.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}
.about-hero-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 125%; letter-spacing: 0%;
/*   text-transform: lowercase;  */
	text-align: center; color: #000; max-width: 888px; margin: 0 auto 90px;
}

.about-hero-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.about-hero-visual { position: relative; display: flex; justify-content: center; }

.about-hero-visual::before {
  content: ""; position: absolute; width: 775px; height: 186px; left: 50%; top: -40px; transform: translateX(-50%);
  background: #D75633; opacity: 0.25; filter: blur(71px); z-index: 0; pointer-events: none;
}

.about-hero-main-img {
  position: relative; z-index: 1; width: 100%; max-width: 1138px; border-radius: 20px; opacity: 0;
  transform: translateY(40px) scale(0.96); will-change: transform, opacity;
}

.about-hero-main-img img { position: relative; z-index: 1; width: 100%; height: auto; display: block; }

.about-hero-cat-img {
  position: absolute; right: -27px; bottom: 300px; width: 255px; border-radius: 16px; overflow: hidden; z-index: 2;
  opacity: 0; transform: translateY(30px) rotate(-4deg); will-change: transform, opacity;
}

.about-hero-cat-img img { width: 100%; height: auto; display: block; }

.about-hero-section.in-view .about-hero-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-hero-section.in-view .about-hero-main-img { animation: riseInImg 0.75s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-hero-section.in-view .about-hero-cat-img { animation: riseInCat 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInImg { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes riseInCat { to { opacity: 1; transform: translateY(0) rotate(-4deg); } }

@media (prefers-reduced-motion: reduce) {
  .about-hero-heading .split-word, .about-hero-main-img, .about-hero-cat-img {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 768px) {
  .about-hero-section { padding: 48px 20px 0px; }
  .about-hero-heading { font-size: 30px; line-height: 120%; margin-bottom: 50px; }
  section.bg-white-spacer { background: #fff; filter: blur(17px); height: 120px; margin-top: -45px; z-index: 4; position: relative; }
  .about-hero-visual::before { width: 300px; height: 100px; top: -20px; filter: blur(50px); }
  .about-hero-cat-img { width: 110px; right: -6px; bottom: 30px; }
}

section.bg-white-spacer { background: #fff; filter: blur(17px); height: 150px; margin-top: -37px; z-index: 4; position: relative; }

.stats-section { max-width: 1300px; margin: 0 auto; padding: 70px 20px; font-family: var(--font-parkinsans); }

.stats-eyebrow {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 163%; letter-spacing: 0%;
  text-transform: capitalize; color: #000; margin: 0 0 40px;
}

.stats-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(18px); will-change: transform, opacity; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { opacity: 0; transform: translateY(24px); }

.stat-number {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 72px; line-height: 100%; letter-spacing: -2%;
  color: #000; margin: 0 0 10px; font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 13px; color: #3C4858; font-family: var(--font-parkinsans); font-weight: 500; font-size: 15px;
  line-height: 140%; letter-spacing: 0%; margin: 0;
}

.stats-section.in-view .stats-eyebrow .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.stats-section.in-view .stat-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .split-word, .stat-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 350px) {
  .stats-section { padding: 48px 20px 56px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

.statement-section { max-width: 1100px; margin: 0 auto; padding: 100px 40px 40px; font-family: var(--font-parkinsans); }
.statement-container { justify-content: space-between; align-items: flex-end; gap: 60px; }
.statement_span {
    font-family: 'Goga Test';
    font-weight: 400;
    font-size: 18px;
    line-height: 163%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FC2600;
    padding-bottom: 12px;
}
.statement-heading {
  color: #000; max-width: 1031px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 125%; letter-spacing: 0%; 
/* 	text-transform: lowercase;  */
	margin: 0;
}

.statement-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.statement-desc {
  color: #000; max-width: 423px; font-family: var(--font-goga); font-weight: 400; font-size: 18px; margin-top: 102px;
  line-height: 163%; letter-spacing: 0%; text-transform: capitalize; margin: 102px 0 0 auto; flex-shrink: 0;
}

.statement-desc .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.statement-section.in-view .statement-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.statement-section.in-view .statement-desc .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .statement-heading .split-word, .statement-desc .split-word { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 860px) {
  .statement-container { flex-direction: column; align-items: flex-start; gap: 28px; }
  .statement-desc { max-width: none; }
}

@media (max-width: 480px) { .statement-section { padding: 56px 20px; } }

.gallery-section { max-width: 100%; margin: 0 auto; font-family: var(--font-parkinsans); }
.gallery-container { display: flex; flex-direction: column; gap: 16px; }

.gallery-main { overflow: hidden; width: 100%; height: 818px; background: #eee; opacity: 0; transform: translateY(50px); }

.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-row .gallery-item {
  overflow: hidden; width: 100%; height:562px; background: #eee; opacity: 0; transform: translateY(40px);
}

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

.gallery-section.in-view .gallery-main { animation: riseInGallery 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.gallery-section.in-view .gallery-row .gallery-item { animation: riseInGallery 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(1) { animation-delay: var(--gallery-delay-1, 0.9s); }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(2) { animation-delay: var(--gallery-delay-2, 1.05s); }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(3) { animation-delay: var(--gallery-delay-3, 1.2s); }

@keyframes riseInGallery { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .gallery-main, .gallery-row .gallery-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.how-we-work-section { max-width: 1300px; margin: 0 auto; padding: 80px 40px 100px; font-family: var(--font-parkinsans); }

.how-we-work-eyebrow {
  font-family: var(--font-parkinsans); font-size: 12px; line-height: 100%; letter-spacing: 0%; font-weight: 700;
  text-transform: uppercase; color: #86868B; margin: 0 0 16px;
}

.how-we-work-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.how-we-work-heading {
  color: #0F0F11; margin: 0 0 80px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 110.00000000000001%; letter-spacing: 0%;
}

.how-we-work-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.how-we-work-list { border-top: 1px solid #E5E5EA; }

.how-we-work-row {
  display: flex; justify-content: space-between; gap: 40px; padding: 48px 0; border-bottom: 1px solid #E5E5EA;
  opacity: 0; transform: translateY(24px);
}

.how-we-work-title {
  color: #0F0F11; margin: 0; font-family: var(--font-parkinsans); font-weight: 500; font-size: 30px;
  line-height: 114.99999999999999%; letter-spacing: 0%;
}

.how-we-work-title .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.how-we-work-desc {
  color: #0F0F11; max-width: 469px; margin: 0; font-family: var(--font-goga); font-weight: 400; font-size: 18px;
  line-height: 160%; letter-spacing: 0%;
}

.how-we-work-desc .split-word { display: inline-block; opacity: 0; transform: translateY(10px); }

.how-we-work-section.in-view .how-we-work-eyebrow .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-title .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-desc .split-word { animation: riseInWord 0.4s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .how-we-work-eyebrow .split-word, .how-we-work-heading .split-word, .how-we-work-row,
  .how-we-work-title .split-word, .how-we-work-desc .split-word {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) {
  .how-we-work-row { flex-wrap: wrap; gap: 12px; padding: 30px 0; }
  .how-we-work-title { font-size: 20px; }
  .how-we-work-desc { max-width: none; font-size: 16px; }
}

@media (max-width: 480px) { .how-we-work-section { padding: 48px 20px 20px; } }

@media (max-width: 768px) {
  .gallery-section { padding: 0px 0px 0px; }
  .gallery-row { grid-template-columns: 1fr; gap: 12px; }
  .gallery-main { height: 400px; }
  .gallery-row .gallery-item { aspect-ratio: 1 / 0.85; }
  .how-we-work-heading { font-size: 30px; margin: 0 0 40px; }
}
.case-studies-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	    opacity: 56%;
  height: 480px; /* adjust to taste — controls how far down the gradient shows */
  background-image: url('https://personal.shekharhans.com/wp-content/uploads/2026/09/image-365790-1.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.case-studies-container {
    position: relative;
    z-index: 1;
}
.case-studies-section {
/*   max-width: 1300px;
  margin: 0 auto; */
  padding: 95px 20px 70px;
/* 	position:relative; */
  font-family: var(--font-parkinsans);
}
.case-studies-container{
	max-width:1300px;
	margin:0 auto
}
.case-studies-heading-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.case_study_information {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.para_container_case {
    max-width: 270px;
    font-size: 16px;
}
.line-mask-container {
    display: flex;
    gap: 10px;
    margin-top: 13px;
}
.case-studies-heading {
 font-family: var(--font-parkinsans);
    font-weight: 400;
    font-size: 130px;
    line-height: 100%;
    letter-spacing: -6px;
    text-align: left;
    color: #000;
    max-width: 888px;
    margin: 0 auto;
}

.case-studies-heading .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  will-change: transform, opacity;
}

/* ============ PILL-STYLE CATEGORY TABS (desktop) ============ */
.case-studies-tabs {
  display: flex;
/*   justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 61px;
/*   opacity: 0;
  transform: translateY(16px); */
}

.case-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e2e5;
  border-radius: 999px;
  padding: 13px 28px;
  font-family: var(--font-goga);
  font-size: 14px;
  font-weight: 600;
letter-spacing: 6%;
    text-transform: uppercase;
    color: #797979;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
button.case-tab:hover {
    color: #000;
}
.case-tab.active:hover {
    color: #fff !important;
}
.case-tab::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
}
.case-tab:hover {
  border-color: #c9c9cc;
}

.case-tab.active {
  background: #000;
  border-color: #000;
  color: #fff !important;
}

.case-tab.active::after {
  opacity: 1;
}

.case-tab .tab-count,
.case-tab span {
  color: #9a9a9e;
  font-weight: 500;
}

.case-tab.active .tab-count,
.case-tab.active span {
  color: rgba(255, 255, 255, 0.65);
}

/* "See more / See less" trigger pill */
.case-tab-more {
  background: none;
  border: 1px solid transparent;
  color: #1a1a1a;
}

.case-tab-more::after {
  content: '⌄';
  font-size: 16px;
  opacity: 1;
  transition: transform .25s ease;
}

.case-tab-more.is-expanded::after {
  transform: rotate(180deg);
}

.case-tab-more:hover {
  color: #FC2600;
}

/* ============ GRID + CARDS ============ */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px 15px;
}

.case-card {
/*   opacity: 0;
  transform: translateY(24px); */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-card.card-fade-out {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
}

.case-image {
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  width: 100%;
  object-fit: cover;
  background: #eee;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

.case-card:hover .case-image img {
  transform: scale(1.06);
}

.case-name {
  margin: 16px 0 0;
  font-family: var(--font-parkinsans);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration: none;
  text-transform: capitalize;
  color: #000000EE;
}

/* ============ ANIMATIONS ============ */
.case-studies-section.in-view .case-studies-heading .split-word {
  animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards;
}
.case-studies-section.in-view .case-studies-tabs {
/*   animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; */
}
.case-studies-section.in-view .case-card {
/*   animation: riseInCard 0.6s cubic-bezier(.22, .9, .32, 1) forwards; */
}

@media (prefers-reduced-motion: reduce) {
  .case-studies-heading .split-word,
  .case-studies-tabs,
  .case-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============ MOBILE: dropdown filter instead of pill row ============ */
.mobile-filter-dropdown {
  display: none;
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: 48px 20px 16px;
  }
	.case-studies-heading-container{
		flex-direction:column;
		    gap: 30px;
		align-items: normal;
	}
  .case-studies-grid {
    gap: 20px 14px;
	  grid-template-columns: 1fr;
  }

  .case-studies-tabs {
    display: none; /* hide the pill row entirely on mobile */
  }

  .mobile-filter-dropdown {
    display: block;
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 40px;
  }

  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e2e5;
    border-radius: 999px;
    font-family: var(--font-goga);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-filter-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
    flex-shrink: 0;
  }

  .mobile-filter-dropdown.is-open .mobile-filter-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-filter-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 6px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e2e5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 30;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease;
  }

  .mobile-filter-dropdown.is-open .mobile-filter-list {
    max-height: 320px;
    opacity: 1;
    overflow-y: auto;
  }

  .mobile-filter-list li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    background: none;
    border: none;
    font-family: var(--font-goga);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
  }

  .mobile-filter-list li button.active {
    background: #f2f2f2;
    color: #FC2600;
  }
}
.contact-hero-section {  padding: 80px 40px 100px; font-family: var(--font-parkinsans); }
.contact-hero-container { max-width:1300px; position:relative; margin:0 auto;display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-badge {
  display: inline-block;     width: fit-content; font-family: var(--font-inter); font-weight: 700; font-size: 11px; border: 1px solid #E5E7EB;
  line-height: 100%; text-transform: uppercase; color: #111827; background: #1118270D; padding: 6px 12px; border-radius: 6px; margin-bottom: 21px;
}

.contact-badge .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-heading {
  color: #111827; margin: 0 0 20px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 100%;
}

.contact-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.contact-desc {
  color: #000; max-width: 560px; font-family: var(--font-goga); font-weight: 400; font-size: 18px; line-height: 150%;
  letter-spacing: 0%; margin: 0 0 40px;
}

.contact-desc .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-testimonial {
  border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; max-width: 560px; box-shadow: 0px 10px 24px -8px #0000000D;
  opacity: 0; transform: translateY(24px);
}

.contact-testimonial-slides { position: relative; min-height: 130px; margin-bottom: 18px; }

.contact-slide {
  position: absolute; top: 0; left: 0; width: 100%; opacity: 0; pointer-events: none; transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-slide.active { opacity: 1; pointer-events: auto; transform: translateX(0); position: relative; }

.contact-quote {
  color: #111827; margin: 0 0 30px; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 160%; letter-spacing: 0%;
}

.contact-slide-person { display: flex; align-items: center; gap: 12px; }

.contact-avatar { width: 40px; height: 40px; border: 1px solid #E5E7EB; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-testimonial-info { min-width: 0; }

.contact-testimonial-name {
  margin: 0; color: #111827; font-family: var(--font-goga); font-weight: 600; font-size: 14px; line-height: 100%; letter-spacing: 0%;
}

.contact-testimonial-role {
  margin: 7px 0 0; font-family: var(--font-goga); font-weight: 400; font-size: 12px; line-height: 100%; letter-spacing: 0%; color: #6B7280;
}

.contact-testimonial-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #eeeeec; }
.contact-dots { display: flex; gap: 6px; }

.contact-dots .dot {
  width: 5px; height: 5px; border-radius: 100%; background: #6B7280; border: none; padding: 0; cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.contact-dots .dot.active { background: #111111; width: 16px; border-radius: 3px; }
.contact-testimonial-nav { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.contact-nav-btn {
  width: 36px; height: 36px; border-radius: 6px; border: none; background: #111827; color: #ffffff; display: flex;
  align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease;
}

.contact-nav-btn:hover { background: #2b2b2b; }
.contact-nav-btn svg { width: 16px; height: 16px; }

.contact-hero-right { opacity: 0; transform: translateY(30px) scale(0.98); }

.booking-widget {
  border: 1px solid #e7e7e4; border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); overflow: hidden;
  min-height: 560px; background: #ffffff;
}

.contact-hero-section.in-view .contact-badge .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-desc .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-testimonial { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-hero-right { animation: riseInCal 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInCal { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .contact-badge .split-word, .contact-heading .split-word, .contact-desc .split-word, .contact-testimonial, .contact-hero-right {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 900px) {
  .contact-hero-container { grid-template-columns: 1fr; gap: 0px; }

  /* Mobile order: badge/heading/desc first, then the booking widget
     (contact-hero-right), then the testimonial card last — instead of
     the default badge/heading/desc/testimonial, then booking widget.
     .contact-hero-left becomes display:contents so its children
     (badge, heading, desc, testimonial) become direct items of
     .contact-hero-container and can be reordered individually; only
     .contact-testimonial actually needs to move. */
  .contact-hero-left { display: contents; }
  .contact-badge,
  .contact-heading,
  .contact-desc { order: 1; }
  .contact-hero-right { order: 2; }
  .contact-testimonial { order: 3; margin-top:60px }
	.contact-field{
		margin-bottom:15px;
	}
}

@media (max-width: 480px) {
  .contact-hero-section { padding: 48px 20px 56px; }
  .contact-testimonial { max-width: none; }
}

.trust-section { max-width: 1160px; margin: 0 auto; padding: 40px 40px 100px; font-family: var(--font-parkinsans); }

.trust-label {
  text-align: center; font-family: var(--font-parkinsans); font-weight: 500; font-size: 13px; line-height: 100%;
  letter-spacing: 0%; text-transform: lowercase; color: #6B7280; margin: 0 0 24px;
}

.trust-label .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.trust-bar {
  display: flex; align-items: stretch; background: #F3F4F6; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden;
  opacity: 0; transform: translateY(20px);
}

.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center; font-family: var(--font-inter); font-weight: 700;
  font-size: 16px; line-height: 100%; gap: 8px; padding: 22px 16px; border-right: 1px solid #E5E7EB; color: #111827; white-space: nowrap;
}
.trust-item img {
    height: 35px;
}


.trust-item:last-child { border-right: none; }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; color: #111111; }

.trust-section.in-view .trust-label .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.trust-section.in-view .trust-bar { animation: riseInBar 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInBar { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .trust-label .split-word, .trust-bar { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 700px) {
  .trust-bar { flex-wrap: wrap; border-radius: 20px; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid #e2e2df; padding: 14px 10px; font-size: 12px; }
  .trust-item:nth-child(even) { border-left: 1px solid #e2e2df; }
}

@media (max-width: 480px) { .trust-section { padding: 32px 20px 40px; } }

.contact-form-section { margin: 0 auto; padding: 60px 20px 100px; font-family: var(--font-parkinsans); background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%); }
.contact-form-container { padding: 70px 20px 150px; max-width: 1300px; margin: 0 auto; }
.contact-form_inner_container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }

.contact-form-heading {
  font-family: var(--font-parkinsans); font-size: 55px; line-height: 118%; letter-spacing: 0%; text-transform: capitalize;
  font-weight: 800; color: #000; max-width: 782px; margin: 0 0 20px;
}

.contact-form-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.contact-form-subtext {
  color: #000; margin: 0 0 136px; font-family: var(--font-goga); font-weight: 400; font-size: 28px; line-height: 163%;
  letter-spacing: 0%; text-transform: capitalize;
}

.contact-form-subtext .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-form-info { display: flex; flex-direction: column; gap: 45px; opacity: 0; transform: translateY(20px); }

.contact-info-label {
  text-transform: uppercase; color: #00000066; margin: 0 0 15px; font-family: var(--font-parkinsans); font-weight: 400;
  font-size: 16px; line-height: 100%; letter-spacing: 0%;
}

.contact-info-value {
  color: #000; margin: 0; font-family: var(--font-parkinsans); font-weight: 800; font-size: 18px; line-height: 112.99999999999999%;
  letter-spacing: 0%; text-transform: lowercase;
}

.contact-form { display: flex; flex-direction: column; gap: 30px; opacity: 0; transform: translateY(30px); }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 10px; margin-bottom:30px }

.contact-field label {
  font-family: var(--font-parkinsans); font-size: 14px; line-height: 100%; letter-spacing: 0%; font-weight: 600; color: #000;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0px;
}
span.wpcf7-list-item-label a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}
span.wpcf7-list-item-label {
    font-size: 14px;
    font-family: 'Goga Test';
}
.contact-field input, .contact-field select, .contact-field textarea {
  color: #737373; font-family: var(--font-goga); font-weight: 400; font-size: 14px; line-height: 100%; letter-spacing: 0%;
  background: #ffffff; border: 1px solid #262626; border-radius: 10px; padding: 12px 16px; outline: none; transition: border-color 0.2s ease;
	width:100%; margin-top:10px;
}

.contact-field input::placeholder, .contact-field textarea::placeholder { color: #b0b0ac; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: #111111; }
.contact-field textarea { resize: vertical; min-height: 100px; width:100% }

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; cursor: pointer;
}

.contact-checkbox {
  display: flex; align-items: flex-start; gap: 8px; color: #000; font-family: var(--font-goga); font-weight: 400;
  font-size: 14px; line-height: 100%; letter-spacing: 0%; cursor: pointer;
}

.contact-checkbox input { margin-top: 2px; accent-color: #111111; }
.contact-checkbox a { color: #111111; text-decoration: underline; }

.contact-submit-btn {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #F4F4F5; color: #09090b;
  font-family: 'Goga Test'; font-weight: 600; font-size: 14px; line-height: 100%; letter-spacing: 0%; border: none;
  border-radius: 6px; padding: 14px 24px; cursor: pointer; transition: background-color 0.2s ease;margin-top:30px;
}

.contact-submit-btn:hover { background: #2b2b2b; color: #fff}

.contact-submit-btn:hover svg{
	color:#fff
}
.contact-submit-btn svg { width: 14px; height: 14px; }

.contact-form-section.in-view .contact-form-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form-subtext .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form-info { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form { animation: riseInForm 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInForm { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .contact-form-heading .split-word, .contact-form-subtext .split-word, .contact-form-info, .contact-form {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) { .contact-form-container { grid-template-columns: 1fr; gap: 40px; padding: 0px; } }

@media (max-width: 480px) {
  .contact-form-section { padding: 40px 20px 120px; }
  .contact-form-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat-number { font-size: 40px; }
  .stat-label { font-size: 12px; }
  .statement-heading { font-size: 30px !important; }
  .statement-desc { margin-top: 20px; }
  .statement-section { padding: 56px 20px; }
  .case-studies-heading { font-size: 60px; letter-spacing: 0px; }
  .case-name { font-size: 15px; }
  .contact-heading { font-size: 30px; }
  .contact-desc { font-size: 16px; }
  .contact-testimonial { padding: 24px; display:none }
  .contact-quote { font-size: 14px; }
  .contact-form_inner_container { grid-template-columns: 1fr; gap:40px;}
  .contact-form-heading { font-size: 30px; }
  .contact-form-subtext { margin: 0 0 40px; font-size: 18px; }
  .contact-form-info { gap: 20px; }
  .contact-info-value { font-size: 16px; }
}

@media (max-width:750px) { .case-image { height: 350px; } .trust-section{display:none;} }
@media (max-width:550px) { .case-image { height: 300px; } }

.case-sticky-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 40px; background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid #e7e7e4; opacity: 0; transform: translateY(-100%); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-sticky-header.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.case-back-link {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-parkinsans); font-size: 13px;
  font-weight: 700; color: #111111; text-decoration: none;
}

.case-back-link svg { width: 15px; height: 15px; }

.case-hero-section { position: relative; width: 100%;
/* 	height: 100vh;  */
	height:850px;
	min-height: 500px; max-height: 850px; overflow: hidden; }

.case-hero-image { position: absolute; inset: 0; width: 100%; height: 100%;}
.case-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.case-hero-section::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)); pointer-events: none; z-index: 1;
}

.case-hero-back {
  position: absolute; top: 24px; left: 40px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-parkinsans); font-size: 13px; font-weight: 700; color: #ffffff; text-decoration: none;
}

.case-hero-back svg { width: 15px; height: 15px; }

.case-hero-title {
  position: absolute; left: 40px; bottom: 40px; z-index: 2; font-family: var(--font-parkinsans); color: #ffffff;
  font-weight: 500; font-size: 45px; line-height: 109.00000000000001%; letter-spacing: 0%; margin: 0;
}

.case-hero-title .split-word { display: inline-block; opacity: 0; transform: translateY(30px); will-change: transform, opacity; }

.case-content-section { max-width: 1300px; margin: 0 auto; padding: 70px 20px 50px; font-family: var(--font-parkinsans); }
.case-content-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.case-content-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 119%; letter-spacing: 0%;
  color: #000; margin: 0 0 100px;
}

.case-content-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.case-content-label {
  text-transform: uppercase; color: #000000; margin: 0 0 30px; font-family: var(--font-parkinsans); font-weight: 400;
  font-size: 18px; line-height: 119%; letter-spacing: 0%;
}

.case-content-label .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.case-scroll-link {
  font-size: 12px; font-weight: 600; text-transform: uppercase; color: #000; font-family: monospace; text-decoration: underline;
  opacity: 0; transform: translateY(14px); display: inline-block;
}
.case-testimonial-card {
    background: #f3f3f3;
    border-radius: 0px;
    padding: 28px;
    max-width: 500px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
    opacity: 0;
    transform: translateY(20px);
	display:none;
}

.case-testimonial-logo { display: block; height: 80px; width: auto; object-fit: contain; margin-bottom: 20px; }

.case-testimonial-quote {
font-family: 'Goga Test';
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    color: #000;
    opacity: 80%;
    margin: 0 0 24px;
}

.case-testimonial-meta { display: flex; align-items: center; gap: 10px; padding-top: 18px; border-top: 1px solid #ECECEC; }

.case-testimonial-avatar {
 width: 44px;
    height: 44px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.case-testimonial-person { min-width: 0; }

.case-testimonial-name {
  margin: 0; font-family: var(--font-parkinsans); font-weight: 700; font-size: 16px; line-height: 140%; color: #000;
}

.case-testimonial-role {
  margin: 2px 0 0; font-family: "Goga Test"; font-weight: 400; font-size: 14px; line-height: 140%; color: #8a8a86;
}

.case-content-right { border-top: 1px solid #ECECEC; }

.case-detail-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid #ECECEC;
  opacity: 0; transform: translateY(20px);
}

.case-detail-label {
  color: #000; font-family: var(--font-parkinsans); font-weight: 600; font-size: 18px; line-height: 100%; letter-spacing: 0%; margin: 0;
}

.case-detail-value p {
  font-family: var(--font-goga); font-weight: 400; font-size: 18px; line-height: 140%; letter-spacing: 0%; color: #000000; margin: 0 0 9px;
}

.case-detail-value p:last-child { margin-bottom: 0; }
.case-detail-list { margin: 0; padding-left: 18px; }

.case-detail-list li {
  color: #000; font-family: var(--font-goga); font-weight: 400; line-height: 140%; margin-bottom: 9px; letter-spacing: 0%;
}

/* .case-content-left { margin-top: 80px; } */

.case-hero-section.in-view{ animation: riseInImg 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-hero-section.in-view .case-hero-title .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-content-heading .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-content-label .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-scroll-link { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-testimonial-card { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-detail-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .case-hero-title .split-word, .case-content-heading .split-word, .case-content-label .split-word,
  .case-scroll-link, .case-testimonial-card, .case-detail-row { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.mosaic-gallery-section { padding: 100px 32px 100px; font-family: var(--font-parkinsans); background-color: #fff; }
/* Section Spacing options (chosen per-section in ACF on the Case Study's
   flexible content field) — use these when stacking several image/video
   sections back to back so their combined padding doesn't pile up. */
.mosaic-gallery-section--compact { padding: 40px 20px 40px; }
.mosaic-gallery-section--none { padding: 0 20px 0; }
.mosaic-container { display: flex; flex-direction: column; gap: 12px; max-width: 100%; margin: 0 auto; }

.mosaic-item { overflow: hidden; background: #eee; position: relative; border-radius:8px; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic-item video{
	width:100%;
	height:100%;
}

.mosaic-video { height: 771px; }
.mosaic-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

.mosaic-row { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.mosaic-row .mosaic-item { height: auto; width: 100%; }
.mosaic-wide { height: auto; }
/* 
.mosaic-gallery-section.in-view .mosaic-video { animation: riseInMosaic 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item { animation: riseInMosaic 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item:nth-child(1) { animation-delay: 0.7s; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item:nth-child(2) { animation-delay: 0.85s; }
.mosaic-gallery-section.in-view .mosaic-wide { animation: riseInMosaic 0.75s cubic-bezier(.22, .9, .32, 1) forwards; animation-delay: 1.05s; }

@keyframes riseInMosaic { to { opacity: 1; transform: translateY(0); } }
 */
/* @media (prefers-reduced-motion: reduce) {
  .mosaic-item { opacity: 1 !important; transform: none !important; animation: none !important; }
} */

.story-section { max-width: 1300px; margin: 0 auto; padding: 100px 20px 0; font-family: var(--font-parkinsans); }
.story-section--compact { padding: 40px 20px 0; }
.story-section--none { padding: 0 20px 0; }
.story-top { display: flex; justify-content: space-between; gap: 80px;  }

.story-eyebrow {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 13px; line-height: 100%; letter-spacing: 0%;
  text-transform: uppercase; color: #9CA3AF; opacity: 0; transform: translateY(14px);
}

.story-text { max-width: 820px; }

.story-lead {
  font-family: var(--font-parkinsans); font-size: 24px; line-height: 145%; letter-spacing: 0%; font-weight: 700; color: #111827; margin: 0 0 32px;
}

.story-lead .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.story-para {
  color: #4B5563; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 165%; letter-spacing: 0%; margin: 0 0 24px;
}

.story-para .split-word { display: inline-block; opacity: 0; transform: translateY(10px); }

.story-image { width: 100%; height: 700px; background: #111111; border-radius: 0; overflow: hidden; opacity: 0; transform: translateY(40px); }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-section.in-view .story-eyebrow { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-lead .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-para .split-word { animation: riseIn 0.4s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-image { animation: riseInImg 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .story-eyebrow, .story-lead .split-word, .story-para .split-word, .story-image {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) {
  .story-top { grid-template-columns: 1fr; gap: 16px; flex-wrap: wrap; margin-bottom: 0px; }
}

@media (max-width: 780px) {
  .story-section { padding: 70px 20px 0; }
  .story-section--compact { padding: 30px 20px 0; }
  .story-section--none { padding: 0 20px 0; }
  .story-lead { font-size: 20px; }
  .story-para { font-size: 15px; }
}

.more-cases-section { margin-top: 100px; background: #FAFAFA; padding: 60px 20px 60px; font-family: var(--font-parkinsans); text-align: center; }

.more-cases-eyebrow {
  color: #4B5563; margin: 0 0 12px; font-family: 'Goga Test'; font-weight: 400; font-size: 16px; line-height: 165%;
  letter-spacing: 0%; text-align: center;
}

.more-cases-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }
p.more-case-category {
    font-family: 'Goga Test';
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    font-weight: 300;
    color: #747474;
    white-space: nowrap;
}
.more-cases-heading {
  color: #000; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 119%; letter-spacing: 0%;
  text-align: center; margin: 0 0 37px;
}

.more-cases-heading .split-word { display: inline-block; opacity: 0; transform: translateY(22px); will-change: transform, opacity; }

.more-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
/* 	margin-bottom: 66px;  */
	text-align: left; }
.more-cases-grid > a:nth-child(4) {
  display: none;
}
.more-cases-container { max-width: 1300px; margin: 0 auto; }
.more-case-card { opacity: 0; transform: translateY(30px); }
.more-case-image { border-radius: 11px; overflow: hidden; height: 398px; width: 100%; background: #eee; margin-bottom: 14px; }

.more-case-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

.more-case-card:hover .more-case-image img { transform: scale(1.06); }

.more-case-title {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 150%; letter-spacing: 0%;
  text-transform: capitalize; color: #000000EE; margin: 0 0 8px;
}

.more-case-desc { color: #4B5563; margin: 0; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 155%; letter-spacing: 0%; }

.more-cases-cta {
  display: inline-block; background: #FC2600; color: #ffffff; font-family: Parkinsans; font-size: 14px; line-height: 100%;
  font-weight: 800; text-transform: uppercase; padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: background-color 0.2s ease; opacity: 0; transform: translateY(20px);
}

.more-cases-cta:hover { background: #d1361f; }

.more-cases-section.in-view .more-cases-eyebrow .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-cases-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-case-card { animation: riseInCard 0.65s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-cases-cta { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .more-cases-eyebrow .split-word, .more-cases-heading .split-word, .more-case-card, .more-cases-cta {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) {
	.more-cases-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.more-cases-grid > a:nth-child(4) {
    display: block;
  } 
.more-case-image{
		height:300px
	}
}
@media (max-width: 500px) {
	.more-cases-grid { grid-template-columns: 1fr; gap: 32px; }
	.more-cases-grid > a:nth-child(4) {
    display: block;
  }
	.more-case-image{
		height:300px
	}
}

@media (max-width: 780px) {
  .more-cases-section { padding: 70px 20px; margin-top: 30px; }
  .more-cases-heading { font-size: 30px; }
}

@media (max-width: 780px) {
  .case-hero-section { min-height: 380px; height:450px;}
  .case-hero-back { left: 20px; }
  .case-hero-title { left: 20px; bottom: 24px; font-size: 30px; }
  .case-content-left { margin-top: 0px; }
  .case-content-heading { font-size: 30px; }
  .case-content-label { font-size: 16px; margin: 0 0 0px }
  .case-testimonial-card { max-width: none; padding: 22px; }
  .case-testimonial-quote { font-size: 13px; }
  .case-detail-row { padding: 28px 0; }
  .case-detail-value p { font-size: 16px; }
  .mosaic-video { height: 400px; }
  .mosaic-row { gap: 30px; grid-template-columns: 1fr; }
  .mosaic-row .mosaic-item, .mosaic-wide, .story-image { height: auto; }
  .mosaic-gallery-section { padding: 60px 20px; }
  .mosaic-gallery-section--compact { padding: 24px 20px; }
  .mosaic-gallery-section--none { padding: 0 20px; }
}

@media (max-width: 860px) {
    .case-content-container { grid-template-columns: 1fr; gap: 32px; }
  .case-detail-row { grid-template-columns: 1fr; gap: 20px; }
  .case-content-section { padding: 48px 20px 0px; }

  /* Mobile only: move the testimonial card to after the detail rows
     (case-content-right) instead of right under the heading. Letting
     .case-content-left's children become direct grid items (instead of
     staying boxed as one column) is what lets the testimonial move on
     its own, while the label/heading/"scroll for more" link stay put
     above the detail rows. */
  .case-content-left { display: contents; }
  .case-content-label,
  .case-content-heading,
  .case-scroll-link { order: 1; }
  .case-content-right { order: 2; }
	.case-content-heading{
		margin-bottom:0px;
	}
  .case-testimonial-card { order: 3; }
}


/* ============================================================
   "WHAT WE DO" PINNED CARDS SECTION — rebuilt
   Root cause of the big black area on tall/wide screens:
   .dm-sticky was only ever made as tall as ONE card row (~600px).
   On a 1920x1080 screen the pinned box sat at the top of the
   browser window while the rest of the screen showed plain black
   section background underneath it during the scroll. Fix:
   .dm-sticky is now a real 100vh box and the row of cards is
   vertically centered inside it, so the pinned view always
   exactly fills the screen — no leftover gap on any screen size.
   ============================================================ */

.dm-section {
  position: relative;
  background: #000;
  color: #fff;
}

.dm-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.dm-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.dm-stage {
  position: relative;
  width: 100%;
  /* height set via JS to exactly one row's content height */
}

.copy-anchor {
  position: absolute;
  left: 0;
  top: 68px;
  width: 390px;
  min-height: 260px;
}

.copy-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.copy-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


  .copy-title {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    font-weight: 650;
    color: #fff;
    font-family: var(--font-parkinsans);
}

.copy-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
}

.copy-rule {
  height: 1px;
  width: 100%;
  margin: 0 0 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .02));
}

/* ---------- BULLET LIST (matches the reference design) ---------- */
.copy-bullets {
list-style: none;
    margin: 38px 0 37px;
  
    letter-spacing: 0%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.copy-bullets li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-parkinsans);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.copy-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
  background-image: url('../images/li_before_icon.svg'); /* or png */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- CTA BUTTON (always visible; not tied to the
   scroll-reveal system used by other sections' .cta-btn) ---------- */
.dm-cta-btn {
  display: inline-block;
  background: #FC2600;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-parkinsans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
  opacity: 1;
  transform: none;
}

.dm-cta-btn:hover { background: #d1361f; }
.dm-cta-btn:active { transform: scale(0.97); }

.cards-viewport {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  /* height set via JS to exactly one row's content height */
}

.trigger-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, .0);
  pointer-events: none;
}

.cards-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  will-change: transform;
}

.dm-card {
  position: absolute;
  width: 376px;
  height: 528px;
  border-radius: 19px;
  overflow: hidden;
  background: #111;
  transform: translateZ(0);
}

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


/* ============================================================
   ACCORDION LIST — this is the ACTIVE styling used by the
   "What We Do" / services section markup (.service-list >
   .service-item > .service-row / .service-body). Previously this
   selector set was declared TWICE in the stylesheet: an old,
   unused "stacked panel" version further up (with
   `.service-item { position:absolute; top:0; left:0; width:100%;
   height:100%; }` and a plain `.service-title`/`.service-list li`
   bullet layout) and this accordion version. Because both blocks
   targeted the same class names, the later declarations only
   partially overrode the earlier absolute-positioning rules,
   so every accordion row collapsed on top of the others instead
   of stacking normally — that was the overlap bug. The old block
   has been removed; this is now the only definition. ============
   ============================================================ */
.service-list {
    margin: 0 auto;
    max-width: 1440px;
}

.service-item {
    border-top: 1px solid #CFCFCF;
    border-bottom: 0px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 45px 10px;
    cursor: pointer;
}

.service-index {
    font-family: 'Geist Mono';
    font-size: 18px;
    color: #FF1900;
    align-self: flex-start;
    margin-top: 6px;
    min-width: 20px;
}

.service-title {
    flex: 1;
    font-family: 'Goga Test';
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.service-toggle {
    /* width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25); */
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .3s ease, border-color .3s ease;
}

.service-toggle::before,
.service-toggle::after {
    content: "";
    position: absolute;
    background: #e2543c;
    transition: transform .35s ease, opacity .35s ease;
}

.service-toggle::before {
    width: 32px;
    height: 1.6px;
}

.service-toggle::after {
    width: 1.6px;
    height: 32px;
}

.service-item.is-open .service-toggle {
    background: #e2543c;
    border-color: #e2543c;
    transform: rotate(90deg);
}

.service-item.is-open .service-toggle::before,
.service-item.is-open .service-toggle::after {
    background: #0a0a0a;
}

.service-item.is-open .service-toggle::after {
    opacity: 0;
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s cubic-bezier(.22, 1, .36, 1);
}

.service-body-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 4px 0 34px 50px;
    align-items: start;
}

.service-copy p {
    font-family: 'Parkinsans';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
    max-width: 350px;
    margin-bottom: 55px;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15%;
}

.service-bullets li {
    font-family: 'Goga Test';
    font-weight: 400;
    font-size: 16px;
    line-height: 161%;
    letter-spacing: 0%;
    color: #fff;
	text-transform:uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.service-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    background-image: url("https://personal.shekharhans.com/wp-content/uploads/2026/09/li_before_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
}

.service-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
    width: 500px;
}

.service-image .art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mobile-flow { display: none }

#serviceSource { display: none; }

@media (max-width: 899px) {
  .dm-section { height: auto !important }
 .service-bullets {
        padding-left: 0;
    }
	.service-copy p{
		margin-bottom:20px;
	}
	.service-row{
		padding: 25px 10px;
	}
	.service-body-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 4px 0 35px 0px;
    align-items: start;
}
    .service-title {
        font-size: 20px;
    }
  .dm-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    display: block;
    padding: 44px 0 72px;
  }

  .dm-shell {
    width: calc(100vw - 32px);
    height: auto;
    margin: 0 auto;
  }

  .dm-stage { position: relative; top: auto; left: auto }

  .cards-viewport, .copy-anchor { display: none }

  .mobile-flow { display: block }
  .mobile-service { margin-bottom: 66px }
  .mobile-copy { margin-bottom: 24px }

  .mobile-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
  .mobile-card { border-radius: 16px; overflow: hidden; aspect-ratio: 376/528 }
  .mobile-card img { width: 100%; height: 100%; object-fit: cover; display: block }
}

@media (max-width: 560px) {
  .mobile-cards { grid-template-columns: 1fr }
}
@media (max-width: 700px){
	.service-image {
    height: 300px;
    width: 100%;
}
}
@media (min-width: 861px) and (max-width: 1100px){
	.side{
		margin-top:0px;
	}
	
.headline {
    font-size: 45px;
	}
	.faq-heading{
		font-size:40px;
	}
	.footer-wordmark img{
		height:auto;
	}
}

/* ============ MOBILE ENTRANCE ANIMATION (dm-section) ============ */
@media (max-width: 899px) {
  .mobile-copy .copy-title,
  .mobile-copy .copy-rule,
  .mobile-copy .copy-bullets,
  .mobile-copy .dm-cta-btn {
    opacity: 0;
    transform: translateY(16px);
  }
	.service-bullets li{
		font-size:14px;
		margin-bottom:4px;
	}

  .mobile-cards .mobile-card {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  .mobile-service.in-view .copy-title,
  .mobile-service.in-view .copy-rule,
  .mobile-service.in-view .copy-bullets,
  .mobile-service.in-view .dm-cta-btn {
    animation: mobileRiseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards;
  }

  .mobile-service.in-view .mobile-card {
    animation: mobileCardIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards;
  }

  @keyframes mobileRiseIn { to { opacity: 1; transform: translateY(0); } }
  @keyframes mobileCardIn { to { opacity: 1; transform: translateY(0) scale(1); } }

  @media (prefers-reduced-motion: reduce) {
    .mobile-copy .copy-title,
    .mobile-copy .copy-rule,
    .mobile-copy .copy-bullets,
    .mobile-copy .dm-cta-btn,
    .mobile-cards .mobile-card {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
  }
}
@media (max-width: 500px){
	.headline{
		font-size:32px;
	}
}

/* keep the heading readable on small phones */
@media (max-width: 420px) {
  .copy-title { font-size: 28px; }
}
@media (min-width: 1920px){
	.footer-glow img{
		top:-190px;
	}
	.case-hero-section{
		height:100vh;
		max-height:100vh;
	}
}
@media (min-width: 3000px) {
    .footer-glow img {
        top: -296px;
    }
}
.flag-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
	    margin-bottom: 40px;
}

.flag-icon {
  width: 40px;
  height: 40px;
  overflow: visible;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.shk-about-section {
	--about-accent: #ef4923;
	--about-text: #171717;
	--about-muted: #6b6b6b;
	--about-max-width: 1400px;

	padding: 60px 20px 64px;
	background: #ffffff;
	overflow: hidden;
		position:relative;
}

.shk-about-container {
	max-width: var(--about-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 111px;

}

/* ---------- Photo + gradient ---------- */

.shk-about-photo-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 520px;
}

.shk-about-gradient-bg {
	position: absolute;
	inset:0;
	z-index: 0;
	    opacity: 0.74;
/* 	border-radius: 50%;
	filter: blur(40px); */
/* 	background: radial-gradient(
			circle at 30% 30%,
			rgba(255, 214, 224, 0.9) 0%,
			rgba(255, 214, 224, 0) 55%
		),
		radial-gradient(
			circle at 70% 25%,
			rgba(255, 233, 190, 0.85) 0%,
			rgba(255, 233, 190, 0) 55%
		),
		radial-gradient(
			circle at 50% 75%,
			rgba(200, 225, 255, 0.85) 0%,
			rgba(200, 225, 255, 0) 55%
		); */
/* 	background-repeat: no-repeat;
	background-position: center; */
	background-size: cover;
}

.shk-about-photo {
	position: relative;
	z-index: 1;
	max-width: 100%;
	height: auto;
	max-height: 800px;
	object-fit: contain;
	display: block;
}

/* ---------- Text content ---------- */

.shk-about-content {
	max-width: 520px;
}

.shk-about-heading {
	font-family: var(--font-parkinsans);
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #000;
    margin: 0 0 20px;
    max-width: 532px;
}

/* If you use SplitType/GSAP on [data-split-words], each .word span
   should inherit this — no extra styling needed here, just make sure
   your split script doesn't strip the heading's own classes. */

.shk-about-desc {
	    color: #000000EE;
    font-family: 'Parkinsans';
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    max-width: 580px;
    margin: 0 0 44px;
}

.shk-about-signature {
	    margin-bottom: 55px;
    rotate: -8deg;
    margin-top: -27px;
}

.shk-signature-text {
	font-family: 'Michigan Signature';
    font-weight: 400;
    font-size: 25px;
    line-height: 150%;
    rotate: -8deg;
    letter-spacing: 0%;
    color: #0800F6EE;
}

.shk-about-role {
	    color: #000;
    margin: 2px 0 0;
    font-family: 'Parkinsans';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
}

.cta-btn.shk-about-cta-btn {
	display: inline-block;
	padding: 14px 30px;
	background: var(--about-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: 999px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cta-btn.shk-about-cta-btn:hover {
	background: #d63d16;
	box-shadow: 0 10px 24px rgba(239, 73, 35, 0.28);
	transform: translateY(-2px);
}

.cta-btn.shk-about-cta-btn:focus-visible {
	outline: 2px solid var(--about-accent);
	outline-offset: 3px;
}

/* ---------- Trust badges row ---------- */

.shk-about-badges {
	max-width: var(--about-max-width);
    margin: 88px auto 90px;
    padding-top: 21px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 56px;
}

.shk-about-badge {
	display: inline-flex;
	align-items: center;
    opacity: 1;
    padding-right: 40px;
    border-right: 1px solid #D7D7D7;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.shk-about-badge:last-child {
    border-right: none;
}

.shk-about-badge img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

a.shk-about-badge:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* ==========================================================================
   Scroll-reveal animation
   Photo and content rise together (content slightly delayed), badges
   follow after. One coordinated reveal, triggered once via
   IntersectionObserver in shk-about-section.js by toggling .is-inview on
   the section, not scattered per-element effects.
   ========================================================================== */

[data-shk-reveal] {
	opacity: 0;
	transform: translateY(48px);
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

[data-shk-reveal="left"] {
	transition-delay: 0.05s;
}

[data-shk-reveal="right"] {
	transition-delay: 0.2s;
}

[data-shk-reveal="up"] {
	transition-delay: 0.35s;
}

.shk-about-section.is-inview [data-shk-reveal] {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-shk-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
	.shk-about-container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.shk-about-badges{
		margin:88px auto 40px;
		padding-top:2px;
	}
	.shk-about-heading{
	 font-size: 30px;
        line-height: 120%;
	}
	.shk-about-content {
		max-width: 100%;
		margin: 0 auto;
		text-align:left;
	}

	.shk-about-desc {
		margin-left: auto;
		margin-right: auto;
		font-size:17px;
	}

	.shk-about-photo-wrap {
		min-height: 420px;
	}

	.shk-about-badges {
		gap: 36px;
		margin-top: 56px;
	}
	.shk-about-gradient-bg{
		height:200px;
		width:100%;
	}
}

@media (max-width: 520px) {
	.shk-about-section {
		padding: 64px 20px 48px;
	}

	.shk-about-badges {
		gap: 15px;
	}

	.shk-about-badge img {
		height: 40px;
	}
	.shk-about-badge{
		padding-right:15px;
	}
}

.back-to-top {
 position: fixed;
    right: 50px;
    bottom: 170px;
    width: 52px;
    height: 52px;
  border-radius: 50%;
  background: #FC2600;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s, background-color .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease;
}

.back-to-top:hover { background: #d1361f; }
.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 250px; width: 44px; height: 44px; }
  .back-to-top svg { width: 16px; height: 16px; }
}

.brandwall-section {
	padding: 30px 20px 45px;
	text-align: center;
	background: #fff;
	position: relative;
}

.brandwall-container {
	max-width: 1300px;
	margin: 0 auto;
}

.brandwall-eyebrow {
    font-size: 20px;
    font-weight: 400;
    /* letter-spacing: 0.14em; */
    font-family: 'Parkinsans';
    /* text-transform: uppercase; */
    color: #000;
    margin: 0 0 70px;
}

.brandwall-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 10px;
	row-gap: 25px;
}

.brandwall-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: transparent;
	transition: background 0.2s ease;
}
.brandwall-cell:hover{
	background: #f6f6f6;
}
/* zoom icon */
/* zoom icon — visible by default, hides when the preview box shows on hover */
.brandwall-zoom {
	    position: absolute;
    top: 5px;
    right: 16px;
    width: 18px;
    height: 18px;
    border: none;
    background: transparent;
    color: #646464;
	opacity: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease, color 0.2s ease;
	z-index: 3;
}

.brandwall-zoom svg {
	width: 16px;
	height: 16px;
}

.brandwall-cell:hover .brandwall-zoom {
	opacity: 0;
}

.brandwall-mark {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1;
}

.brandwall-mark img {
	max-height: 40px;
/* 	width: auto;
	object-fit: contain;
	flex-shrink: 0; */
}

.brandwall-mark span {
	font-size: 16px;
	font-weight: 700;
	color: #16181a;
	white-space: nowrap;
	letter-spacing: -0.01em;
}

/* hover preview card */
.brandwall-preview {
	position: absolute;
	bottom: calc(100% + 14px);
	left: 0;
	width: 280px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	pointer-events: none;
	z-index: 10;
}

.brandwall-cell:hover .brandwall-preview {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.brandwall-preview-card {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    padding: 20px 22px;
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); */
}
.brandwall-preview-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.brandwall-preview-text {
	position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 15.5px;
    line-height: 1.55;
    font-family: 'Goga Test';
    font-weight: 400;
    text-align: left;
}

.brandwall-preview-arrow {
	position: absolute;
	bottom: -6px;
	left: 40px;
	width: 12px;
	height: 12px;
	background: #111;
	transform: rotate(45deg);
}

/* mobile-only infinite logo carousel */
.brandwall-marquee {
	display: none;
}

@media (max-width: 1100px) {
	.brandwall-grid {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 48px;
	}
	.brandwall-preview{
		width:100%;
	}
}

@media (max-width: 640px) {
	/* hide the desktop grid entirely — this also disables all hover/zoom/preview/bg behavior */
	.brandwall-grid {
		display: none;
	}

	.brandwall-marquee {
		display: block;
		overflow: hidden;
		width: 100%;
		-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
		mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	}

	.brandwall-marquee-track {
		display: flex;
		align-items: center;
		width: max-content;
		gap: 40px;
		animation: brandwall-scroll 20s linear infinite;
	}

	.brandwall-marquee-item {
		display: flex;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
	}

	.brandwall-marquee-item img {
		max-height: 32px;
		width: auto;
	}

	.brandwall-marquee-item span {
		font-size: 14px;
		font-weight: 700;
		color: #16181a;
		white-space: nowrap;
	}

	@keyframes brandwall-scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}
}
.stickybar-wrap {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 24px;
	display: flex;
	justify-content: center;
	z-index: 999;
	pointer-events: none; /* let clicks pass through empty space around the pill */
}
div#stickybarWrap::after {
    content: "";
    position: absolute;
    width: 100%;
    backdrop-filter: blur(2px);
    height: 100%;
    bottom: -24px;
    z-index: 5;
}
.stickybar-pill {
	pointer-events: auto;
    display: flex;
    align-items: stretch;
    background: #ffffff;
   	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 3px;
	z-index: 8;
	gap: 4px;
}

.stickybar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 3px;
	font-size: 13.5px;
    font-family: 'Goga Test';
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.stickybar-btn--primary {
	background: #fc2600;
	color: #fff;
}

.stickybar-btn--primary:hover {
	background: #fc2600;
	color: #fff;
}

.stickybar-btn--secondary {
	background: transparent;
	color: #000;
}

.stickybar-btn--secondary:hover {
	background: #e4e4e4;
	color:#000;
}

/* Mobile: show only the primary "Book an intro call" button, centered */
@media (max-width: 640px) {
	.stickybar-btn--secondary {
		display: none;
	}

	.stickybar-pill {
		justify-content: center;
		border-radius: 999px;
	}

	.stickybar-btn--primary {
/* 		width: 100%; */
		text-align: center;
		border-radius:999px
	}
}
/* prevents the bar from covering page content — add this padding to body or your footer wrapper */
body {
/* 	padding-bottom: 90px; */
}
@media (max-width: 650px){
	.wa-float-widget{
		    bottom: 90px;
	}
}

@media (max-width: 480px) {
	.stickybar-wrap {
		bottom: 16px;
		left: 16px;
		right: 16px;
	}
	.stickybar-pill {
/* 		width: 100%; */
	}
	.stickybar-btn {
/* 		flex: 1; */
		padding: 12px 16px;
	}
	.wa-float-widget{
		
	}
}


/* ---------- Section wrapper ---------- */
.tools-section {
  position: relative;
  padding: 80px 24px 80px;
  overflow: hidden;
/*   background: #f7f7f8; */
}
 
/* Swap this background-image for your own gradient image */
.tools-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://personal.shekharhans.com/wp-content/uploads/2026/09/image-365790.png"); /* <-- put your gradient image here */
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}
 
/* Fallback gradient (shows if no image is set / while image loads) */
.tools-bg::before {
/*   content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%,
    rgba(255, 205, 178, 0.55) 0%,
    rgba(255, 182, 217, 0.35) 35%,
    rgba(173, 196, 255, 0.25) 60%,
    rgba(247, 247, 248, 0) 100%);
  z-index: -1; */
}
 
.tools-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}
 
/* ---------- Header ---------- */
.tools-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
 
.tools-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2b6bff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(43, 107, 255, 0.35);
}
 
.tools-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #b98cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
 
.tools-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4f4f4f;
    text-transform: uppercase;
    font-family: 'Goga Test';
    margin-bottom: 14px;
}
 
.tools-heading {
  font-size: 55px;
    font-weight: 500;
    font-family: 'Parkinsans';
    line-height: 1.2;
    color: #000;
    margin-bottom: 18px;
}
 
.tools-subheading {
  font-size: 18px;
    line-height: 1.6;
    font-family: 'Goga Test';
    color: #000;
}
 
/* ---------- Grid ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 40px;
}
 
.tools-category-label {
  font-size: 14px;
    font-weight: 700;
    font-family: 'Parkinsans';
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 16px;
}
 
.tools-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
 
.tool-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 0px;
  padding: 20px;
/*   box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.04); */
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
 
.tool-card:hover {
  transform: translateY(-2px);
/*   box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08); */
}
 
.tool-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
 .tool-icon svg,
.tool-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tool-name {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Goga Test';
    color: #000;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
/* ---------- Floating badge (bottom right, like reference) ---------- */
.tools-badge-floating {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 2;
}
 
/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tools-badge-floating {
    display: none;
  }
	.tools-heading{
		    font-size: 25px;
	}
	
.tools-section {
    position: relative;
    padding: 60px 20px 20px;
	}
}
 
@media (max-width: 480px) {
  .tools-cards {
    grid-template-columns: 1fr;
  }
  .tools-section {
    padding: 70px 20px 20px;
  }
	.tools-subheading br{
		display: none;
	}
}

.drag-gallery {
  position: relative;
  width: 100%;
  padding: 80px 0 60px;
/*   background: #fafafa; */
  overflow: hidden;
}

.drag-gallery-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  -webkit-user-select: none;
}

.drag-gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.drag-gallery-wrapper.is-dragging {
  cursor: grabbing;
}

.drag-gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 48px;
  width: max-content;
}

.drag-item {
  flex: 0 0 auto;
 width: 500px;
    border-radius: 13px;
  overflow: hidden;
  background: #e9e9e9;
/*   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); */
}

.drag-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Staggered heights for the layered look */
.drag-item--tall {
/*      height: 700px; */
	height:auto;
    align-self: flex-start;
/*     width: 576px; */
    width: 30vw;
		max-height:640px;
}


.drag-item--medium {
/*     height: 600px; */
	height:auto;
    align-self: flex-start;
/*     width: 400px; */
    width: 45vw;
	max-height:640px;
}

.drag-item--short {
/* height: 400px; */
	height:auto;
    align-self: flex-start;
/*     width: 400px; */
	width:53vw;	max-height:640px;
}

.drag-gallery-hint {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a3a3a3;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .drag-item {
    width: 220px;
  }
	.drag-gallery{
		padding: 0px;
	}
 .drag-item--tall {
/*         height: auto;
        width: 428px; */
            height: auto;
        width: 30vw;
    }
 .drag-item--medium {
/*         height: 400px;
        width: 300px; */
	 height: 350px;
        width: 45vw;
    }
      .drag-item--short {
/*         height: 300px;
        width: 300px; */
		  height: 400px;
        width: 53vw;
    }
  .drag-gallery-track {
    gap: 16px;
    padding: 0 24px;
  }
	.stats-section{
		    padding: 0px 20px 40px;
	}
	.brandwall-eyebrow{
	margin: 0 0 45px;
}
}
@media (max-width: 479px) {
	.drag-item--tall {
/*         height: auto;
        width: 428px; */
            height: auto;
        width: 70vw;
    }
 .drag-item--medium {
/*         height: 400px;
        width: 300px; */
	 height: 350px;
        width: 100vw;
    }
      .drag-item--short {
/*         height: 300px;
        width: 300px; */
		  height: 400px;
        width: 90vw;
    }
}
.review-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
/* 	padding: 10px 20px 10px 10px; */
/* 	background: #f5f5f5;
	border-radius: 999px; */
	margin-bottom:30px;
	font-family: "Open Sans";
}

/* Stacked avatar circles */
.review-badge__avatars {
	display: flex;
	align-items: center;
}

.review-badge__avatar {
	position: relative;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	overflow: hidden;
/* 	border: 2px solid #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); */
	margin-left: -11px;
}

.review-badge__avatar:first-child {
	margin-left: 0;
}

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

/* Stars + text */
.review-badge__info {
	display: flex;
    align-items: center;
    gap: 8px;
    background: #F9F9F9;
    padding: 10px 11px;
    border-radius: 999px;
}

.review-badge__stars {
	display: flex;
	gap: 2px;
}

.review-badge__star {
	width: 14px;
	height: 14px;
/* 	fill: #f5a623; */
}

.review-badge__text {
    margin: 0 !important;
    font-family: Open Sans !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
}


.review-badge__dot {
	margin: 0 4px;
	color: #999;
}

/* Responsive: stack on very small screens */
@media (max-width: 420px) {
	.review-badge {
/* 		flex-wrap: wrap; */
/* 		justify-content: center; */
		text-align: center;
/* 		padding: 14px 18px; */
	}
	.review-badge__avatars{
		display:none;
	}
	.review-badge__text {
		font-size: 14px;
	}
}