About me

I’m a passionate web designer specializing in creating visually engaging, user-friendly websites that convert. From sleek portfolio sites and modern business websites to e-commerce stores and landing pages, I design with purpose and precision. Beyond web design, I also offer UI/UX design for mobile and desktop apps, responsive redesigns, and complete website revamps. My goal is to blend creativity with strategy to help brands build a strong digital presence.

interested in working with me as well?

What service am I providing?

Web Design

Modern, mobile-friendly websites built for speed, performance, and conversion — on WordPress, Wix, or custom platforms.

 

Social Media Marketing

Engaging content, targeted campaigns, and data-driven growth to help you reach your audience on Instagram, Facebook, and more. 

 

Graphic Design

Eye-catching designs for your brand, social media, and marketing — including logos, banners, and more.

 

SEO & Google Ranking

Get found on Google with powerful search engine optimization strategies and local SEO support.

 

Branding & Identity

Build a memorable brand with custom logos, typography, color palettes, and brand guidelines.

 

Meta Ads & Paid Campaigns

We create and manage high-converting ads that bring you leads, sales, and brand visibility.

Have a look at my portfolio

Freelance product designer, let’s work together

Nulla porttitor accumsan tincidunt. Pellentesque in ipsum id orci porta dapibus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.

clients say

🌊 Book Your Goa Cruise

👤
📧
📞
📅
👥 Number of Guests 1 Guest 2 Guests 3 Guests 4 Guests 5 Guests
* { box-sizing: border-box; font-family: 'Roboto', sans-serif; } .booking-widget { max-width: 400px; width: 100%; margin: 20px auto; } .booking-form { background: #ffffff; padding: 30px 25px; border-radius: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: transform 0.3s; } .booking-form:hover { transform: translateY(-5px); } /* Updated headline color */ .booking-form h2 { text-align: center; margin-bottom: 25px; color: #EB662B; font-size: 24px; } .input-group { position: relative; margin-bottom: 15px; } .input-group .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 18px; color: #EB662B; /* icon color matches theme */ } .booking-form input, .booking-form select { width: 100%; padding: 12px 12px 12px 40px; border-radius: 50px; border: 1px solid #ccc; font-size: 15px; transition: border 0.3s; } .booking-form input:focus, .booking-form select:focus { border-color: #EB662B; outline: none; } input[type="date"]:invalid { color: #999; } /* Updated button color */ .booking-form button { width: 100%; padding: 12px; border-radius: 50px; border: none; background: #EB662B; color: #fff; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.3s, transform 0.2s; } .booking-form button:hover { background: #c25420; transform: scale(1.05); } const dateInput = document.getElementById('date'); function setMinBookingDate() { const today = new Date(); today.setDate(today.getDate() + 2); // 2 days ahead const yyyy = today.getFullYear(); const mm = String(today.getMonth() + 1).padStart(2, '0'); const dd = String(today.getDate()).padStart(2, '0'); const minDate = `${yyyy}-${mm}-${dd}`; dateInput.setAttribute('min', minDate); // Optional: set default date to minDate dateInput.value = minDate; } setMinBookingDate(); document.querySelector('.booking-form').addEventListener('submit', function(e) { e.preventDefault(); alert('Booking successful! 🎉'); this.reset(); setMinBookingDate(); });