
        html {
            scroll-behavior: smooth;
        }
       
        /* Custom card micro-interactions */
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
        }
        /* Style adjustments for custom slide transitions inside console */
        .slide-pane {
            transition: opacity 0.25s ease-in-out;
        }
        /* Smooth progress indicators */
        .timeline-progress {
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Soft custom scrollbars for table and console sidebar */
        .custom-scroll::-webkit-scrollbar {
            width: 5px;
            height: 5px;
        }
        .custom-scroll::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        .custom-scroll::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 9999px;
        }

        .mobile-nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            color: #334155;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .mobile-nav-toggle:hover {
            background: #f8fafc;
            transform: translateY(-1px);
        }

        .mobile-menu {
            display: none;
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
            z-index: 49;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.25rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-link {
            display: block;
            padding: 0.95rem 0.75rem;
            color: #475569;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #f1f5f9;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .mobile-link:hover {
            color: #4338ca;
            background: #f8fafc;
        }

        .mobile-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.95rem 1rem;
            border-radius: 1rem;
            background: #4f46e5;
            color: #ffffff;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .mobile-cta:hover {
            background: #4338ca;
        }

        @media (max-width: 1024px) {
            .desktop-nav {
                display: none !important;
            }

            .mobile-nav-toggle {
                display: inline-flex;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                position: absolute;
                top: 100%;
                left: 0;
            }
            .lead-gen {
                display: none !important;
            }
        }

  .vivek-logo{
     
            height: 60px;
        
  }