  /* Mobile Styles */
    @media (max-width:1500px) {
      .text-content p {
          font-size: 24px;
      }
  }

    @media (max-width:1024px) {
      .demo-content {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
      }

      .zesty-main-heading {
          font-size: 3rem;
          font-weight: 700;
          color: #2B2B2B;
          margin-bottom: 40px;
          line-height: 1.1;
          font-family: 'Poppins', sans-serif;
      }

   
       .hideOnSmallWidth{
        display: none;
       }

      .demo-content {
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 10px;
          max-width: 90%;
      }
  }

  @media (max-width: 850px) {
      .nav-container {
          padding: 0 16px;
          height: 60px;
          max-width: 90%;
      }

      .logo-space {
          min-width: 100px;
          font-size: 11px;
      }

      .textCenterCss{
        text-align: center;
      }
         

      .nav-menu {
          position: fixed;
          top: 60px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 60px);
          background-color: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          gap: 0;
          padding-top: 40px;
          transition: left 0.3s ease;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      .nav-menu.active {
          left: 0;
      }

      .nav-item {
          width: 100%;
          text-align: left;
          padding: 16px 0;
          border-bottom: 1px solid #f3f4f6;
          /* Reset transforms for mobile */
          transform: translateX(-100%);
          padding-left: 20px;
      }

      .nav-link {
          font-size: 18px;
          padding: 16px 0;
          display: block;
          width: 100%;
      }

      .nav-link::after {
          display: none;
      }

      .mobile-menu-toggle {
          display: flex;
      }

      .cta-button {
          display: none;
      }

      .mobile-cta-button {
          display: block;
          background: linear-gradient(135deg, #c026d3, #a21caf);
          color: white;
          border: none;
          padding: 14px 32px;
          border-radius: 25px;
          font-weight: 600;
          font-size: 16px;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
          margin-top: 20px;
          width: 80%;
          max-width: 250px;
          position: relative;
          overflow: hidden;
          margin: 0 auto;
      }

      .mobile-cta-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(192, 38, 211, 0.4);
      }

      .zesty-features-container {
          gap: 30px;
      }
       .zesty-cta-button {
          padding: 7px 23px;
          font-size: 15px;
      }

      .zesty-scroll-container {
          flex-direction: row;
          overflow-x: auto;
          overflow-y: hidden;
          gap: 15px;
          padding: 10px;
          scroll-snap-type: x mandatory;
      }

      .zesty-scroll-column {
          min-width: 280px;
          height: 100vh;
          padding: 20px 0;
          scroll-snap-align: start;
      }

      .zesty-scroll-track {
          animation: none;
      }

      .zesty-scroll-card {
          height: 350px;
          margin: 8px 0;
          border-radius: 15px;
      }

      .zesty-scroll-play {
          width: 55px;
          height: 55px;
      }

       .zestyy-component {
          height: auto !important;
          min-height: auto;
      }

      .sticky-wrapper {
          position: relative;
          height: auto;
          min-height: 90vh;
          padding: 2rem 0;
      }

      .container {
          padding: 0 1rem;
      }

      .content-wrapper {
          flex-direction: column;
          gap: 2rem;
          padding: 1rem 0;
          height: auto;
      }

      .image-section {
          width: 100%;
          order: 1;
          flex: none;
          margin-bottom: 1rem;
      }


      .text-section {
          width: 100%;
          order: 2;
          flex: none;
          padding: 0;
          height: auto;
      }

      .text-content {
          height: auto;
          padding: 1rem 0;
      }

      .text-content p {
          font-size: 1.1rem;
          margin-bottom: 1.5rem;
          text-align: center;
      }

      .test-section {
          font-size: 1.5rem;
          padding: 1rem;
      }

      /* Disable scroll-based color change on mobile */
      .zestyy-component.scrolled-25 .text-content p,
      .zestyy-component.scrolled-50 .text-content p,
      .zestyy-component.scrolled-75 .text-content p,
      .zestyy-component.scrolled-100 .text-content p {
          color: #000000;
      }
  }

    @media (min-width: 769px) and (max-width: 1024px) {
      .container {
          max-width: 90%;
      }

      .content-wrapper {
          gap: 2rem;
      }

      .text-content p {
          font-size: 1.3rem;
      }
  }


  @media (max-width: 1024px) and (min-width: 769px) {
      .nav-menu {
          gap: 24px;
      }

      .nav-link {
          font-size: 15px;
      }
  }

  
  @media (max-width:500px) {
      .demo-content {
grid-template-columns: 1fr;
          max-width: 100%;
      }

      .zesty-creative-container {
          margin-top: 80px;
      }

      .hideinMobile {
          display: none;
      }

      .nav-container {
          max-width: 100%;
      }
      .right-content {
          display: none;
      }



  }

  @media (max-width: 480px) {
      .nav-container {
          padding: 0 12px;
      }

      .logo-space {
          min-width: 80px;
          font-size: 10px;
      }

      .mobile-cta-button {
          padding: 12px 24px;
          font-size: 14px;
      }

      .zesty-cta-button {
          font-size: 12px;
      }

      .container {
          max-width: 90%;
      }

      .eyebrow {
          font-size: 38px;
      }

      .zesty-notification-content {
          gap: 15px;
      }

      .zesty-features-container {
          gap: 20px;
      }

      .zesty-feature-item {
          font-size: 16px;
      }
  }