 body {
        font-family: "Inter", sans-serif;
        background:#f2ebe1;
      }

      
      .swiper {
        width: 100%;
        height: 100%;
      }

      
      
      
      .mobile-menu {
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      }

      .mobile-menu.open {
        transform: translateX(0);
      }

      
      .hamburger .bar {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        transform-origin: center;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      /* ---- FAQ ---- */
      .faq__answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1),
          padding 0.3s ease;
      }

      .faq__answer.open {
        max-height: 300px;
      }

      .faq__icon {
        transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
      }

      .faq__item.open .faq__icon {
        transform: rotate(45deg);
      }

      /* ---- GSAP SplitText mask ---- */
      .gsap-line-mask {
        overflow: hidden;
        display: block;
      }

      

      /* SplitText mask: lines need overflow hidden on the line wrapper GSAP creates */
      .para-reveal .split-line,
      .gsap-reveal .split-line {
        overflow: hidden;
        display: block;
      }

      [data-split-line] {
        overflow: hidden !important;
        display: block !important;
      }

      /* Stats separator */
      .stats__content {
        position: relative;
      }

      .stats__content::after {
        width: 1px;
        background-color: red;
        content: "";
        height: 40%;
        position: absolute;
        right: 0;
      }

      @keyframes ping {
        75%,
        100% {
          transform: scale(2);
          opacity: 0;
        }
      }

      .float-btns {
        position: fixed;
        bottom: 24px;
        right: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        z-index: 9999;
      }

      .ping-ring {
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        opacity: 0.75;
        animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
      }

      .fab-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 9999px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        transition: transform 0.18s;
      }

      .fab-btn:hover {
        transform: scale(1.1);
      }

      .fab-btn:active {
        transform: scale(0.95);
      }

      .fab-btn svg {
        width: 26px;
        height: 26px;
      }

      /* ===== TOAST NOTIFICATION ===== */
      .toast {
        position: fixed;
        bottom: 100px;
        right: 24px;
        background: var(--color-whatsapp);
        color: white;
        padding: 16px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        animation: slideIn 0.3s ease;
        z-index: 9998;
      }

      @keyframes slideIn {
        from {
          transform: translateX(400px);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }
   
      
      .projectSwiper .swiper-pagination-bullet {
        width: 16px;
        height: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        transition: all 0.3s ease;
      }

      .projectSwiper .swiper-pagination-bullet-active {
        width: 30px;
        background: #f2eae1;
      }
    

      .prog-seg {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: all linear 0.5s;
}

.prog-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #fff;
  border-radius: 2px;
}

.prog-seg.done .prog-fill {
  width: 100%;
  transition: none;
}

.prog-seg.inactive .prog-fill {
  width: 0%;
  transition: none;
}



      .s-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #ede9e1;
      border: 1px solid rgba(0,0,0,0.06);
      color: #2d2925;
      border-radius: 999px;
      padding: 5px 10px 5px 12px;
      font-size: 12px;
      font-weight: 500;
      font-family: var(--font-secondary);
      animation: pillIn 0.15s ease;
    }
    .s-pill button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      color: #9a9490;
      font-size: 14px;
      transition: color 0.15s;
    }
    .s-pill button:hover { color: #1a1714; }

    .t-pill {
      display: inline-block;
      background: #ede9e1;
      border: 1px solid rgba(0,0,0,0.06);
      color: #2d2925;
      border-radius: 999px;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 500;
      font-family: var(--font-secondary);
      max-width: 120px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .t-more {
      font-size: 11px;
      color: #9a9490;
      font-weight: 600;
      white-space: nowrap;
    }

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



          #home { padding-top: 68px; margin-top: -68px; }
      
      body.sheet-open { overflow: hidden; }

      #site-nav #nav-bg  {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        
      }
      /* #site-nav .nav-link { color:  #403a37 } */
    
      #site-nav.scrolled #nav-logo { color: #111111; }
      #site-nav.scrolled .nav-cta { border-color: rgba(17, 17, 17, 0.20); color: #111111; }
      #site-nav.scrolled .nav-cta:hover { background: #f55e36; border-color: #f55e36; color: #fff; }
      



       @keyframes marquee-scroll {
                0% {
                  transform: translateX(0);
                }
                100% {
                  transform: translateX(-50%);
                }
              }
              .testimonials-track {
                display: flex;
                gap: 20px;
                width: max-content;
                animation: marquee-scroll 40s linear infinite;
                will-change: transform;
              }
              .testimonials-track:hover {
                animation-play-state: paused;
              }
              @media (prefers-reduced-motion: reduce) {
                .testimonials-track {
                  animation-play-state: paused;
                }
              }
              .testimonial-card {
                flex-shrink: 0;
                width: 380px;
              }
              @media (max-width: 768px) {
                .testimonial-card {
                  width: 300px;
                }
                .testimonials-track {
                  gap: 16px;
                  animation-duration: 28s;
                }
              }

              /* Only desktop/tablet pe mask */
@media (min-width: 640px) {
  #marquee-wrapper {
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 12.5%,
      rgb(0, 0, 0) 87.5%,
      rgba(0, 0, 0, 0) 100%
    );

    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 12.5%,
      rgb(0, 0, 0) 87.5%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}


.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }




