
Featured products
-
Example product title
Regular price Rs. 19.99Regular priceUnit price / per -
Example product title
Regular price Rs. 19.99Regular priceUnit price / per -
Example product title
Regular price Rs. 19.99Regular priceUnit price / per -
Example product title
Regular price Rs. 19.99Regular priceUnit price / per
Form
{% form 'contact' %}
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" name="contact[name]" id="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="contact[email]" id="email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" name="contact[phone]" id="phone" required>
</div>
<div class="form-group">
<label for="services">Select Services</label>
<select name="contact[services]" id="services" required>
<option value="">-- Select --</option>
<option value="Social Media Marketing">Social Media Marketing</option>
<option value="SEO">SEO (Search Engine Optimization)</option>
<option value="Google Ads">Google Ads & PPC</option>
<option value="Content Marketing">Content Marketing</option>
<option value="E-commerce Setup">E-commerce Store Setup</option>
<option value="Website Development">Website Development</option>
</select>
</div>
<div class="form-group">
<label for="budget">Budget Range</label>
<select name="contact[budget]" id="budget">
<option value="">-- Select --</option>
<option value="5000-10000">₹5,000 - ₹10,000</option>
<option value="10000-50000">₹10,000 - ₹50,000</option>
<option value="50000+">₹50,000+</option>
</select>
</div>
<div class="form-group">
<label for="message">Project Details</label>
<textarea name="contact[body]" id="message" rows="4"></textarea>
</div>
<button type="submit">Submit Inquiry</button>
{% endform %}