πŸš€
πŸ“Š
πŸ’‘
⚑
🎯

Hey, I'm Khushi! πŸ‘‹

Product Manager @ Newfold Digital

I turn crazy ideas into products that actually work πŸŽ‰
Built 3 web products β€’ Made $1.5M happen β€’ Love making things 15% better ✨

Let's Chat! πŸ’¬

About Me

So, what's my story? πŸ€”

I turn chaos into products people love! 🎯 Currently at Newfold Digital making magic happen with 3 web products.

When I'm not building awesome products, I'm probably explaining why I love spreadsheets! πŸ“Šβœ¨

Skills & Expertise

Product Management

Product Lifecycle Management Strategic Planning & Roadmapping Product Metrics & KPI Tracking Vendor & Contract Management Iterative Product Development

Data Analysis & Visualization

SQL Microsoft Excel Python (Basics) Tableau Power BI Amazon Quicksight Salesforce Dashboards

Agile & Project Management

Scrum Kanban Jira Confluence Service Desk Cross-functional Leadership Stakeholder Management

Technical & Design

HTML/CSS APIs PHP WordPress Figma Adobe Creative Suite UX Design

Experience

Dec 2023 - Present

Product Manager

Newfold Digital

Led end-to-end lifecycle for 3 web-based products with full ownership of roadmap, backlog, and OKR-aligned prioritization. Increased operational efficiency by 15% and unlocked $1.5M in revenue by optimizing workflows and redefining MVPs. Reduced production costs by 10%, delivering $900K in annual savings through process improvements.

2023 - Dec 2023

Technical Operations

Newfold Digital

Designed precise reports to identify and correct variances, reducing errors by 20% and boosting efficiency by 15%. Created Salesforce CRM reports, improving support metric insights and increasing client retention by 10%. Launched cross-functional training, raising productivity by 25% and customer satisfaction by 15%.

June 2019 - Dec 2023

Technical Operations (Extended Role)

Newfold Digital

Directed strategic resource allocation, leading to 10% profit margin improvement and $800K in annual cost savings. Developed scalable web architectures, enhancing reliability by 30% and decreasing security vulnerabilities by 25%. Strengthened client retention by 20% and unlocked $1M through strategic relationship management.

June 2018 - June 2019

Intern - Website Development & Marketing Automation

InfoBahn

Developed user-friendly websites, blogs, and e-commerce platforms ensuring seamless navigation. Implemented automated email marketing systems managing 450+ campaigns efficiently. Enhanced SEO strategies, increasing Google rankings by 60% through optimization and achieved 29% conversion rate through data-driven marketing campaigns.

Awards & Recognition

πŸ†

The Harvey Keitel Award for Operational Efficiency

Newfold Digital

Recognized for leveraging analytics to drive client retention (+20%), increase successful implementations (+15%), and unlock $1M in upsell revenue. Exceeded support performance targets, reducing issue resolution time by 5% and driving 10% quarterly revenue growth.

Featured Projects

πŸš€

Product Lifecycle Optimization

Led end-to-end lifecycle for 3 web-based products, implementing OKR-aligned prioritization and optimized workflows that unlocked $1.5M in revenue and improved operational efficiency by 15%.

Product Roadmapping Workflow Optimization Revenue Growth
View Details β†’
πŸ“Š

APAC Compliance Integration

Spearheaded APAC compliance integration with minimal customer disruption, coordinating global teams and vendors. Conducted A/B testing and user research to validate features and identify market expansion opportunities.

Global Coordination A/B Testing Compliance
View Details β†’
πŸ’‘

Cost Reduction & Process Improvement

Reduced production costs by 10% delivering $900K in annual savings through strategic process improvements and scalable web architecture development that enhanced reliability by 30%.

Cost Optimization Process Improvement Architecture Design
View Details β†’

Education

Post Graduate Diploma in Business Management

Narsee Monjee Institute of Management Studies

Specialization: Operations Management

Duration: Dec 2019 - Jan 2022

Bachelor of Science

University of Mumbai (Mithibai College)

Specialization: Computer Science

Duration: June 2016 - June 2019

Let's Connect

Get in Touch

