@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');

@font-face {
  font-family: "Eras Md BT";
  src: url('../assets/home/fonts/eras-md-bt-medium.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --69686E: #383840;
  --muted-text: #383840;
}

/* Global Dark Grey Title Tags (Taglines) & Section Descriptions across All Pages */
[class*="-tagline"] span,
[class*="-eyebrow"] span,
.hero-tagline,
.uiux-hero-eyebrow,
.about-hero-tagline span,
.about-hero-story-tagline span,
.about-story-tagline span,
.about-team-tagline span,
.timeline-tagline span,
.about-leaf-tagline span,
.about-meaning-tagline span,
.about-team-philosophy-tagline span,
.awards-hero-tagline span,
.contribution-tagline span,
.gallery-tagline span,
.mobile-apps-hero-tagline span,
.websites-hero-tagline span,
.web-apps-hero-tagline span,
.contact-hero-tagline span,
.location-tagline span,
.life-hero-tagline span,
.life-tagline span,
.fif-tagline span,
.blogs-hero-tagline span,
.clients-hero-tagline span,
.client-logos-tagline span,
.ecommerce-hero-tagline span,
.uiux-tagline span,
.uiux-hero-eyebrow span,
.media-hero-tagline span,
.media-story-continues-tagline span {
  color: #383840 !important;
}

[class*="-tagline"] svg circle,
[class*="-eyebrow"] svg circle,
.hero-tagline-container svg circle,
.uiux-hero-eyebrow svg circle {
  fill: #383840 !important;
}

.cta-tagline span {
  color: #FFFFFF !important;
}

.cta-tagline svg circle {
  fill: #FFFFFF !important;
}

.hero-paragraph,
.uiux-hero-subtitle,
.services-header-desc,
.featured-subheading,
.presence-header-desc,
.testimonials-header-desc,
.faqs-header-desc,
.contact-header-desc,
.uiux-why-full-desc p,
.uiux-expertise-card-desc,
.uiux-philosophy-subtext,
.uiux-philosophy-card-desc,
.uiux-ux-card-desc,
.stack-intro-text,
.stack-desc-text,
.footer-desc,
[class*="-header-desc"],
[class*="-subheading"] {
  color: #383840 !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Give links and buttons a smooth default easing so state changes
   (color, background, opacity) never snap. Components that set their
   own transition simply override this. */
a,
button {
  transition: color 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Accessible, on-brand focus ring for keyboard users. */
:focus-visible {
  outline: 2px solid #85BD56;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Branded text selection. */
::selection {
  background: rgba(133, 189, 86, 0.28);
  color: #060612;
}

/* Gentle, reusable ambient float — opt in with class="float-anim". */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-anim {
  animation: floatY 6s ease-in-out infinite;
}

/* Honour users who prefer less motion: disable smooth scroll, ambient
   loops, and long transitions everywhere. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==================== Text-swap (roll-up) hover ==================== */
.swap-wrap {
  display: inline-block;
  position: relative;
  overflow: visible;
  vertical-align: bottom;
}

.swap-text-orig {
  display: block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.swap-text-dup {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Hover the ancestor link → both copies roll up one line */
.swap-link:hover .swap-text-orig,
.swap-link:hover .swap-text-dup {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .swap-text-orig,
  .swap-text-dup {
    transition: none;
  }
  .swap-link:hover .swap-text-orig,
  .swap-link:hover .swap-text-dup {
    transform: none;
  }
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 96px;
  border-bottom: 1px solid #F5F4F3;
  background: #FFF;
  margin: 0;
  padding: 0 30px;
  box-sizing: border-box;
  overflow: visible;
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-container.scrolled {
  height: 96px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

/* Patch — scoped to the header box only */
.header-patch {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.header-container.scrolled .header-patch {
  transform: scale(0.85);
  transform-origin: top right;
  opacity: 0.9;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.header-left {
  flex: 0 0 auto;
  padding: 0;
  justify-content: flex-start;
}

.header-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-logo-link:hover .header-logo {
  transform: scale(1.02);
}

.header-middle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
  position: relative;
  z-index: 10001 !important;
  pointer-events: auto !important;
  box-sizing: border-box;
}

.menu-btn span {
  display: block !important;
  width: 24px !important;
  height: 2.5px !important;
  min-height: 2.5px !important;
  background: #75BF46 !important;
  border-radius: 2px !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease !important;
}

.menu-btn:hover span:first-child {
  transform: translateY(-1px) scaleX(0.9);
}

.menu-btn:hover span:last-child {
  transform: translateY(1px) scaleX(0.9);
}

.menu-btn.active span:first-child {
  transform: translateY(3.75px) rotate(45deg) !important;
}

.menu-btn.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg) !important;
}

.header-right {
  flex: 0 0 auto;
  padding: 0;
  justify-content: flex-end;
}

.start-project-btn {
  display: inline-flex;
  padding: 10px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--85BD56, #85BD56);
  border: none;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  color: #FFF;
  position: relative;
  z-index: 2;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 185.714% */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}

.start-project-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 
    0 0 0 3px #E1FFC8,
    0 4px 12px rgba(133, 189, 86, 0.3);
}

.start-project-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 
    2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 
    0 0 0 2px #E1FFC8;
}

.start-project-btn .arrow-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.start-project-btn:hover .arrow-icon {
  transform: translateX(3px);
}

/* Lock page scroll completely when mobile navigation menu is open */
html.menu-open,
body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

body.menu-open header.header-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Backdrop blur behind the drawer */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Styles */
.mobile-drawer {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -20px);
  width: min(920px, 92%);
  max-height: calc(100vh - 120px);
  background: #FFFFFF;
  border: 1px solid rgba(117, 191, 70, 0.15);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(8, 14, 10, 0.12);
  overflow-y: auto;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer.open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

/* Left: menu list */
.drawer-menu-list {
  flex: 1 1 46%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.drawer-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  border-bottom: 1px solid #F0EFED;
  transition: background 0.2s ease;
}

.drawer-menu-list .drawer-menu-item:last-child {
  border-bottom: none;
}

.drawer-menu-item:hover,
.drawer-menu-item.active {
  background: rgba(133, 189, 86, 0.1);
}

.drawer-menu-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(133, 189, 86, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-menu-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #10241A;
}

.drawer-menu-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: #7A8A81;
}

.drawer-menu-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.drawer-menu-item:hover .drawer-menu-chevron,
.drawer-menu-item.active .drawer-menu-chevron {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Drawer Contact CTA Button */
.drawer-menu-item.drawer-contact-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 12px 0 4px 0 !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  background: var(--85BD56, #85BD56) !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.drawer-menu-item.drawer-contact-btn span {
  color: #FFFFFF !important;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.drawer-menu-item.drawer-contact-btn .arrow-icon,
.drawer-menu-item.drawer-contact-btn svg {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.drawer-menu-item.drawer-contact-btn:hover {
  background: #75BF46 !important;
  transform: translateY(-1px) scale(1.01) !important;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.25) !important;
}

.drawer-menu-item.drawer-contact-btn:hover .arrow-icon,
.drawer-menu-item.drawer-contact-btn:hover svg {
  transform: translateX(3px) !important;
}

.drawer-menu-item.drawer-contact-btn:active {
  transform: translateY(0) scale(0.99) !important;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 0 0 0 2px #E1FFC8 !important;
}

/* Right: CTA panel */
.drawer-cta-panel {
  flex: 1 1 54%;
  position: relative;
  background: linear-gradient(135deg, #F2FAEC 0%, #FBFDF9 60%);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.drawer-cta-circle {
  position: absolute;
  top: -60px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(133, 189, 86, 0.1);
  pointer-events: none;
}

.drawer-cta-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #85BD56;
  opacity: 0.6;
  pointer-events: none;
}

.drawer-cta-dot-1 {
  top: 34px;
  right: 78px;
}

.drawer-cta-dot-2 {
  bottom: 60px;
  right: 150px;
  width: 5px;
  height: 5px;
}

.drawer-cta-content {
  position: relative;
  z-index: 1;
  max-width: 260px;
}

.drawer-cta-heading {
  margin: 0 0 14px 0;
  font-family: "Eras Md BT", 'DM Sans', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: #10241A;
}

.drawer-cta-heading .highlight {
  color: #75BF46;
  font-weight: 700;
}

.drawer-cta-divider {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: #85BD56;
  margin-bottom: 16px;
}

.drawer-cta-text {
  margin: 0 0 22px 0;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #69686E;
}

.drawer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid #85BD56;
  color: #599632;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.drawer-cta-btn:hover {
  background: #85BD56;
  color: #FFF;
}

.drawer-cta-btn:hover path {
  stroke: #FFF;
}

.drawer-cta-leaf {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 130px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  pointer-events: none;
}

/* Responsive adjustment for Mobile Header & Drawer */
@media (max-width: 1000px) {
  body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-container {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 12px 16px 12px 20px !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #FFFFFF !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .header-container.scrolled {
    height: 72px !important;
    min-height: 72px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transform: none !important;
  }

  .header-patch {
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    transform: none !important;
  }

  .header-left {
    flex: 0 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    border-right: none;
  }

  .header-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
  }

  .header-logo {
    height: 56px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain;
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: block;
  }

  .header-middle {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 20px;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: none;
  }

  .header-right {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .menu-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 4px;
    margin-top: auto !important;
    margin-bottom: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-drawer {
    position: fixed;
    top: 92px !important;
    left: 50%;
    transform: translate(-50%, 0);
    width: min(420px, 92vw);
    max-height: calc(100vh - 110px) !important;
    z-index: 9999 !important;
    flex-direction: column;
  }

  .drawer-menu-list {
    flex: 0 0 auto;
  }

  .drawer-cta-panel {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 76px !important;
    min-height: 76px !important;
    padding: 10px 16px !important;
  }

  .header-container.scrolled {
    height: 76px !important;
    min-height: 76px !important;
  }

  .header-logo {
    height: 52px !important;
    max-width: 230px !important;
  }

  .header-middle {
    margin-right: 16px;
  }

  .header-patch {
    width: 32px;
    height: 32px;
  }

  .mobile-drawer {
    top: 88px !important;
    max-height: calc(100vh - 104px) !important;
    z-index: 9999 !important;
  }
}

/* Submenu Dropdown Styles */
.dropdown-toggle-btn {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.drawer-menu-item-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #F0EFED;
}

.drawer-menu-item-group .drawer-menu-item {
  border-bottom: none;
}

.drawer-submenu-list {
  max-height: 0 !important;
  opacity: 0;
  overflow: hidden !important;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.3s ease;
  padding-left: 48px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-sizing: border-box;
}

.drawer-menu-item-group.expanded .drawer-submenu-list {
  max-height: 500px !important;
  opacity: 1;
  padding-top: 4px !important;
  padding-bottom: 10px !important;
}

.drawer-submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #4A5A50;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.drawer-submenu-item:hover,
.drawer-submenu-item.active {
  color: #599632;
  background: rgba(133, 189, 86, 0.08);
  transform: translateX(4px);
}

.drawer-submenu-item.active {
  font-weight: 700;
}

.submenu-leaf {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.6;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.drawer-submenu-item.active .submenu-leaf {
  opacity: 1;
}

.drawer-submenu-item:hover .submenu-leaf {
  transform: scale(1.25) rotate(15deg);
  opacity: 1;
}

.dropdown-chevron {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-menu-item-group.expanded .dropdown-chevron {
  transform: rotate(180deg);
}
.hero-section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 100%;
  padding: 24px 40px 0 40px;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
}

.hero-inner-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Outer wrapper (frame effect removed) */
.hero-card-frame {
  display: flex;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* White outer card — no fixed height, sizes to its content */
.hero-outer-card {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 18px;
  overflow: visible;
}

/* Inner row: text panel + visual panel, flush against the card edges */
.hero-card-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
}

.hero-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-content-column {
  align-items: flex-start;
  text-align: left;
  padding: 0 24px 16px 16px;
  box-sizing: border-box;
}

.hero-visual-column {
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 12px 16px 24px 0;
  box-sizing: border-box;
}

.hero-visual-column-mobile {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

.hero-tagline-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.hero-tagline {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-headline {
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(6, 6, 18);
  width: max-content;
  max-width: 100%;
  font-style: normal;
  margin: 0 0 10px 0;
  text-align: left;
  white-space: nowrap;
}

.hero-headline .green {
  color: #85BD56;
}

.hero-headline .dark {
  color: #060612;
}

.hero-headline .orange {
  color: #FF7E00;
}

.hero-headline .dot {
  color: #060612;
  margin: 0 4px;
}

.hero-paragraph {
  width: 100%;
  max-width: 580px;
  color: #383840;
  text-align: left;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 20px 0;
}

.hero-buttons-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 580px;
  position: relative;
  margin-top: 0;
}

.hero-buttons-container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #85BD56;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-stat-value-google {
  color: #060612;
}

.hero-stat-google-icon,
.hero-stat-star-icon {
  flex-shrink: 0;
  transition: width 0.3s, height 0.3s;
  overflow: visible;
}

.hero-stat-label {
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #383840;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: #E5E4E2;
  flex-shrink: 0;
}

.hero-btn {
  display: flex;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  color: #FFF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex: 0 0 auto;
}

.hero-btn .arrow-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn:hover .arrow-icon {
  transform: translateX(3px);
}

/* Green Hero Button */
.hero-btn-green {
  background: #85BD56;
  color: #FFF;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
}

.hero-btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.2);
}

.hero-btn-green:active {
  transform: translateY(0);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 0 0 0 2px #E1FFC8;
}

/* Black Hero Button */
.hero-btn-black {
  background: #060612;
  color: #FFF;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #4A4A4A;
}

.hero-btn-black:hover {
  transform: translateY(-1px);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #4A4A4A, 0 6px 14px rgba(6, 6, 18, 0.2);
}

.hero-btn-black:active {
  transform: translateY(0);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2) inset, 0 0 0 2px #4A4A4A;
}

/* Orange Call-to-action layout */
.hero-cta-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  margin-top: 8px;
  height: 60px;
}

.hero-cta-wrap {
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0px; /* Align text exactly with the left edge of the paragraph on desktop */
  top: 0px;
}

.hero-cta-text {
  color: #FF7E00;
  font-family: "Eras Md BT", Satoshi, 'DM Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 28px; /* Push the text down so the arrow sits above it */
}

.hero-cta-arrow-wrap {
  position: absolute;
  left: 80px; /* Sits above 'free / call' */
  top: -26px; /* Positioned higher to point horizontally to the left edge of the button */
  width: 48px;
  height: 48px;
  transform: rotate(-18deg);
  animation: floatArrow 2.5s infinite ease-in-out alternate;
}

.orange-arrow-svg {
  width: 100%;
  height: 100%;
}

@keyframes floatArrow {
  0% {
    transform: translateY(0) rotate(-20deg);
  }
  100% {
    transform: translateY(-3px) rotate(-16deg);
  }
}

/* Trusted By Clients */
.hero-trusted-section {
  width: 100%;
  max-width: 580px;
  margin-top: 24px;
}

.hero-trusted-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.hero-trusted-line {
  flex: 1;
  height: 0;
  border-top: 1px dashed #D8D7D4;
}

.hero-trusted-text {
  flex-shrink: 0;
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-trusted-highlight {
  color: #FF7E00;
}

.hero-trusted-logos {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.hero-trusted-track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  width: max-content;
}

.hero-trusted-track.track-left {
  animation: hero-trusted-scroll 30s linear infinite;
}

.hero-trusted-track.track-right {
  animation: hero-trusted-scroll-right 35s linear infinite;
  margin-top: 12px;
}

.hero-trusted-logos:hover .hero-trusted-track {
  animation-play-state: paused;
}

.hero-trusted-logo {
  height: 76px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.text-logo {
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #8c909c; /* A nice subdued color for logos */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.text-logo:hover {
  color: #060612;
}

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

@keyframes hero-trusted-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1180px) and (min-width: 961px) {
  .hero-stats {
    gap: 16px;
  }
  .hero-stat-value {
    font-size: 22px;
  }
  .hero-stat-label {
    font-size: 13px;
  }
}

/* Responsive adjustment for Hero section */
@media (max-width: 1300px) {
  .hero-section-container {
    padding: 0 24px;
  }
  .hero-inner-container {
    padding: 8px 0 60px 0;
  }
  .hero-outer-card {
    border-radius: 14px;
  }
  .hero-card-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .hero-tagline-container,
  .hero-headline,
  .hero-paragraph,
  .hero-stats,
  .hero-buttons-outer,
  .hero-visual-column,
  .hero-trusted-section {
    box-sizing: border-box;
  }
  .hero-tagline-container {
    order: 1;
    justify-content: center;
    margin: 0 auto 14px auto;
    max-width: 100%;
  }
  .hero-tagline {
    font-size: clamp(10px, 3.2vw, 13px);
    white-space: nowrap;
  }
  .hero-content-column {
    display: contents;
  }
  .hero-visual-column-mobile {
    display: none;
  }
  .hero-headline {
    order: 2;
    font-size: clamp(18px, 5.6vw, 38px);
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 0 16px;
    white-space: nowrap;
  }
  .hero-visual-column {
    order: 3;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .tech-ecosystem {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .hero-paragraph {
    order: 4;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 0 24px;
  }
  .hero-buttons-outer {
    order: 6;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    padding: 0 24px;
  }
  .hero-btn {
    flex: 1;
  }
  .hero-stats {
    order: 5;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 24px;
    padding: 0 24px;
  }
  .hero-stat {
    align-items: center;
    white-space: nowrap;
  }
  .hero-trusted-section {
    order: 7;
    margin: 32px auto 0 auto;
    width: 100%;
  }
  .hero-trusted-track {
    gap: 16px;
    animation-duration: 14s;
  }
  .hero-cta-container {
    justify-content: center;
    margin-top: 16px;
    position: static;
  }
  .hero-cta-wrap {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .hero-cta-text {
    margin-top: 0;
  }
  .hero-cta-arrow-wrap {
    transform: rotate(80deg);
    position: static;
    margin-left: 0;
    animation: none;
  }
}

@media (max-width: 480px) {
  .hero-section-container {
    padding: 0 16px;
  }
  .hero-inner-container {
    padding: 4px 0 12px 0;
  }
  .hero-outer-card {
    border-radius: 12px;
  }
  .hero-card-row {
    gap: 0;
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .hero-headline,
  .hero-paragraph,
  .hero-stats,
  .hero-buttons-outer {
    padding: 0 16px;
  }
  .hero-content-column {
    display: contents;
  }
  .hero-tagline {
    font-size: clamp(9px, 3.1vw, 11.5px);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .hero-tagline-container {
    gap: 6px;
    margin: 0 auto 8px auto;
    justify-content: center;
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(14px, 6vw, 26px);
    line-height: 1.3;
    white-space: nowrap;
  }
  .hero-headline .dot {
    margin: 0 2px;
  }
  .hero-paragraph {
    font-size: 14px;
    line-height: 23px;
  }
  .hero-stats {
    gap: clamp(4px, 1.5vw, 8px);
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .hero-stat-value {
    font-size: clamp(12px, 3.5vw, 17px);
  }
  .hero-stat-google-icon,
  .hero-stat-star-icon {
    width: clamp(10px, 3vw, 15px);
    height: clamp(10px, 3vw, 15px);
  }
  .hero-stat-label {
    font-size: clamp(7px, 2.2vw, 9px);
  }
  .hero-stat-divider {
    height: 24px;
  }
  .hero-buttons-container {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btn {
    width: 100%;
    flex: none;
    padding: 10px 20px;
    font-size: 14.5px;
    line-height: 24px;
  }
}
.tech-ecosystem {
  position: relative;
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 480px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 960px) {
  .tech-ecosystem {
    height: 460px;
  }
}

@media (max-width: 480px) {
  .tech-ecosystem {
    height: 330px;
  }
}

.ecosystem-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.eco-node {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(117, 191, 70, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(8, 14, 10, 0.06);
  cursor: pointer;
  z-index: 8;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.3s, opacity 0.3s, filter 0.3s;
}

.eco-node svg,
.eco-node img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  object-fit: contain;
}

.eco-node:hover {
  border-color: #75BF46; /* var(--g) */
  box-shadow: 0 12px 36px rgba(117, 191, 70, 0.22), 0 0 20px rgba(117, 191, 70, 0.2);
  transform: translate(-50%, -50%) scale(1.18);
  z-index: 20;
}

.eco-node:hover svg,
.eco-node:hover img {
  transform: scale(1.08);
}

/* Uniform Icon Size for all nodes */
.eco-node.size-large,
.eco-node.size-medium,
.eco-node.size-small {
  width: 66px;
  height: 66px;
  padding: 12px;
}

@media (max-width: 1024px) {
  .eco-node.size-large,
  .eco-node.size-medium,
  .eco-node.size-small {
    width: 54px;
    height: 54px;
    padding: 10px;
  }
}

@media (max-width: 640px) {
  .eco-node.size-large,
  .eco-node.size-medium,
  .eco-node.size-small {
    width: 44px;
    height: 44px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .eco-node.size-large,
  .eco-node.size-medium,
  .eco-node.size-small {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}

/* Center Hub — Reduced Size */
.eco-node.node-center {
  width: 114px;
  height: 114px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 248, 0.92) 100%);
  border: 2px solid rgba(117, 191, 70, 0.28);
  box-shadow: 0 12px 36px rgba(117, 191, 70, 0.14), inset 0 0 10px rgba(255, 255, 255, 0.8);
  z-index: 4;
  cursor: default;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.eco-node .hub-leaf-icon {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  margin-bottom: 4px;
  animation: logo-drift 6s ease-in-out infinite alternate;
}

@keyframes logo-drift {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-3px) scale(1.03); }
}

@media (max-width: 1024px) {
  .eco-node.node-center {
    width: 96px;
    height: 96px;
  }
  .eco-node .hub-leaf-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .eco-node.node-center {
    width: 80px;
    height: 80px;
  }
  .eco-node .hub-leaf-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 2px;
  }
}

@media (max-width: 480px) {
  .eco-node.node-center {
    width: 96px;
    height: 96px;
  }
  .eco-node .hub-leaf-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 2px;
  }
}

.eco-node.node-center:hover {
  transform: translate(-50%, -50%);
  border-color: #75BF46;
  box-shadow: 0 20px 60px rgba(117, 191, 70, 0.24);
  z-index: 4;
}

.eco-center-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.hub-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #080e0a; /* var(--ink) */
  letter-spacing: -0.04em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .hub-logo {
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .hub-logo {
    font-size: 10px;
  }
  .hub-nav-logo-dot {
    width: 3.5px;
    height: 3.5px;
    margin-left: 1.5px;
  }
}

.hub-nav-logo-dot {
  width: 5px;
  height: 5px;
  background: #75BF46;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

/* Constellation Canvas & Highlights */
.connection-line {
  stroke: rgba(117, 191, 70, 0.08);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s, stroke-width 0.3s;
  animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% { stroke: rgba(117, 191, 70, 0.05); stroke-width: 1.2; }
  100% { stroke: rgba(117, 191, 70, 0.14); stroke-width: 1.8; filter: drop-shadow(0 0 1px rgba(117,191,70,0.15)); }
}

.connection-line.highlighted,
.connection-line.hover-center-line {
  stroke: rgba(117, 191, 70, 0.85) !important;
  stroke-width: 2.2 !important;
  filter: drop-shadow(0 0 5px rgba(117, 191, 70, 0.65)) !important;
  stroke-dasharray: 4;
  animation: hoverLineAnim 0.8s linear infinite !important;
}

@keyframes hoverLineAnim {
  to {
    stroke-dashoffset: -8;
  }
}

.connection-line.dimmed {
  stroke: rgba(117, 191, 70, 0.02) !important;
}

/* Node Interactions */
.eco-node.dimmed {
  opacity: 0.35;
  filter: grayscale(60%) blur(0.5px);
}

.eco-node.highlighted {
  border-color: #b1e393; /* var(--g-accent) */
  box-shadow: 0 8px 26px rgba(117, 191, 70, 0.12);
  transform: translate(-50%, -50%) scale(1.06);
}

.eco-node.node-center.highlighted {
  border-color: #75BF46 !important;
  box-shadow: 0 16px 48px rgba(117, 191, 70, 0.25), 0 0 16px rgba(117, 191, 70, 0.2) !important;
  transform: translate(-50%, -50%) scale(1.03) !important;
}

/* Data Flow Particles */
.eco-particle {
  fill: #b1e393;
  filter: drop-shadow(0 0 3px #75BF46);
  opacity: 0.85;
  animation: particlePulse 3s infinite ease-in-out;
}

@keyframes particlePulse {
  0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 2px #75BF46); }
  50% { opacity: 1; filter: drop-shadow(0 0 6px #75BF46); }
}
/* Services Section Styling */

.services-section {
  background: #FFFFFF;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 40px 24px 40px;
  box-sizing: border-box;
}

/* Section Header styling */
.services-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
  align-items: flex-start;
  width: 100%;
}

.services-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tagline-container svg circle,
.services-tagline svg circle,
.featured-tagline svg circle,
.presence-tagline svg circle,
.testimonials-tagline svg circle,
.faqs-tagline svg circle,
.available-tagline svg circle {
  fill: #383840;
}

.services-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.services-tagline span {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-main-heading {
  width: 100%;
  max-width: 720px;
  color: var(--060612, #060612);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
  text-align: left;
}

.services-header-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 34px;
}

.services-header-desc {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  max-width: 500px;
  text-align: left;
}

/* ==================== WHAT WE DO / SERVICES FOLDER MOSAIC ==================== */
.services-folders-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 16px;
  overflow: visible;
  box-sizing: border-box;
}

.folder-row {
  display: flex;
  width: 100%;
  position: relative;
}

.folder-row-1 {
  height: clamp(210px, 19vw, 270px);
  z-index: 1;
}

.folder-row-1 .folder-card {
  height: calc(100% + 48px);
}

.folder-row-2 {
  height: clamp(210px, 19vw, 270px);
  margin-top: -38px;
  z-index: 2;
}

.folder-row-2 .folder-card {
  height: calc(100% + 48px);
}

.folder-row-3 {
  height: clamp(210px, 19vw, 270px);
  margin-top: -38px;
  z-index: 3;
}

.folder-row-3 .folder-card {
  height: 100%;
}

/* Width breakdown matching the exact image proportions */
.folder-card-1 {
  flex: 0 0 43.3%;
  width: 43.3%;
}
.folder-card-1 .folder-bg {
  clip-path: polygon(0 0, 180px 0, 225px 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #D9D9D9;
}

.folder-card-2 {
  flex: 0 0 56.7%;
  width: 56.7%;
}
.folder-card-2 .folder-bg {
  clip-path: polygon(0 0, 180px 0, 225px 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #F5DC38;
}

.folder-card-3 {
  flex: 0 0 27%;
  width: 27%;
}
.folder-card-3 .folder-bg {
  clip-path: polygon(0 0, 140px 0, 180px 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #4A8B2C;
}

.folder-card-4 {
  flex: 0 0 27%;
  width: 27%;
}
.folder-card-4 .folder-bg {
  clip-path: polygon(0 0, calc(60.4% - 20px) 0, calc(60.4% + 20px) 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #FA6D00;
}

.folder-card-5 {
  flex: 0 0 46%;
  width: 46%;
}
.folder-card-5 .folder-bg {
  clip-path: polygon(0 0, 180px 0, 220px 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #F8F9FA;
}

.folder-card-6 {
  flex: 0 0 39%;
  width: 39%;
}
.folder-card-6 .folder-bg {
  clip-path: polygon(0 0, 130px 0, 168px 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #F5DC38;
}

.folder-card-7 {
  flex: 0 0 61%;
  width: 61%;
}
.folder-card-7 .folder-bg {
  clip-path: polygon(0 0, 24.6% 0, calc(24.6% + 38px) 38px, 100% 38px, 100% 100%, 0 100%);
  background-color: #4A8B2C;
}

/* Base Folder Card */
.folder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 36px 28px 36px;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: z-index 0.2s ease;
}

.folder-card:hover {
  z-index: 50 !important;
}

.folder-card:hover .folder-bg {
  filter: brightness(0.96);
}

.folder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: filter 0.28s ease;
}

/* Floating Hover Preview Cards Tech Stack (Emerges from inside the folder) */
.folder-hover-stack {
  position: absolute;
  top: 20px;
  left: clamp(140px, 45%, 300px);
  transform: translateY(60px) scale(0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100px;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.folder-card:hover .folder-hover-stack {
  opacity: 1;
  transform: translateY(-75px) scale(1.05);
  pointer-events: auto;
}

/* Individual Preview Cards in the Fan */
.preview-card {
  position: absolute;
  width: clamp(75px, 6.5vw, 92px);
  height: clamp(75px, 6.5vw, 92px);
  border-radius: 14px;
  border: 3.5px solid #FFFFFF;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: #1A1A24;
  transition: transform 0.48s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease;
  will-change: transform;
}

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

/* Initial Pocketed State */
.preview-card-1 {
  transform: translateX(-15px) translateY(30px) rotate(-6deg);
  z-index: 1;
}

.preview-card-2 {
  transform: translateX(0) translateY(20px) rotate(0deg);
  z-index: 2;
}

.preview-card-3 {
  transform: translateX(15px) translateY(30px) rotate(6deg);
  z-index: 3;
}

/* Fanned Out State on Hover */
.folder-card:hover .preview-card-1 {
  transform: translateX(-50px) translateY(4px) rotate(-16deg);
  transition-delay: 0.02s;
}

.folder-card:hover .preview-card-2 {
  transform: translateX(0) translateY(-12px) rotate(2deg);
  transition-delay: 0.05s;
}

.folder-card:hover .preview-card-3 {
  transform: translateX(50px) translateY(6px) rotate(20deg);
  transition-delay: 0.08s;
}

/* Service Title inside Folder */
.folder-title {
  position: relative;
  z-index: 2;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.015em;
  text-align: left;
  white-space: nowrap !important;
  max-width: 100%;
}

.folder-title br {
  display: none !important;
}

/* Card Theme: Grey (UI/UX Design) */
.folder-card--grey .folder-title {
  color: #060612;
}

/* Card Theme: Off-White / Pale Grey */
.folder-card--offwhite .folder-title {
  color: #060612;
}

/* Card Theme: Vibrant Yellow */
.folder-card--yellow .folder-title {
  color: #060612;
}

/* Card Theme: Rich Leaf Green */
.folder-card--green .folder-title {
  color: #FFFFFF;
}

/* Card Theme: Bold Orange */
.folder-card--orange .folder-title {
  color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 960px) {
  .services-container {
    padding: 32px 24px 20px 24px;
  }

  .services-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
    width: 100% !important;
  }

  .services-header-left,
  .services-header-right {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  .services-main-heading {
    font-size: 32px !important;
    line-height: 42px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .services-header-desc {
    font-size: 15px !important;
    line-height: 26px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .folder-row {
    flex-wrap: wrap;
    height: auto;
    margin-top: 0 !important;
  }

  .folder-row-1,
  .folder-row-2,
  .folder-row-3 {
    height: auto;
  }

  .folder-card-1,
  .folder-card-2,
  .folder-card-3,
  .folder-card-4,
  .folder-card-5,
  .folder-card-6,
  .folder-card-7 {
    flex: 0 0 50%;
    width: 50%;
    min-height: 170px;
    padding: 46px 16px 24px 16px;
    margin-top: -38px;
  }

  .folder-row-1 .folder-card-1,
  .folder-row-1 .folder-card-2 {
    margin-top: 0;
  }

  .folder-card-5 {
    flex: 0 0 100%;
    width: 100%;
  }

  .folder-card:only-child,
  .folder-card:nth-child(odd):last-child {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .folder-title {
    font-size: clamp(14px, 2vw, 20px) !important;
    white-space: nowrap !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 640px) {
  .services-container {
    padding: 24px 16px 16px 16px;
  }

  .services-header {
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .services-main-heading {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .services-header-desc {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .folder-row {
    flex-direction: column;
    margin-top: 0 !important;
  }

  .folder-card-1,
  .folder-card-2,
  .folder-card-3,
  .folder-card-4,
  .folder-card-5,
  .folder-card-6,
  .folder-card-7 {
    flex: 0 0 100%;
    width: 100%;
    min-height: 140px;
    padding: 40px 14px 24px 12px !important;
    margin-top: -46px !important;
    position: relative;
  }

  .folder-card-1 { z-index: 1 !important; margin-top: 0 !important; }
  .folder-card-2 { z-index: 2 !important; }
  .folder-card-3 { z-index: 3 !important; }
  .folder-card-4 { z-index: 4 !important; }
  .folder-card-5 { z-index: 5 !important; }
  .folder-card-6 { z-index: 6 !important; }
  .folder-card-7 { z-index: 7 !important; }

  .folder-card-1 .folder-bg,
  .folder-card-2 .folder-bg,
  .folder-card-3 .folder-bg,
  .folder-card-4 .folder-bg,
  .folder-card-5 .folder-bg,
  .folder-card-6 .folder-bg,
  .folder-card-7 .folder-bg {
    clip-path: polygon(0 0, 125px 0, 160px 32px, 100% 32px, 100% 100%, 0 100%);
  }

  .folder-row-1 .folder-card-1 {
    margin-top: 0 !important;
  }

  .folder-row-1 .folder-card-2 {
    margin-top: -46px !important;
  }

  .folder-title {
    font-size: clamp(12.5px, 3.4vw, 16px) !important;
    white-space: nowrap !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

/* Featured Projects Section Styling */

.featured-section {
  background: #FFFFFF;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.featured-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

/* Header style layout matching the screenshot */
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.featured-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.featured-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 496px;
  width: 100%;
  text-align: left;
  margin-top: 34px;
}

.featured-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.featured-tagline span {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.featured-main-heading {
  width: 100%;
  max-width: 720px;
  color: var(--060612, #060612);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
}

.featured-subheading {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

/* ===== FEATURED PROJECT SHOWCASE CARD FRAME (IMAGE 1 TARGET DESIGN) ===== */
.featured-project-card-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E5E4E2;
  box-shadow: 0 10px 40px rgba(6, 6, 18, 0.05);
  box-sizing: border-box;
}

/* Top 2-column grid layout */
.showcase-top-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 32px;
  align-items: stretch;
  width: 100%;
}

/* Left visual device frame */
.showcase-visual-col {
  width: 100%;
  display: flex;
}

.showcase-dark-frame {
  width: 100%;
  background: #060612;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-height: 480px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.showcase-browser-topbar {
  background: #0D0E19;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.showcase-address-url {
  color: #A0A0AB;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 12px;
}

.showcase-browser-content {
  flex: 1;
  overflow: visible;
  position: relative;
  background: #060612;
  display: block;
}

.showcase-browser-content img,
.showcase-browser-content .browser-scroll-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-dark-frame:hover .browser-scroll-image,
.showcase-dark-frame:hover img {
  transform: translateY(calc(-100% + 400px));
}

.showcase-dark-frame:hover .browser-scroll-iframe {
  transform: scale(0.25) translateY(-84%);
}

/* Right Column Details & Solution */
.showcase-details-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
  text-align: left;
}

.showcase-project-title {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px 0;
}

.showcase-project-description {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Solution Card Box */
.showcase-solution-card {
  background: #FAFBF9;
  border: 1px solid #E8F0E3;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-solution-card:hover {
  border-color: #85BD56;
  transform: translateY(-1px);
}

.solution-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF5E4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-content-wrap {
  display: flex;
  flex-direction: column;
}

.solution-card-heading {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.solution-card-text {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.showcase-divider {
  border: none;
  border-top: 1px solid #E5E4E2;
  margin: 16px 0;
  width: 100%;
}

/* Impact Stats Grid */
.showcase-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
}

.showcase-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EBF5E4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-data {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #599632;
  line-height: 1.1;
}

.stat-lbl {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #69686E;
}

/* Bottom Footer Bar */
.showcase-bottom-bar {
  background: #FAFBF9;
  border-radius: 16px;
  padding: 14px 20px;
  border: 1px solid #E5E4E2;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tech-section-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tech-label-heading {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #060612;
}

.tech-pill-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-pill {
  background: #FFFFFF;
  border: 1px solid #E5E4E2;
  border-radius: 10px;
  padding: 8px 16px;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #060612;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(6, 6, 18, 0.02);
  transition: all 0.25s ease;
}

.tech-pill:hover {
  border-color: #85BD56;
  transform: translateY(-1px);
}

.btn-live-experience-green {
  background: #599632;
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(89, 150, 50, 0.25);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-live-experience-green:hover {
  background: #4B8328;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(89, 150, 50, 0.35);
  color: #FFFFFF;
}

.btn-live-experience-green svg {
  transition: transform 0.3s ease;
}

.btn-live-experience-green:hover svg {
  transform: translate(2px, -2px);
}

/* Two-column layout (legacy wrapper compatibility) */
.featured-project-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Left side details column */
.project-info-col-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 480px; /* Prevent page juggling during slide transitions */
}

.project-info-col-bottom {
  grid-area: bottom;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #F4F8F1;
  border: 1px solid #85BD56;
  border-radius: 100px;
  margin-bottom: 12px;
}

.project-pill-text {
  color: #85BD56;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-title {
  color: var(--060612, #060612);
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 4px 0;
  white-space: nowrap;
}

.project-subtitle {
  color: #3D5247;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.project-description {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 20px 0;
  max-width: 520px;
}

.core-solution-box {
  border-left: 3px solid #85BD56;
  padding-left: 16px;
  margin-bottom: 0;
  text-align: left;
}

.core-solution-label {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.core-solution-text {
  color: #3D5247;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.project-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

.feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #F4F8F1;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.feature-desc {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.tech-statement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #F4F8F1;
  border: 1px solid #E1EFD8;
  border-radius: 100px;
  padding: 10px 22px;
  margin: 24px 0 36px 0;
  box-shadow: 0 2px 6px rgba(133, 189, 86, 0.08);
  transition: all 0.25s ease;
}

.tech-statement:hover {
  background: #EAF4E3;
  box-shadow: 0 4px 10px rgba(133, 189, 86, 0.14);
}

.tech-statement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-statement-text {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

.tech-statement-text strong {
  color: #3D5247;
  font-weight: 700;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--85BD56, #85BD56);
  color: #FFF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary .arrow-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #7bb34d;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.25);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(3px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 0 0 0 2px #E1FFC8;
}

/* Right side Macbook Image Mockup style */
.project-mockup-col {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.macbook-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.16));
}

/* Green circle and rings background */
.macbook-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #9AC86E 40%, transparent 60%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.macbook-image-wrapper::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 15%;
  width: 130%;
  height: 130%;
  border: 1px solid rgba(133, 189, 86, 0.2);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}

.macbook-chassis {
  width: 100%;
  display: block;
  height: auto;
  pointer-events: none;
}

.macbook-screen-overlay {
  position: absolute;
  top: 7.7%;   /* Mathematical 16:10 display screen bounds */
  left: 16.6%;
  right: 16.6%;
  bottom: 27.8%;
  background: #192C3D;
  overflow: visible;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}

.browser-mockup {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
}

/* Browser Window Header */
.browser-header {
  display: flex;
  align-items: center;
  background: #F0F0F0;
  padding: 5px 12px;
  border-bottom: 1px solid #E6E6E6;
  position: relative;
}

.browser-dots {
  display: flex;
  gap: 5px;
  position: absolute;
  left: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.browser-address-bar {
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 2px 12px;
  width: 60%;
  max-width: 280px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 9px;
  color: #7A7A7A;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #E2E2E2;
}

.browser-address-bar .lock-icon {
  width: 8px;
  height: 8px;
  opacity: 0.6;
}

/* Inside simulated portal styling */
/* Inside simulated portal styling - scrollable website screenshot */
.browser-content-scrollable {
  background: #FFFFFF;
  position: relative;
  width: 100%;
  flex: 1;
  overflow: visible;
}

.browser-scroll-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition */
}

/* Rendered 4x wider than the visible frame and scaled back down, so the
   embedded site lays out at a full desktop width instead of reflowing to
   its cramped mobile/tablet breakpoint inside the small mockup. */
.browser-scroll-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 1040%;
  border: none;
  display: block;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(0.25) translateY(0);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition */
}

/* Scroll down to footer on hover of laptop mockup */
.macbook-image-wrapper:hover .browser-scroll-image {
  transform: translateY(-84%);
}

.macbook-image-wrapper:hover .browser-scroll-iframe {
  transform: scale(0.25) translateY(-84%);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .featured-header-left,
  .featured-header-right {
    max-width: 100%;
    margin-top: 0;
  }
  .featured-project-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "image"
      "bottom";
    gap: 48px;
  }
  .core-solution-box {
    align-self: flex-start;
    max-width: 480px;
  }
  .featured-main-heading {
    font-size: 38px;
    line-height: 48px;
  }
  .project-title {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 0 24px;
  }
  .featured-container {
    padding: 24px 0;
  }
  .portal-nav {
    display: none;
  }
  .project-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .featured-section {
    padding: 0 16px;
  }
  .featured-container {
    padding: 20px 0;
  }
  .featured-main-heading {
    font-size: 30px;
    line-height: 38px;
  }
  .project-title {
    font-size: 26px;
    line-height: 34px;
  }
  .portal-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Live Preview Modal — macOS/Chrome browser chrome */
.live-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 18, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 1000;
}

.live-preview-window {
  width: 100%;
  max-width: 1600px;
  height: 90vh;
  max-height: 960px;
  background: #FFFFFF;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.live-preview-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: #F4F4F5;
  border-bottom: 1px solid #E4E4E7;
  flex-shrink: 0;
}

.live-preview-address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 0;
}

.live-preview-address-bar svg {
  flex-shrink: 0;
}

.live-preview-address-bar svg:last-of-type {
  color: #8F8E93;
}

.live-preview-url {
  font-family: Menlo, Consolas, 'SFMono-Regular', monospace;
  font-size: 14px;
  color: #2563EB;
  text-decoration: underline;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}

.live-preview-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.live-preview-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #F0F0F2;
  color: #18181B;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.live-preview-open-btn:hover {
  background: #E4E4E7;
}

.live-preview-traffic-lights {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.traffic-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.traffic-dot.traffic-green {
  background: #22C55E;
}

.traffic-dot.traffic-yellow {
  background: #EAB308;
}

.traffic-dot.traffic-red {
  background: #EF4444;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.traffic-dot.traffic-red:hover {
  filter: brightness(0.92);
}

.live-preview-body {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  background: #F4F4F5;
}

.live-preview-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.live-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .live-preview-overlay {
    padding: 0;
  }
  .live-preview-window {
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
  .live-preview-open-btn span {
    display: none;
  }
  .live-preview-open-btn {
    padding: 8px;
  }
}

/* Featured Projects Carousel Controls */
.featured-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.featured-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E4E2;
  background: #FFFFFF;
  color: #060612;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.featured-nav-btn:hover {
  background: #85BD56;
  border-color: #85BD56;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.featured-nav-btn.prev svg {
  transform: none;
}

.featured-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #E5E4E2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.featured-dot:hover {
  background: #B9D9A2;
}

.featured-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #85BD56;
}

@media (max-width: 480px) {
  .featured-carousel-controls {
    margin-top: 32px;
    gap: 16px;
  }
  .featured-nav-btn {
    width: 34px;
    height: 34px;
  }
}
/* Presence Section Styling */

.presence-section {
  background: #FFFFFF;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.presence-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 0 40px 0;
  box-sizing: border-box;
}

/* Header styling side-by-side matching the layout of remaining sections */
.presence-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.presence-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.presence-header-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 496px;
  width: 100%;
  text-align: left;
  margin-top: 34px;
}

.presence-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.presence-tagline span {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.presence-main-heading {
  width: 100%;
  max-width: 720px;
  color: var(--060612, #060612);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
}

.presence-header-desc {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}


/* Main Grid Layout */
.presence-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

.presence-grid-card {
  border-radius: 24px;
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  padding: 24px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.presence-card-heading {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 20px 0;
  text-align: left;
}

/* Left Card: Map Container */
.presence-left-card {
  position: relative;
  min-width: 0;
}

.presence-heading-accent {
  color: #85BD56;
}

.presence-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 995 / 557;
  background: #FFFFFF;
  margin-bottom: 20px;
  overflow: visible;
}

.presence-map-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
}

/* Stat callout on the left of the map */
.presence-map-stats {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 160px;
}

.presence-map-stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F4F8F1;
  margin-bottom: 4px;
}

.presence-map-stats-count {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.presence-map-stats-desc {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

/* Location pins on the map — the dot marks the country, name shows on hover */
.presence-map-label-pin {
  position: absolute;
  /* Center the dot exactly on the coordinate */
  transform: translate(-50%, -50%);
  width: clamp(3px, 0.8vw, 10px);
  height: clamp(3px, 0.8vw, 10px);
  z-index: 5;
  outline: none;
}

.presence-map-label-pin:hover,
.presence-map-label-pin:focus-visible {
  z-index: 20;
}

.presence-map-label-dot {
  display: block;
  width: clamp(3px, 0.8vw, 10px);
  height: clamp(3px, 0.8vw, 10px);
  border-radius: 50%;
  background: #85BD56;
  box-shadow: 0 0 0 clamp(0px, 0.3vw, 4px) rgba(133, 189, 86, 0.18);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.presence-map-label-pin:hover .presence-map-label-dot,
.presence-map-label-pin:focus-visible .presence-map-label-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 clamp(2px, 0.5vw, 6px) rgba(133, 189, 86, 0.28);
}

/* Country name — hidden until the dot is hovered/focused */
.presence-map-label-text {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 4px);
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 8px;
  padding: 3px 8px;
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
  box-shadow: 0px 2px 6px rgba(16, 24, 40, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.presence-map-label-pin:hover .presence-map-label-text,
.presence-map-label-pin:focus-visible .presence-map-label-text {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Divider between map and country flag list */
.presence-countries-divider {
  width: 100%;
  height: 1px;
  background: #E4E7EC;
  margin-bottom: 20px;
}

/* Country flag carousel row */
.presence-countries-list {
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.presence-countries-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: max-content;
  padding-top: 4px;
  animation: presence-countries-scroll 24s linear infinite;
}

.presence-countries-list:hover .presence-countries-track {
  animation-play-state: paused;
}

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

.presence-country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.presence-card-box {
  position: relative;
  width: 125px;
  height: 82px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1.5px solid #85BD56;
  box-shadow: 0 4px 14px rgba(6, 6, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.presence-country-item:hover .presence-card-box {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(133, 189, 86, 0.3);
}

.presence-client-logo {
  max-width: 88%;
  max-height: 82%;
  object-fit: contain;
  display: block;
}

.presence-flag-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 32px;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

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

.presence-country-name {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

/* "And more countries" badge */
.presence-more-countries-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: #F4F8F1;
  color: #599632;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

/* Bottom Quote Banner Styling */
.presence-quote-card {
  display: flex;
  align-items: center;
  padding: 32px 48px;
  border-radius: 24px;
  border: 1px solid #E4E7EC;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  box-sizing: border-box;
  text-align: left;
}

.presence-quote-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.presence-quote-bubble-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F2FAEC;
  flex-shrink: 0;
  margin-top: 4px;
}

.presence-quote-text {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  font-style: italic;
}

.presence-quote-divider {
  width: 1px;
  height: 64px;
  background: #E4E7EC;
  margin: 0 48px;
}

.presence-quote-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.presence-quote-partner-logo {
  margin-bottom: 6px;
}

.presence-quote-partner-text {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

/* Responsive Overrides */

@media (max-width: 960px) {
  .presence-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .presence-header-left,
  .presence-header-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .presence-tagline {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .presence-section {
    padding: 0 24px;
  }
  
  .presence-container {
    padding: 16px 0 24px 0;
  }
  
  .presence-main-heading {
    font-size: 36px;
    line-height: 46px;
    text-align: left;
  }

  .presence-header-desc {
    text-align: left;
    margin: 0;
  }
  
  .presence-quote-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
  }
  
  .presence-quote-divider {
    width: 100%;
    height: 1px;
    margin: 12px 0;
  }

  .presence-countries-track {
    gap: 24px;
    animation-duration: 16s;
  }
}

@media (max-width: 480px) {
  .presence-section {
    padding: 0 16px;
  }
  
  .presence-container {
    padding: 12px 0 20px 0;
  }
  
  .presence-main-heading {
    font-size: 28px;
    line-height: 36px;
  }
  
  .presence-grid-card {
    padding: 20px;
  }
}
/* Testimonials Section Styling */
.testimonials-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow-x: clip;
  position: relative;
}

.testimonials-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

/* Header side-by-side layout matching the remaining sections */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.testimonials-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.testimonials-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 496px;
  width: 100%;
  text-align: left;
  margin-top: 34px;
}

.testimonials-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.testimonials-tagline span {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.testimonials-main-heading {
  width: 100%;
  max-width: 720px;
  color: var(--060612, #060612);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
}

.testimonials-header-desc {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.testimonials-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  align-self: flex-end;
}

.testimonials-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #E0E0E0;
  background: #FFFFFF;
  color: #060612;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(6, 6, 18, 0.04);
}

.testimonials-nav-btn:hover {
  background: #85BD56;
  border-color: #85BD56;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(133, 189, 86, 0.35);
}

.testimonials-nav-btn:disabled,
.testimonials-nav-btn.disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #F3F4F6 !important;
  border-color: #E5E7EB !important;
  color: #9CA3AF !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Video Testimonials carousel track */
.video-testimonials-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 40px;
  padding: 12px 0;
}

.video-testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.video-testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Exact video card parameters */
.video-card {
  width: 288px;
  height: 380px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.video-card-overlay {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Dark gradient overlay for readability */
.video-card-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

/* Centered play button */
.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Alignment adjustment for play triangle */
.play-button svg {
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  background: var(--85BD56, #85BD56);
  border-color: var(--85BD56, #85BD56);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(133, 189, 86, 0.4);
}

.video-card-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-card-category {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(133, 189, 86, 0.85);
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-card-name {
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.video-card-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(6, 6, 18, 0.55);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

/* Written Testimonials Header Bar with Navigation */
.written-testimonials-header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 28px;
  width: 100%;
}

.written-testimonials-heading {
  grid-column: 2;
  text-align: center;
  color: var(--060612, #060612);
  font-family: Satoshi, 'Outfit', 'Inter', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}

.written-testimonials-header-bar .testimonials-carousel-nav {
  grid-column: 3;
  justify-self: end;
}

/* Written Testimonials carousel track */
.written-testimonials-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0 24px 0;
}

.written-testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.written-testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

.written-card {
  width: 480px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1.5px solid #F0F2F5;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: 0 4px 16px rgba(6, 6, 18, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.written-card:hover {
  transform: translateY(-2px);
  border-color: #E4E7EC;
  box-shadow: 0 6px 20px rgba(6, 6, 18, 0.04);
}

.written-card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.written-card-text {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 28px 0;
  text-align: left;
  white-space: pre-line;
}

/* Testimonial footer with profile pic and logo */
.written-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0F2F5;
  padding-top: 20px;
  margin-top: auto;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #E4E7EC;
}

.author-avatar-dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F2F5;
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.author-meta {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.company-logo-wrapper {
  height: 44px;
  display: flex;
  align-items: center;
}

.company-logo {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

/* Responsive Overrides for Testimonials: Auto-scrolling Marquee matching Desktop */
@media (max-width: 960px) {
  .testimonials-section {
    padding: 0 24px;
    overflow: visible;
  }
  .testimonials-container {
    padding: 32px 0;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 40px;
  }
  .testimonials-header-left,
  .testimonials-header-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .testimonials-tagline {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials-main-heading {
    font-size: 36px;
    line-height: 46px;
    text-align: left;
  }
  .testimonials-header-desc {
    text-align: left;
    margin: 0;
  }

  /* Written Testimonials Header Bar on mobile: title on first line, navigation buttons on next row */
  .written-testimonials-header-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-top: 36px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  .written-testimonials-heading {
    text-align: left !important;
    font-size: 26px !important;
    line-height: 34px !important;
    width: 100% !important;
    margin: 0 !important;
    grid-column: auto !important;
  }

  .written-testimonials-header-bar .testimonials-carousel-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    align-self: flex-end !important;
    width: 100% !important;
    gap: 12px !important;
    grid-column: auto !important;
    justify-self: end !important;
  }

  /* Swipe carousel wrapper on mobile */
  .video-testimonials-wrapper,
  .written-testimonials-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 12px 16px;
    margin-bottom: 32px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  
  .video-testimonials-wrapper::-webkit-scrollbar,
  .written-testimonials-wrapper::-webkit-scrollbar {
    display: none;
  }

  .video-testimonials-row {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: none !important;
  }

  .written-testimonials-row {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: none !important;
  }

  .video-card {
    width: 240px;
    height: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .written-card {
    width: 300px;
    max-width: 82vw;
    padding: 20px;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 0 16px;
  }
  .testimonials-container {
    padding: 20px 0;
  }
  .testimonials-main-heading {
    font-size: 28px;
    line-height: 36px;
  }
  .written-testimonials-heading {
    font-size: 22px;
    line-height: 30px;
  }
  .video-testimonials-row {
    gap: 12px;
    animation: none !important;
  }
  .written-testimonials-row {
    gap: 12px;
    animation: none !important;
  }
  .video-card {
    width: 205px;
    height: 275px;
  }
  .written-card {
    width: 270px;
    max-width: 82vw;
    padding: 18px;
  }
  .written-card-text {
    font-size: 13.5px;
    line-height: 23px;
  }
}

/* Video Testimonial Preview Modal */
.video-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 18, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 1000;
}

.video-preview-modal {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-preview-window {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.video-preview-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  border: 0;
}

.video-preview-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.video-preview-caption-title {
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.video-preview-caption-note {
  color: rgba(255, 255, 255, 0.65);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  line-height: 20px;
}

.video-preview-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-preview-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .video-preview-overlay {
    padding: 16px;
  }
  .video-preview-close {
    top: -40px;
  }
}
/* FAQs Section Styling */
.faqs-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.faqs-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

/* Header Side-by-Side layout */
.faqs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.faqs-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.faqs-header-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 496px;
  width: 100%;
  text-align: left;
  margin-top: 34px;
}

.faqs-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.faqs-tagline span {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.faqs-main-heading {
  width: 100%;
  max-width: 720px;
  color: rgb(6, 6, 18);
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
}

.faqs-header-desc {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

/* FAQs Outer Card Box (Single Column gray card matching ui-ux-design.html) */
.faqs-outer-card {
  background: #F4F4F4;
  border-radius: 16px;
  padding: 24px;
  box-shadow: none;
  border: none;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.faqs-single-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Inner Small Card design specs */
.faq-item-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px 24px;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-item-card:hover {
  transform: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

.faq-item-card.is-open {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

/* Question line inside small card */
.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.faq-question-text {
  color: #111827;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-item-card.is-open .faq-question-text {
  color: #75BF46;
}

.faq-toggle-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-toggle-btn svg {
  display: block;
}

.faq-toggle-btn svg circle,
.faq-toggle-btn svg rect {
  fill: #111827;
  transition: fill 0.25s ease;
}

.faq-item-card.is-open .faq-toggle-btn svg circle,
.faq-item-card.is-open .faq-toggle-btn svg rect {
  fill: #75BF46;
}

/* Answer block */
.faq-answer-row {
  margin-top: 12px;
  border-top: none;
  padding-top: 0;
  display: none;
}

.faq-item-card.is-open .faq-answer-row {
  display: block;
}

.faq-answer-text {
  width: 100%;
  max-width: 100%;
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Responsive Overrides */
@media (max-width: 960px) {
  .faqs-section {
    padding: 0 16px !important;
  }
  .faqs-container {
    padding: 24px 0 !important;
  }
  .faqs-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .faqs-header-left,
  .faqs-header-right {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
  }
  .faqs-tagline {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .faqs-main-heading {
    font-size: clamp(24px, 5.5vw, 32px) !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }
  .faqs-header-desc {
    text-align: left !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
  .faqs-outer-card {
    padding: 12px !important;
    border-radius: 14px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: auto !important;
  }
  .faqs-single-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .faq-item-card {
    padding: 14px 16px !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .faq-question-row {
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .faq-question-text {
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    color: #060612 !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    text-align: left !important;
    word-break: break-word !important;
  }
  .faq-item-card.is-open .faq-question-text {
    color: #75BF46 !important;
  }
  .faq-toggle-btn {
    flex-shrink: 0 !important;
    width: 26px !important;
    height: 26px !important;
    margin-top: 2px !important;
  }
  .faq-toggle-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  .faq-answer-row {
    margin-top: 10px !important;
    padding-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
  }
  .faq-answer-text {
    max-width: 100% !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #69686E !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .faqs-section {
    padding: 0 12px !important;
  }
  .faqs-container {
    padding: 16px 0 !important;
  }
  .faqs-outer-card {
    padding: 8px !important;
  }
  .faq-item-card {
    padding: 12px 14px !important;
  }
  .faq-question-text {
    font-size: 14.5px !important;
    line-height: 1.4 !important;
  }
  .faq-answer-text {
    font-size: 13px !important;
  }
}
/* CTA Section Container */
.cta-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.cta-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer Box styling */
.cta-outer-box {
  display: flex;
  width: 1280px;
  max-width: 100%;
  height: 482px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

/* Inner Box styling - Green base with curves background */
.cta-inner-box {
  position: relative;
  width: 1248px;
  max-width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px 80px;
  box-sizing: border-box;
  background: #85BD56; /* Keep green background fully opaque to prevent white blending shade */
}

.cta-inner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.64;
  background-image: var(--bg-image, url('../assets/home/cta-bg.png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-left-content,
.cta-right-content {
  position: relative;
  z-index: 2; /* Sits above opacity layer */
}

/* Left Content styling */
.cta-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cta-tagline span {
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.cta-main-heading {
  width: 100%;
  max-width: 720px;
  color: #FFFFFF;
  font-family: Satoshi, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.cta-description {
  width: 540px;
  max-width: 100%;
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 32px 0;
}

/* Dark CTA button styling */
.cta-start-project-btn {
  display: inline-flex;
  padding: 10px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--060612, #060612);
  color: #FFFFFF;
  text-decoration: none;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #4A4A4A;
  transition: all 0.3s ease;
}

.cta-start-project-btn:hover {
  transform: translateY(-2px);
  background: #121221;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #4A4A4A, 0 6px 14px rgba(6, 6, 18, 0.15);
}

.cta-start-project-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.cta-start-project-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Content: Available Card styling */
.cta-right-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 500px;
  min-width: 0;
}

.available-card-outer {
  display: flex;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

.available-card-inner {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.available-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.available-tagline span {
  color: #383840;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

/* Collaboration Circles styling */
.available-collab-circles {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.circle-logo-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.collab-leaf-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.collab-plus {
  color: #85BD56;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.circle-you-wrapper {
  display: inline-flex;
  padding: 12px 12px 12px 13px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--85BD56, #85BD56);
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  color: #FFFFFF;
}

.collab-you-text {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Card typography details */
.available-card-title {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 4px 0;
}

.available-card-desc {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 20px 0;
}

/* Book call Button styling */
.available-book-call-btn {
  display: flex;
  width: 100%;
  max-width: 420px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--85BD56, #85BD56);
  color: #FFFFFF;
  text-decoration: none;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.available-book-call-btn:hover {
  transform: translateY(-2px);
  background: #76a84c;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.2);
}

.available-book-call-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.available-book-call-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive Styling for Tablet & Mobile */
@media (max-width: 1200px) {
  .cta-section {
    padding: 0 24px;
  }
  .cta-container {
    padding: 32px 0;
  }
  .cta-outer-box {
    height: auto;
    padding: 12px;
  }
  .cta-inner-box {
    height: auto;
    flex-direction: column;
    padding: 48px 32px;
    gap: 48px;
  }
  .cta-left-content {
    align-items: flex-start !important;
    text-align: left !important;
    flex: none;
    width: 100%;
  }
  .cta-tagline {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
  .cta-main-heading {
    width: 100%;
    font-size: 38px;
    line-height: 48px;
    text-align: left !important;
  }
  .cta-description {
    width: 100%;
    text-align: left !important;
  }
  .cta-start-project-btn {
    align-self: flex-start !important;
  }
  .cta-right-content {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 0 16px;
  }
  .cta-container {
    padding: 20px 0;
  }
  .cta-inner-box {
    padding: 32px 16px;
    gap: 40px;
  }
  .cta-main-heading {
    font-size: 28px;
    line-height: 36px;
  }
  .available-card-outer {
    width: 100%;
    height: auto;
    padding: 12px;
  }
  .available-card-inner {
    width: 100%;
    height: auto;
    padding: 16px;
  }
  .available-book-call-btn {
    width: 100%;
  }
}
.contact-section {
  background: #FFFFFF;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Row 1: Breadcrumb — full width */
.contact-row-breadcrumb {
  width: 100%;
  margin-bottom: 8px;
}

/* Row 2: Heading + Intro text */
.contact-row-intro {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 48px;
}

.contact-row-intro .contact-heading {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}

.contact-row-intro .contact-intro-text {
  flex: 0 0 496px;
  max-width: 496px;
  padding-top: 8px;
}

/* Row 3: Form + Contact card */
.contact-row-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

.contact-row-main > .contact-form {
  flex: 1 1 0;
  min-width: 0;
}

.contact-row-main > .contact-info-outer {
  flex: 0 0 496px;
  max-width: 496px;
}

/* Left column */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}

.contact-heading {
  width: 720px;
  max-width: 100%;
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0 0 40px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field label {
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.contact-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #E4E7EC;
  border-radius: 12px;
  padding: 14px 18px;
  background: #FFFFFF;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input-wrap:focus-within {
  border-color: #85BD56;
  box-shadow: 0 0 0 3px rgba(133, 189, 86, 0.12);
}

.contact-input-wrap svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-input-divider {
  width: 1px;
  height: 18px;
  background: #D0D5DD;
  flex-shrink: 0;
}

.contact-field-full .contact-input-wrap {
  width: 100%;
}

.contact-field-full .contact-input-wrap:not(.contact-textarea-wrap) {
  height: 52px;
}

.contact-input-wrap input,
.contact-input-wrap select,
.contact-input-wrap textarea {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #1A1A2E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-input-wrap input::placeholder,
.contact-input-wrap textarea::placeholder {
  color: #9CA3AF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.contact-input-wrap select {
  appearance: none;
  cursor: pointer;
}

.contact-input-wrap select:invalid {
  color: #69686E;
}

.contact-textarea-wrap {
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contact-textarea-wrap svg {
  margin-top: 2px;
}

.contact-textarea-wrap .contact-input-divider {
  margin-top: 2px;
}

.contact-input-wrap textarea {
  resize: none;
  line-height: 22px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: #85BD56;
  color: #FFF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.2);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form-status {
  margin: 4px 0 0;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.contact-form-status-success {
  color: #4C9A2A;
}

.contact-form-status-error {
  color: #D9483C;
}

/* Success toast */
.contact-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-toast-container.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 360px;
  padding: 16px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12), 0 0 0 1px rgba(133, 189, 86, 0.08);
}

.contact-toast-leaf {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-toast-title {
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.contact-toast-desc {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

.contact-toast-close {
  margin-left: auto;
  border: none;
  background: none;
  color: #9CA3AF;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.contact-toast-close:hover {
  color: #69686E;
}

@media (max-width: 480px) {
  .contact-toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .contact-toast {
    max-width: none;
  }
}

/* Website Live Preview (dropdown, anchored to the input width) */
.contact-website-field {
  position: relative;
}

.contact-website-preview-collapse {
  display: grid;
  grid-template-rows: 1fr;
  margin-top: 6px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.4s ease, visibility 0.4s ease;
  animation: contactPreviewIn 0.2s ease;
}

.contact-website-preview-collapse.is-collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.contact-website-preview-collapse.is-collapsed * {
  pointer-events: none !important;
}

.contact-website-preview-dropdown {
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.contact-website-preview-inner {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #E4E7EC;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px;
  box-sizing: border-box;
}

@keyframes contactPreviewIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-preview-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1.5px solid #E4E7EC;
  border-radius: 8px;
  overflow: visible;
  background: #F5F5F5;
}

.contact-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #FFFFFF;
}

.contact-preview-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: #F5F5F5;
  pointer-events: none;
}

.contact-preview-hint {
  margin: 8px 0 0 0;
  color: #9CA3AF;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.contact-preview-hint a {
  color: #85BD56;
  font-weight: 500;
  text-decoration: underline;
}

/* Right column */
.contact-intro-text {
  width: 496px;
  max-width: 100%;
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 40px 0;
}

.contact-info-outer {
  display: flex;
  width: 496px;
  max-width: 100%;
  height: 488px;
  margin-top: 0;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #FFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

.contact-info-card {
  width: 464px;
  max-width: 100%;
  height: 456px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-sizing: border-box;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #85BD56;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
  flex: 1;
  min-width: 0;
}

.contact-info-label {
  color: #69686E;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.contact-info-value {
  width: 100%;
  max-width: 340px;
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 0 24px;
  }
  .contact-inner {
    padding: 24px 0;
  }
  .contact-row-intro {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  .contact-row-intro .contact-heading {
    margin-bottom: 0;
  }
  .contact-row-intro .contact-intro-text {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .contact-row-main {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .contact-row-main > .contact-form {
    width: 100%;
  }
  .contact-row-main > .contact-info-outer {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .contact-heading {
    font-size: 32px;
    line-height: 1.3;
    max-width: 100%;
  }
  .contact-info-outer {
    height: auto !important;
  }
  .contact-info-card {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-info-label {
    font-size: 13px;
    line-height: 24px;
  }
  .contact-info-value {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 800px) {
  .contact-info-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .contact-info-icon {
    width: 36px;
    height: 36px;
  }
  .contact-info-icon svg {
    width: 16px;
    height: 16px;
  }
  .contact-info-label {
    font-size: 12px;
    line-height: 22px;
  }
  .contact-info-value {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 960px) {
  .contact-breadcrumb,
  .cta-tagline,
  .available-tagline {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .contact-heading,
  .cta-main-heading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-intro-text,
  .cta-header-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 0 16px;
  }
  .contact-inner {
    padding: 20px 0 8px 0;
  }
  .contact-row-breadcrumb {
    margin-bottom: 8px;
  }
  .contact-breadcrumb {
    margin-bottom: 0px;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-heading {
    font-size: 26px;
    line-height: 34px;
    text-align: left;
  }
  .contact-row-intro {
    gap: 8px;
    margin-bottom: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .contact-intro-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
    text-align: left;
  }
  .contact-form {
    gap: 16px;
  }
  .contact-form-row {
    gap: 16px;
  }
  .contact-field label {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-input-wrap {
    padding: 10px 14px;
    border-radius: 10px;
  }
  .contact-field-full .contact-input-wrap:not(.contact-textarea-wrap) {
    height: 46px;
  }
  .contact-input-wrap input,
  .contact-input-wrap select,
  .contact-input-wrap textarea,
  .contact-input-wrap input::placeholder,
  .contact-input-wrap textarea::placeholder {
    font-size: 14px;
  }
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 0;
  }
  .contact-info-outer {
    padding: 8px;
    border-radius: 12px;
    height: auto !important;
  }
  .contact-info-card {
    padding: 16px;
    gap: 16px;
    height: auto !important;
  }
  .contact-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  .contact-info-icon svg {
    width: 15px;
    height: 15px;
  }
  .contact-info-label {
    font-size: 11px;
    line-height: 1.3;
  }
  .contact-info-value {
    font-size: 13.5px;
    line-height: 20px;
  }
  .contact-info-row {
    gap: 10px;
  }
  .contact-dropdown-selected-value {
    font-size: 14px;
  }
  .contact-custom-dropdown-options {
    border-radius: 10px;
    padding: 6px 0;
  }
  .contact-custom-dropdown-option {
    padding: 10px 14px;
    font-size: 14px;
  }
  .contact-recaptcha-container {
    transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform: scale(0.77);
    -webkit-transform-origin: 0 0;
    margin-bottom: -25px;
  }
}

@media (max-width: 360px) {
  html, body, main {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body {
    padding-top: 56px !important;
  }

  /* Header mobile */
  .desktop-nav {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .header-container,
  .header-container.scrolled {
    height: 72px !important;
    min-height: 72px !important;
    padding: 8px 12px !important;
  }

  .header-logo {
    height: 48px !important;
    max-width: 210px !important;
  }

  .header-middle {
    margin-right: 8px !important;
  }

  .start-project-btn {
    padding: 4px 6px !important;
    font-size: 10.5px !important;
    height: 28px !important;
    gap: 3px !important;
  }

  .start-project-btn svg {
    width: 9px !important;
    height: 9px !important;
  }

  .menu-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 2px !important;
  }

  .mobile-drawer {
    top: 84px !important;
    max-height: calc(100vh - 96px) !important;
    z-index: 9999 !important;
  }

  /* Hero Section */
  .hero-section-container {
    padding: 0 8px !important;
  }

  .hero-inner-container {
    padding: 4px 0 12px 0 !important;
  }

  .hero-card-frame {
    padding: 4px !important;
    border-radius: 12px !important;
  }

  .hero-outer-card {
    border-radius: 10px !important;
  }

  .hero-card-row {
    padding-top: 24px !important;
    padding-bottom: 20px !important;
  }

  .hero-headline,
  .hero-paragraph,
  .hero-stats,
  .hero-buttons-outer {
    padding: 0 8px !important;
  }

  .hero-tagline-container {
    gap: 4px !important;
    margin: 0 auto 6px auto !important;
    justify-content: center !important;
    max-width: 100% !important;
    flex-wrap: wrap !important;
  }

  .hero-tagline {
    font-size: 10px !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: break-word !important;
    line-height: 14px !important;
    letter-spacing: 0.01em !important;
  }

  .hero-headline {
    font-size: 20px !important;
    line-height: 28px !important;
    white-space: normal !important;
    text-align: center !important;
    margin: 0 auto 8px auto !important;
  }

  .hero-headline .dot {
    margin: 0 1px !important;
  }

  .hero-paragraph {
    font-size: 12.5px !important;
    line-height: 19px !important;
    text-align: center !important;
    margin: 0 auto 12px auto !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 4px !important;
    width: 100% !important;
    padding: 0 4px !important;
  }

  .hero-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-stat-divider {
    display: none !important;
  }

  .hero-stat-value {
    font-size: 13.5px !important;
    line-height: 18px !important;
  }

  .hero-stat-label {
    font-size: 8.5px !important;
    line-height: 12px !important;
    text-align: center !important;
  }

  .hero-stat-google-icon,
  .hero-stat-star-icon {
    width: 11px !important;
    height: 11px !important;
  }

  .hero-buttons-container {
    width: 100% !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .hero-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    line-height: 18px !important;
    justify-content: center !important;
  }

  .hero-trusted-logos {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 15px, #000 calc(100% - 15px), transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0, #000 15px, #000 calc(100% - 15px), transparent 100%) !important;
  }

  .hero-trusted-track {
    gap: 12px !important;
  }

  .hero-trusted-track.track-right {
    margin-top: 8px !important;
  }

  .hero-trusted-logo {
    height: 40px !important;
    max-width: 160px !important;
  }

  .tech-ecosystem {
    height: 240px !important;
    min-height: 240px !important;
    width: 100% !important;
    overflow: hidden !important;
    margin-top: 8px !important;
  }

  .eco-node.size-large {
    width: 28px !important;
    height: 28px !important;
  }

  .eco-node.size-medium {
    width: 24px !important;
    height: 24px !important;
  }

  .eco-node.size-small {
    width: 18px !important;
    height: 18px !important;
  }

  .eco-node.node-center {
    width: 44px !important;
    height: 44px !important;
  }

  .eco-node .hub-leaf-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* Services / What We Do Folder Cards */
  .services-section {
    padding: 0 8px !important;
    margin-bottom: 24px !important;
  }

  .services-container {
    padding: 16px 0 !important;
  }

  .services-header {
    margin-bottom: 16px !important;
    gap: 8px !important;
  }

  .services-main-heading {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .services-header-desc {
    font-size: 12.5px !important;
    line-height: 19px !important;
  }

  .folder-card-1,
  .folder-card-2,
  .folder-card-3,
  .folder-card-4,
  .folder-card-5,
  .folder-card-6,
  .folder-card-7 {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-height: 130px !important;
    padding: 34px 10px 18px 10px !important;
    margin-top: -36px !important;
  }

  .folder-card-1 .folder-bg,
  .folder-card-2 .folder-bg,
  .folder-card-3 .folder-bg,
  .folder-card-4 .folder-bg,
  .folder-card-5 .folder-bg,
  .folder-card-6 .folder-bg,
  .folder-card-7 .folder-bg {
    clip-path: polygon(0 0, 105px 0, 135px 26px, 100% 26px, 100% 100%, 0 100%) !important;
  }

  .folder-title {
    font-size: 12.5px !important;
    line-height: 16px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Contact Section */
  .contact-section {
    padding: 0 8px !important;
  }

  .contact-inner {
    padding: 16px 0 8px 0 !important;
  }

  .contact-heading {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .contact-intro-text {
    font-size: 12.5px !important;
    line-height: 19px !important;
  }

  .contact-input-wrap {
    padding: 8px 10px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .contact-input-wrap input,
  .contact-input-wrap select,
  .contact-input-wrap textarea,
  .contact-input-wrap input::placeholder,
  .contact-input-wrap textarea::placeholder,
  .contact-dropdown-selected-value {
    font-size: 12.5px !important;
  }

  .contact-input-divider {
    height: 14px !important;
  }

  .contact-submit-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 10px !important;
    font-size: 12.5px !important;
    line-height: 18px !important;
    gap: 6px !important;
  }

  .contact-submit-btn span {
    white-space: normal;
    word-break: break-word;
  }

  .contact-info-outer {
    padding: 4px !important;
  }

  .contact-info-card {
    padding: 12px 10px !important;
    gap: 12px !important;
  }

  .contact-info-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .contact-info-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact-info-label {
    font-size: 11px !important;
  }

  .contact-info-value {
    font-size: 12px !important;
    line-height: 16px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .contact-recaptcha-container {
    transform: scale(0.70);
    transform-origin: 0 0;
    -webkit-transform: scale(0.70);
    -webkit-transform-origin: 0 0;
    margin-bottom: -28px;
  }

  /* Featured / Presence / Insights / FAQs / CTA / Footer */
  .featured-section,
  .presence-section,
  .insights-section,
  .faqs-section,
  .cta-section,
  footer {
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-bottom: 24px !important;
  }

  .featured-main-heading,
  .presence-main-heading,
  .insights-main-heading,
  .faqs-main-heading,
  .cta-main-heading {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .featured-header-desc,
  .presence-desc,
  .insights-desc,
  .faqs-header-desc,
  .cta-header-desc {
    font-size: 12.5px !important;
    line-height: 19px !important;
  }

  .faq-item-card {
    padding: 10px 8px !important;
  }

  .faq-question-text {
    font-size: 12.5px !important;
    line-height: 17px !important;
  }

  .faq-toggle-btn {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }

  .cta-inner-box {
    padding: 16px 10px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-bottom-left, .footer-bottom-right {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 300px) {
  .header-logo {
    max-width: 85px !important;
  }
  .start-project-btn {
    padding: 4px 5px !important;
    font-size: 10px !important;
  }
  .contact-recaptcha-container {
    transform: scale(0.64);
    transform-origin: 0 0;
    -webkit-transform: scale(0.64);
    -webkit-transform-origin: 0 0;
    margin-bottom: -35px;
  }
}

/* Custom Dropdown Styling */
.contact-custom-dropdown-container {
  position: relative;
  width: 100%;
}

.contact-custom-dropdown-trigger {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-dropdown-selected-value {
  flex: 1;
  color: #060612;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.contact-dropdown-selected-value.placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.contact-dropdown-chevron {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-dropdown-chevron.open {
  transform: rotate(180deg);
}

.contact-custom-dropdown-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #E4E7EC;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 100;
}

.contact-custom-dropdown-option {
  padding: 12px 18px;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #69686E;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
}

.contact-custom-dropdown-option:hover {
  background: #F4FBF0;
  color: #85BD56;
}

.contact-custom-dropdown-option.selected {
  background: #EAF7E2;
  color: #85BD56;
  font-weight: 700;
}

/* reCAPTCHA container */
.contact-recaptcha-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* ==================== FOOTER REDESIGN ==================== */
.footer {
  background: transparent;
  width: 100%;
  padding: 0 24px 36px 24px;
  box-sizing: border-box;
  margin: 40px 0 0 0;
}

.footer-card {
  background: #F9FAFB;
  border: 1px solid #EAEAEA;
  border-radius: 28px;
  padding: 44px 44px 24px 44px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  max-width: 1340px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
  width: 100%;
  box-sizing: border-box;
}

.footer-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.footer-nav-col,
.footer-services-col,
.footer-contact-col {
  border-left: 1px solid #EAEAEA;
  padding-left: 28px;
}

/* Brand Col */
.footer-logo {
  width: 240px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-desc {
  color: #383840;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px 0;
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #75BF46;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  background: #599632;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(117, 191, 70, 0.3);
}

/* Headings */
.footer-heading {
  color: #0F172A;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading-bar {
  display: none;
}

/* Navigation Col */
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-link {
  color: #475569;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: #599632;
}

.footer-group {
  display: flex;
  flex-direction: column;
  margin: 2px 0;
}

.footer-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 10px;
  color: #475569;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-group-header:hover {
  color: #599632;
  background: #F1F8EC;
}

.footer-group-header.active {
  background: #EFF7EA;
  color: #599632;
}

.footer-chevron {
  transition: transform 0.25s ease;
  color: #75BF46;
}

.footer-group.open .footer-chevron {
  transform: rotate(90deg);
}

.footer-sublist {
  display: none;
  list-style: none;
  margin: 4px 0 6px 0;
  padding: 0 0 0 12px;
  flex-direction: column;
  gap: 4px;
}

.footer-group.open .footer-sublist {
  display: flex;
}

.footer-sublist a {
  color: #4B5563;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-sublist a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../assets/common/parivartan-leaf.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.footer-sublist a:hover,
.footer-sublist a.active {
  color: #4A8422;
  background-color: #F0F5ED;
}

.footer-sublist a:hover::before,
.footer-sublist a.active::before {
  opacity: 1;
}

/* Navigation & Services Col */
.footer-nav-list,
.footer-service-list,
.footer-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
}

.footer-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  margin: 0 !important;
  border-bottom: 1px solid #F1F5F9;
  width: 100%;
  box-sizing: border-box;
}

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

.service-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #EFF7EA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-service-item a {
  color: #475569;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-service-item a:hover {
  color: #599632;
}

.footer-group-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-service-item.footer-group {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
}

.footer-service-item.footer-group .footer-group-header {
  padding: 10px 0 !important;
  border-radius: 0;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-service-item.footer-group:hover .footer-group-header,
.footer-service-item.footer-group .footer-group-header:hover {
  background: transparent;
  color: #599632;
}

.footer-service-item.footer-group:hover .footer-chevron {
  color: #599632;
  transform: translateX(3px);
}

/* On Desktop / Laptop: Sleek On-Hover Flyout Menu Card */
@media (min-width: 961px) {
  .footer-chevron,
  .footer-group-header .footer-chevron {
    display: none !important;
  }

  .footer-service-item.footer-group {
    position: relative;
  }

  .footer-service-item.footer-group .footer-sublist {
    position: absolute;
    left: calc(100% + 14px);
    top: -6px;
    z-index: 100;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 10px 8px;
    box-shadow: 0 12px 32px rgba(6, 6, 18, 0.12), 0 2px 6px rgba(6, 6, 18, 0.04);
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  /* Invisible hover bridge */
  .footer-service-item.footer-group .footer-sublist::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 22px;
    height: 100%;
    background: transparent;
  }

  .footer-service-item.footer-group:hover .footer-sublist {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .footer-sublist a {
    color: #475569;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.18s ease;
  }

  .footer-sublist a:hover {
    background: #F0F7EB;
    color: #599632;
    transform: translateX(2px);
  }
}

/* On Mobile Screens: Accordion dropdown expanding inline with flush alignment */
@media (max-width: 960px) {
  .footer-chevron,
  .footer-group-header .footer-chevron {
    display: block !important;
  }

  .footer-service-item.footer-group .footer-sublist {
    display: none;
    padding-left: 46px;
    margin: 4px 0 8px 0;
    flex-direction: column;
    gap: 4px;
    box-shadow: none;
    border: none;
    background: transparent;
    position: static;
  }

  .footer-service-item.footer-group.open .footer-sublist {
    display: flex !important;
  }
}

/* Contact Col */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
}

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

.contact-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #EFF7EA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  color: #475569;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-text:hover {
  color: #599632;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #EAEAEA;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0F172A;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.join-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #75BF46;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-join-btn:hover {
  color: #599632;
}

.footer-join-btn img,
.footer-join-btn .life-title-leaf {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-join-btn:hover img,
.footer-join-btn:hover .life-title-leaf {
  transform: rotate(15deg) scale(1.15);
}

.footer-dot-matrix {
  display: grid;
  grid-template-columns: repeat(4, 3px);
  gap: 4px;
  opacity: 0.4;
}

.footer-dot-matrix span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #75BF46;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-value-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.footer-leaf-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-prop-divider {
  width: 1px;
  height: 16px;
  background: #CBD5E1;
}

.footer-copyright {
  color: #64748B;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 1200px) and (min-width: 576px) {
  .footer {
    padding: 0 20px 28px 20px;
    margin-top: 32px;
  }
  .footer-card {
    padding: 32px 28px 20px 28px;
    border-radius: 24px;
  }
  .footer-top {
    grid-template-columns: calc(50% - 18px) calc(50% - 18px);
    gap: 32px 36px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-brand .footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-brand .footer-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-brand .footer-social {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-nav-col {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-left: none;
    padding-left: 0;
  }
  .footer-services-col {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-left: none;
    padding-left: 0;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-top: 8px;
  }
  .footer-dot-matrix {
    display: none;
  }
  .footer-bottom {
    gap: 14px;
  }
  .footer-bottom-center {
    gap: 12px;
  }
  .footer-value-prop {
    font-size: 13.5px;
  }
}

@media (max-width: 575px) {
  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-social {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-nav-col,
  .footer-services-col,
  .footer-contact-col {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .footer {
    padding: 0 12px 20px 12px;
    margin-top: 24px;
  }
  .footer-card {
    padding: 24px 16px 18px 16px;
    border-radius: 18px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .footer-logo {
    width: 190px;
    max-height: 48px;
    margin-bottom: 14px;
  }
  .footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .footer-heading {
    font-size: 17px;
    margin-bottom: 14px;
  }
  .footer-group-header {
    padding: 10px 12px;
    font-size: 14.5px;
  }
  .footer-sublist a {
    font-size: 13.5px;
  }
  .contact-text {
    font-size: 14px;
    word-break: break-word;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 20px;
  }
  .footer-bottom-center {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .footer-prop-divider {
    display: none;
  }
  .footer-value-prop {
    font-size: 13.5px;
    justify-content: center;
  }
  .footer-copyright {
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 0 10px 16px 10px;
  }
  .footer-card {
    padding: 22px 14px 16px 14px;
    border-radius: 16px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-logo {
    width: 170px;
  }
  .service-icon-box,
  .contact-icon-box {
    width: 32px;
    height: 32px;
  }
  .service-icon-box svg,
  .contact-icon-box svg {
    width: 16px;
    height: 16px;
  }
  .footer-service-item a,
  .contact-text {
    font-size: 13.5px;
  }
  .footer-join-btn {
    font-size: 14px;
  }
}

/* Custom Footer Join Link (Global) */
.life-footer-parivar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.life-footer-parivar-link:hover {
  color: #85BD56;
}

.life-footer-parivar-link .life-title-leaf {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

.life-footer-parivar-link:hover .life-title-leaf {
  transform: rotate(15deg) scale(1.15);
}

/* ==================== 3D COVERFLOW CAROUSEL ==================== */
.featured-section {
  overflow-x: clip;
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.featured-container {
  overflow-x: clip;
  position: relative;
  width: 100%;
}

.featured-coverflow-stage {
  position: relative;
  width: 100%;
  height: 570px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: visible;
  padding: 0;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.featured-coverflow-stage::-webkit-scrollbar,
.featured-coverflow-track::-webkit-scrollbar,
.featured-coverflow-card::-webkit-scrollbar,
.coverflow-card-details::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.featured-coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.featured-coverflow-card {
  position: absolute;
  width: 58vw;
  max-width: 780px;
  min-width: 320px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.55s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
  user-select: none;
}

.coverflow-media-frame {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.4s ease;
  border: none;
  box-shadow: none;
}

.coverflow-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.coverflow-card-details {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coverflow-card-details .featured-card-title {
  margin: 0;
  line-height: 1.2;
}

.featured-card-tech-pills {
  display: none !important;
}

.coverflow-card-details .featured-tech-pill {
  background: rgba(0, 0, 0, 0.05);
  color: #1F2937;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12.5px;
  padding: 5px 13px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.coverflow-card-details .featured-tech-pill .tech-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.coverflow-card-details .mobile-visit-btn {
  display: none;
  margin-top: 12px;
  background: var(--85BD56, #85BD56);
  color: #FFFFFF !important;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto !important;
}

.coverflow-card-details .mobile-visit-btn:hover {
  background: #7bb34d;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.25);
}

.coverflow-card-details .mobile-visit-btn:active {
  transform: translateY(0);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 0 0 0 2px #E1FFC8;
}

/* Active Center Card */
.featured-coverflow-card.active {
  z-index: 10;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
}

.featured-coverflow-card.active .coverflow-card-details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.featured-coverflow-card.active .coverflow-media-frame {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

/* Left Card (Prev 1) */
.featured-coverflow-card.prev-1 {
  z-index: 5;
  opacity: 0.6;
  transform: translateX(-48%) scale(0.8);
  filter: blur(1.5px) brightness(0.85);
}

/* Right Card (Next 1) */
.featured-coverflow-card.next-1 {
  z-index: 5;
  opacity: 0.6;
  transform: translateX(48%) scale(0.8);
  filter: blur(1.5px) brightness(0.85);
}

/* Far Left Card (Prev 2) */
.featured-coverflow-card.prev-2 {
  z-index: 2;
  opacity: 0.25;
  transform: translateX(-78%) scale(0.65);
  filter: blur(3px) brightness(0.7);
}

/* Far Right Card (Next 2) */
.featured-coverflow-card.next-2 {
  z-index: 2;
  opacity: 0.25;
  transform: translateX(78%) scale(0.65);
  filter: blur(3px) brightness(0.7);
}

/* Hidden Offstage Cards */
.featured-coverflow-card.hidden-left {
  z-index: 1;
  opacity: 0;
  transform: translateX(-120%) scale(0.5);
  pointer-events: none;
}

.featured-coverflow-card.hidden-right {
  z-index: 1;
  opacity: 0;
  transform: translateX(120%) scale(0.5);
  pointer-events: none;
}

.featured-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  align-self: flex-end;
}

/* Navigation Arrow Buttons */
.coverflow-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E0E0E0;
  box-shadow: 0 2px 8px rgba(6, 6, 18, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060612;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coverflow-nav-btn:hover {
  background: #85BD56;
  border-color: #85BD56;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(133, 189, 86, 0.35);
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 16px;
}

/* Hover veil: blurs the artwork and reveals Visit the Website & Tech Tech Stack Pills on hover */
.featured-card-hover-veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  background: rgba(10, 11, 16, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 25;
  padding: 24px;
}

.hover-veil-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.35s ease;
  text-align: center;
  width: 100%;
}

/* Hover Triggers: only show on desktop hover devices, completely hide on mobile/touch */
@media (hover: hover) and (min-width: 961px) {
  .featured-coverflow-card:hover .featured-card-hover-veil,
  .coverflow-media-frame:hover .featured-card-hover-veil {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .featured-coverflow-card:hover .hover-veil-content,
  .coverflow-media-frame:hover .hover-veil-content {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px), (hover: none) {
  .featured-card-hover-veil,
  .hover-veil-content {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .featured-coverflow-card:hover .featured-card-hover-veil,
  .coverflow-media-frame:hover .featured-card-hover-veil,
  .featured-card-item:hover .featured-card-hover-veil {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
  }
}

.featured-card-view-btn {
  display: inline-flex;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--85BD56, #85BD56);
  color: #FFFFFF !important;
  font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card-view-btn:hover {
  transform: translateY(-2px);
  background: #7bb34d;
  color: #FFFFFF !important;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.25);
}

.featured-card-view-btn:active {
  transform: translateY(0);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1) inset, 0 0 0 2px #E1FFC8;
}

.featured-card-view-btn svg {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card-view-btn:hover svg {
  transform: translateX(3px);
}

.hover-veil-content .featured-card-tech-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hover-veil-content .featured-tech-pill {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.hover-veil-content .featured-tech-pill .tech-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.featured-card-item:hover .featured-card-media-frame {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* `object-fit` is not an animatable property, so switching cover -> contain on
   activation snapped the image the instant the class flipped, before the card
   had begun to widen. Holding `contain` in both states lets the image ease
   between sizes instead of jumping. */
.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  transition: width var(--featured-ease-duration) var(--featured-ease),
              height var(--featured-ease-duration) var(--featured-ease);
}

.featured-card-item.active .featured-card-img {
  width: 95%;
  height: 95%;
}

.featured-card-title {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin: 16px 0 10px 0;
  /* Collapsed cards are only 240px wide, so long titles wrapped to two or three
     lines. That made an inactive card the tallest item in the strip, and since
     the flex row stretches every card to match, the active card's pills ended
     far above the strip's bottom -- all of that slack showing up as a gap above
     the dots. One line keeps the expanded card the tallest, so there is none. */
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}

/* The expanded card is wide enough for the full title. */
.featured-card-item.active .featured-card-title {
  white-space: normal;
  overflow: visible;
}

/* Tech pills belong to the expanded card only. `display` is animated as a
   discrete property so the row can fade in yet still take up no space while
   hidden -- otherwise every collapsed card reserves several wrapped rows of
   empty height. Browsers without allow-discrete simply snap it in. */
.featured-card-tech-pills {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1 !important;
  transform: none !important;
}

.featured-coverflow-card.active .featured-card-tech-pills {
  display: flex !important;
  opacity: 1 !important;
  transform: none !important;
}

.featured-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F3F4F6;
  border-radius: 100px;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.featured-tech-pill .tech-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.featured-cards-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  position: relative;
  width: 100%;
}

.featured-cards-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.featured-cards-dots .dot-pill {
  width: 28px;
  height: 8px;
  border-radius: 4px;
  background: #85BD56;
  transition: all 0.3s ease;
}

.featured-cards-dots .dot-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 960px) {
  .featured-section {
    margin-bottom: 72px;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    margin-bottom: 0px !important;
  }

  .featured-carousel-nav {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .featured-header-left,
  .featured-header-right {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-tagline {
    justify-content: flex-start;
    text-align: left;
    margin: 0;
  }

  .featured-title {
    text-align: left;
  }

  .featured-description {
    text-align: left;
  }

  .featured-coverflow-stage,
  .featured-coverflow-track {
    height: 340px !important;
    margin-top: 0px !important;
    padding: 0 !important;
    align-items: flex-start !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .featured-coverflow-card {
    top: 0 !important;
    width: 78vw;
    max-width: 520px;
    min-width: 280px;
  }

  .featured-coverflow-card.prev-1 {
    transform: translateX(-40%) scale(0.82);
    opacity: 0.5;
  }

  .featured-coverflow-card.next-1 {
    transform: translateX(40%) scale(0.82);
    opacity: 0.5;
  }

  .featured-coverflow-card.prev-2 {
    transform: translateX(-68%) scale(0.68);
    opacity: 0.2;
  }

  .featured-coverflow-card.next-2 {
    transform: translateX(68%) scale(0.68);
    opacity: 0.2;
  }

  .coverflow-nav-btn {
    width: 40px;
    height: 40px;
  }

  .featured-card-title {
    font-size: 18px;
    margin-top: 10px;
  }

  .coverflow-img,
  .coverflow-media-frame,
  .featured-coverflow-card {
    box-shadow: none !important;
  }

  .featured-cards-bottom-bar {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .coverflow-img,
  .coverflow-media-frame,
  .featured-coverflow-card {
    box-shadow: none !important;
  }

  .featured-header {
    margin-bottom: 0px !important;
  }

  .featured-carousel-nav {
    margin-top: 12px !important;
    margin-bottom: 14px !important;
  }

  .featured-coverflow-stage,
  .featured-coverflow-track {
    height: 310px !important;
    margin-top: 0px !important;
    padding: 0 !important;
    align-items: flex-start !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .featured-coverflow-card {
    top: 0 !important;
    width: 86vw;
    min-width: 260px;
  }

  .featured-coverflow-card.prev-1 {
    transform: translateX(-35%) scale(0.8);
    opacity: 0.4;
  }

  .featured-coverflow-card.next-1 {
    transform: translateX(35%) scale(0.8);
    opacity: 0.4;
  }

  .coverflow-nav-btn {
    width: 36px;
    height: 36px;
  }

  .coverflow-card-details {
    margin-top: 8px;
    margin-bottom: 0;
    overflow: hidden !important;
  }

  .featured-card-title {
    font-size: 15.5px;
    margin-top: 6px;
  }

  .coverflow-card-details .featured-card-tech-pills {
    display: flex;
    margin-top: 6px;
  }

  .coverflow-card-details .mobile-visit-btn {
    display: none !important;
  }

  .featured-cards-bottom-bar {
    display: none !important;
  }
}

.coverflow-mobile-fixed-visit-btn {
  display: none;
}

@media (max-width: 1024px) {
  .coverflow-card-details .mobile-visit-btn {
    display: none !important;
  }

  .coverflow-mobile-fixed-visit-btn {
    display: inline-flex !important;
    position: absolute !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 50 !important;
    margin: 0 !important;
    background: var(--85BD56, #85BD56);
    color: #FFFFFF !important;
    font-family: Satoshi, 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    padding: 8px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none !important;
    white-space: nowrap;
  }
}

/* ==================== UNIFORM GLOBAL SECTION SPACING ==================== */
.hero-section-container,
.services-section,
.featured-section,
.presence-section,
.testimonials-section,
.faqs-section,
.cta-section,
.contact-section {
  margin-bottom: 60px !important;
}

.services-container,
.featured-container,
.presence-container,
.testimonials-container,
.faqs-container,
.cta-container,
.contact-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tablet Uniform Section Spacing */
@media (max-width: 960px) {
  .hero-section-container,
  .services-section,
  .featured-section,
  .presence-section,
  .testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section {
    margin-bottom: 44px !important;
  }

  .services-container,
  .featured-container,
  .presence-container,
  .testimonials-container,
  .faqs-container,
  .cta-container,
  .contact-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Uniform Section Spacing */
@media (max-width: 480px) {
  .hero-section-container,
  .services-section,
  .featured-section,
  .presence-section,
  .testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section {
    margin-bottom: 32px !important;
  }

  .services-container,
  .featured-container,
  .presence-container,
  .testimonials-container,
  .faqs-container,
  .cta-container,
  .contact-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Uniform Left Alignment for All Section Headers */
@media (max-width: 960px) {
  .services-header,
  .featured-header,
  .presence-header,
  .testimonials-header,
  .faqs-header,
  .cta-header,
  .contact-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .services-header-left,
  .services-header-right,
  .featured-header-left,
  .featured-header-right,
  .presence-header-left,
  .presence-header-right,
  .testimonials-header-left,
  .testimonials-header-right,
  .faqs-header-left,
  .faqs-header-right,
  .cta-header-left,
  .cta-header-right,
  .contact-header-left,
  .contact-header-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services-tagline,
  .featured-tagline,
  .presence-tagline,
  .testimonials-tagline,
  .faqs-tagline,
  .cta-tagline,
  .contact-tagline {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services-main-heading,
  .featured-main-heading,
  .presence-main-heading,
  .testimonials-main-heading,
  .faqs-main-heading,
  .cta-main-heading,
  .contact-main-heading,
  .featured-title,
  .project-title {
    text-align: left !important;
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .services-header-desc,
  .featured-subheading,
  .featured-description,
  .presence-header-desc,
  .testimonials-header-desc,
  .faqs-header-desc,
  .cta-header-desc,
  .contact-header-desc {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Desktop Nav Styles */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #606060;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 200% */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #75BF46;
}

.nav-link svg {
  transition: transform 0.25s ease;
  margin-top: 1px; /* Optical alignment */
}

.nav-link:hover svg {
  transform: rotate(180deg) translateY(-1px); /* Keep aligned when rotated */
}

.mobile-only {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-only,
  .menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10001 !important;
    pointer-events: auto !important;
  }
}

/* Desktop Dropdown Styles */
.desktop-nav .nav-item {
  position: relative;
  padding: 20px 0; /* To create a hover bridge */
}

.desktop-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  padding: 12px 0;
  width: max-content;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 110;
  border: 1px solid #F0EFED;
}

.nav-item.has-dropdown.is-open .dropdown-menu,
.desktop-nav .nav-item:hover .dropdown-menu,
.desktop-nav .nav-item.is-open .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: auto !important;
  display: block !important;
}

@media (max-width: 1000px) {
  .nav-item.has-dropdown.is-open .dropdown-menu {
    display: block !important;
    position: fixed !important;
    top: 75px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #EAEAEA !important;
    padding: 10px 0 !important;
    width: calc(100vw - 32px) !important;
    max-width: 300px !important;
  }
}

.desktop-nav .nav-item.is-open > .nav-link,
.desktop-nav .nav-item:hover > .nav-link {
  color: #85BD56 !important;
}

.desktop-nav .nav-item.is-open > .nav-link svg,
.desktop-nav .nav-item:hover > .nav-link svg {
  transform: rotate(180deg) !important;
  transition: transform 0.3s ease;
}

.desktop-nav .nav-link svg {
  transition: transform 0.3s ease;
}

.desktop-nav .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #4A5A50;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.desktop-nav .dropdown-item:hover {
  background: rgba(133, 189, 86, 0.08);
  color: #599632;
  padding-left: 24px;
}

.desktop-nav .dropdown-item img.submenu-leaf {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.desktop-nav .dropdown-item:hover img.submenu-leaf {
  opacity: 1;
  transform: scale(1.25) rotate(15deg);
}

/* Active Nav Item & Active Dropdown Item Styles */
.nav-link.active,
.nav-item.active > .nav-link {
  color: #75BF46 !important;
  font-weight: 600;
}

.nav-item.active > .nav-link svg,
.nav-link.active svg path {
  stroke: #75BF46;
}

.desktop-nav .dropdown-item.active {
  background: rgba(133, 189, 86, 0.12);
  color: #599632;
  font-weight: 600;
  padding-left: 24px;
}

.desktop-nav .dropdown-item.active img.submenu-leaf {
  opacity: 1;
  transform: scale(1.25) rotate(15deg);
}

/* ==================== HEADER RESPONSIVENESS (1001px – 1299px) ==================== */
@media (max-width: 1299px) and (min-width: 1201px) {
  header.header-container {
    position: sticky !important;
    top: 0 !important;
    padding: 0 24px !important;
    height: 80px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  header.header-container.scrolled {
    height: 80px !important;
  }
  header.header-container .header-left {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-middle {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
    min-width: 0 !important;
  }
  header.header-container .header-right {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-logo {
    height: 48px !important;
    max-width: 210px !important;
    width: auto !important;
    display: block !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    gap: 20px !important;
    flex-shrink: 0 !important;
    transform: none !important;
  }
  header.header-container .desktop-nav .nav-item {
    padding: 10px 0 !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav .nav-link {
    font-size: 13.5px !important;
    gap: 4px !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
    padding: 2px 0 !important;
  }
  header.header-container .desktop-nav .nav-link svg {
    width: 9px !important;
    height: 9px !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn {
    padding: 8px 18px !important;
    font-size: 13.5px !important;
    gap: 6px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn svg {
    width: 9px !important;
    height: 9px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 1200px) and (min-width: 1101px) {
  header.header-container {
    position: sticky !important;
    top: 0 !important;
    padding: 0 20px !important;
    height: 76px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  header.header-container.scrolled {
    height: 76px !important;
  }
  header.header-container .header-left {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-middle {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    min-width: 0 !important;
  }
  header.header-container .header-right {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-logo {
    height: 46px !important;
    max-width: 200px !important;
    width: auto !important;
    display: block !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    gap: 15px !important;
    flex-shrink: 0 !important;
    transform: none !important;
  }
  header.header-container .desktop-nav .nav-item {
    padding: 8px 0 !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav .nav-link {
    font-size: 13px !important;
    gap: 3.5px !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
    padding: 2px 0 !important;
  }
  header.header-container .desktop-nav .nav-link svg {
    width: 8.5px !important;
    height: 8.5px !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn {
    padding: 7px 16px !important;
    font-size: 13px !important;
    gap: 5px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn svg {
    width: 8.5px !important;
    height: 8.5px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 1100px) and (min-width: 1001px) {
  header.header-container {
    position: sticky !important;
    top: 0 !important;
    padding: 0 16px !important;
    height: 72px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  header.header-container.scrolled {
    height: 72px !important;
  }
  header.header-container .header-left {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-middle {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    min-width: 0 !important;
  }
  header.header-container .header-right {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  header.header-container .header-logo {
    height: 44px !important;
    max-width: 190px !important;
    width: auto !important;
    display: block !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    gap: 11px !important;
    flex-shrink: 0 !important;
    transform: none !important;
  }
  header.header-container .desktop-nav .nav-item {
    padding: 6px 0 !important;
    flex-shrink: 0 !important;
  }
  header.header-container .desktop-nav .nav-link {
    font-size: 12.5px !important;
    gap: 3px !important;
    white-space: nowrap !important;
    letter-spacing: -0.015em !important;
    padding: 1.5px 0 !important;
  }
  header.header-container .desktop-nav .nav-link svg {
    width: 8px !important;
    height: 8px !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn {
    padding: 6px 14px !important;
    font-size: 12.5px !important;
    gap: 4.5px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  header.header-container .start-project-btn svg {
    width: 8px !important;
    height: 8px !important;
    flex-shrink: 0 !important;
  }
}

/* Dedicated Our Work Floating Card Modal */
.our-work-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
}

.our-work-modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.our-work-modal-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 320px;
  padding: 12px 10px;
  border: 1px solid #EAEAEA;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.our-work-modal-backdrop.is-visible .our-work-modal-card {
  transform: translateY(0) scale(1);
}

.our-work-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 12px 12px;
  border-bottom: 1px solid #F0EFED;
  margin-bottom: 6px;
}

.our-work-modal-title {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.our-work-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #888888;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.our-work-modal-close:hover {
  color: #1A1A1A;
  background: #F4F4F5;
}

.our-work-modal-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.our-work-modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: #333333;
  text-decoration: none;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.our-work-modal-item:hover {
  background: rgba(133, 189, 86, 0.08);
  color: #599632;
  transform: translateX(4px);
}

.our-work-modal-item img.submenu-leaf {
  width: 15px;
  height: 15px;
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.our-work-modal-item:hover img.submenu-leaf {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}