I'm always interested in discussing new opportunities, product challenges, or sharing insights about the industry.

πŸ“§
Email
khushiparmar125@gmail.com
πŸ’Ό
LinkedIn
linkedin.com/in/khushi-parmarr
); if (isDollar && targetValue >= 1000) { animateCounter(numberEl, targetValue, 'K'); } else if (isDollar) { animateCounter(numberEl, targetValue, 'M'); } else if (isPercentage) { animateCounter(numberEl, targetValue, '%'); } else { animateCounter(numberEl, targetValue); } } }, index * 100); } }); }, observerOptions); // Observe elements for scroll animations document.querySelectorAll('.skill-category, .project-card, .timeline-item, .stat-item').forEach(el => { el.style.opacity = '0'; el.style.transform = 'translateY(30px)'; el.style.transition = 'opacity 0.8s ease, transform 0.8s ease'; observer.observe(el); }); // Add interactive skill tags document.querySelectorAll('.skill-tag').forEach(tag => { tag.addEventListener('click', function() { this.style.transform = 'scale(1.2) rotate(5deg)'; setTimeout(() => { this.style.transform = ''; }, 300); }); }); // Parallax effect for sections window.addEventListener('scroll', () => { const scrolled = window.pageYOffset; const parallaxElements = document.querySelectorAll('.floating-element'); parallaxElements.forEach((element, index) => { const speed = 0.5 + (index * 0.1); element.style.transform = `translateY(${scrolled * speed}px) rotate(${scrolled * 0.1}deg)`; }); }); // Add some cursor trail effect with more particles let mousePath = []; document.addEventListener('mousemove', (e) => { mousePath.push({x: e.clientX, y: e.clientY, time: Date.now()}); // Keep only recent positions mousePath = mousePath.filter(point => Date.now() - point.time < 500); // Create sparkle effect more frequently if (Math.random() < 0.15) { createSparkle(e.clientX, e.clientY); } }); function createSparkle(x, y) { const sparkle = document.createElement('div'); const colors = ['#667eea', '#764ba2', '#f093fb', '#4facfe']; const randomColor = colors[Math.floor(Math.random() * colors.length)]; sparkle.style.position = 'fixed'; sparkle.style.left = (x + Math.random() * 20 - 10) + 'px'; sparkle.style.top = (y + Math.random() * 20 - 10) + 'px'; sparkle.style.width = (Math.random() * 6 + 2) + 'px'; sparkle.style.height = sparkle.style.width; sparkle.style.background = randomColor; sparkle.style.borderRadius = '50%'; sparkle.style.pointerEvents = 'none'; sparkle.style.zIndex = '9999'; sparkle.style.animation = 'sparkle 1s ease-out forwards'; document.body.appendChild(sparkle); setTimeout(() => { sparkle.remove(); }, 1000); } // Add sparkle animation to CSS const sparkleCSS = ` @keyframes sparkle { 0% { opacity: 1; transform: scale(0) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(180deg); } 100% { opacity: 0; transform: scale(0) rotate(360deg); } } `; const style = document.createElement('style'); style.textContent = sparkleCSS; document.head.appendChild(style); // Auto-scroll demo on load (optional) window.addEventListener('load', () => { setTimeout(() => { document.querySelector('#about').scrollIntoView({ behavior: 'smooth', block: 'start' }); setTimeout(() => { document.querySelector('.hero').scrollIntoView({ behavior: 'smooth', block: 'start' }); }, 3000); }, 2000); }); top = y + 'px'; sparkle.style.width = '4px'; sparkle.style.height = '4px'; sparkle.style.background = 'linear-gradient(45deg, #667eea, #764ba2)'; sparkle.style.borderRadius = '50%'; sparkle.style.pointerEvents = 'none'; sparkle.style.zIndex = '9999'; sparkle.style.animation = 'sparkle 0.8s ease-out forwards'; document.body.appendChild(sparkle); setTimeout(() => { sparkle.remove(); }, 800); } // Add sparkle animation to CSS const sparkleCSS = ` @keyframes sparkle { 0% { opacity: 1; transform: scale(0); } 50% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0); } } `; const style = document.createElement('style'); style.textContent = sparkleCSS; document.head.appendChild(style);