-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.html
More file actions
344 lines (296 loc) · 13.9 KB
/
flow.html
File metadata and controls
344 lines (296 loc) · 13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deepak IT & Web Services | Professional IT Solutions</title>
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #3498db;
--success-color: #27ae60;
--warning-color: #e67e22;
--light-bg: #f8f9fa;
--text-main: #333;
}
body {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: var(--text-main);
background-color: #e9ecef;
margin: 0;
padding: 20px;
}
.page-wrapper {
max-width: 900px;
margin: 0 auto;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
header {
background: var(--primary-color);
color: white;
padding: 40px 30px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.2rem;
letter-spacing: 1px;
}
.intro {
padding: 30px;
background: var(--light-bg);
border-bottom: 1px solid #dee2e6;
font-size: 1.1rem;
text-align: center;
}
.content-section {
padding: 30px;
}
h2 {
color: var(--primary-color);
border-left: 5px solid var(--accent-color);
padding-left: 15px;
margin-bottom: 20px;
}
.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
list-style: none;
padding: 0;
}
.services-list li {
background: #fff;
padding: 12px;
border: 1px solid #eee;
border-radius: 6px;
display: flex;
align-items: center;
}
.services-list li::before {
content: "✓";
color: var(--success-color);
font-weight: bold;
margin-right: 10px;
}
.contact-box {
background: #f1f8ff;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.contact-item {
font-weight: bold;
text-decoration: none;
color: var(--primary-color);
margin: 10px;
}
.terms-container {
background: #fffaf0;
border: 1px solid #ffeeba;
padding: 30px;
border-radius: 8px;
margin-top: 40px;
}
.terms-container h2 {
border-left-color: var(--warning-color);
}
.term-block {
margin-bottom: 20px;
}
.term-title {
font-weight: bold;
color: #856404;
display: block;
margin-bottom: 5px;
}
.highlight-box {
background: #fff;
border-left: 4px solid var(--warning-color);
padding: 15px;
margin: 10px 0;
font-style: italic;
}
.action-area {
text-align: center;
padding: 40px 30px;
background: var(--light-bg);
}
.checkbox-container {
margin-bottom: 20px;
font-size: 1.1rem;
cursor: pointer;
}
.checkbox-container input {
transform: scale(1.3);
margin-right: 10px;
cursor: pointer;
}
.btn-confirm {
background: var(--success-color);
color: white;
padding: 15px 40px;
border: none;
border-radius: 50px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-confirm:hover {
background: #219150;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
@media (max-width: 600px) {
body { padding: 10px; }
header h1 { font-size: 1.6rem; }
.contact-box { flex-direction: column; text-align: center; }
}
</style>
</head>
<body>
<div class="page-wrapper">
<header>
<h1>Deepak IT & Web Services</h1>
</header>
<div style="text-align: center; border: 2px solid #ddd; padding: 20px; border-radius: 10px; max-width: 250px; background: white; font-family: sans-serif;">
<img src="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/shield-check.svg" style="width: 50px; opacity: 0.7; margin-bottom: 10px;" alt="Verified Shield">
<h4 style="margin: 0; color: #2c3e50;">Verified Enterprise</h4>
<p style="font-size: 0.75rem; color: #666; margin: 5px 0;">Deepak IT & WebServices</p>
<hr style="border: 0; border-top: 1px solid #eee;">
<p style="font-size: 0.7rem; font-weight: bold; color: #27ae60;">UDYAM-KR-03-0674838</p>
<p style="font-size: 0.7rem; font-weight: bold; color: #27ae60;">GSTIN No : 29BISPD3613D1ZD</p>
<p style="font-size: 0.6rem; color: #999;">Ministry of MSME, Govt. of India</p>
</div>
<div class="intro">
We are a trusted provider of IT solutions and web application services. Our team specializes in delivering high-quality, scalable, and innovative technology solutions tailored to meet the needs of businesses and individuals.
</div>
<section id="project-payment-flow" style="font-family: 'Segoe UI', Arial, sans-serif; padding: 40px; background-color: #f9f9f9; color: #333;">
<h2 style="text-align:center; color:#0056b3; font-size:2em; margin-bottom:20px;">Project & Payment Flow</h2>
<div style="max-width:800px; margin:auto; line-height:1.8; font-size:1.05em;">
<h3>1. Requirement Gathering</h3>
<p>Client shares project details (type of design: ID card, report card, invitation, poster, etc.).</p>
<p>We discuss specifications such as size, colors, branding, and delivery format.</p>
<p>A quotation is provided based on scope and complexity.</p>
<h3>2. Confirmation & Advance Payment</h3>
<p>Once the client approves the quotation, an advance payment (usually 50%) is made to initiate the project.</p>
<p>Payment can be made via bank transfer, UPI, or other accepted methods.</p>
<h3>3. Design & Draft Sharing</h3>
<p>Our team creates the first draft based on client requirements.</p>
<p>Drafts are shared for review and feedback.</p>
<p>Clients can request revisions (within agreed limits).</p>
<h3>4. Finalization</h3>
<p>After revisions, the final design is prepared.</p>
<p>High-quality files (PDF, PNG, JPG, or print-ready formats) are generated.</p>
<h3>5. Final Payment</h3>
<p>The remaining balance is paid before delivery of the final files.</p>
<p>Invoice and payment receipt are provided.</p>
<h3>6. Delivery</h3>
<p>Final designs are delivered digitally via email, cloud link, or WhatsApp.</p>
<p>For print projects, delivery/shipping options are discussed separately.</p>
<h3>7. Post-Delivery Support</h3>
<p>Minor edits (like spelling corrections) are offered within a short grace period.</p>
<p>Long-term clients enjoy priority support for future projects.</p>
<p style="margin-top:20px; font-weight:500;">This flow makes your process transparent and professional, reassuring clients that their project will be handled smoothly from source to delivery.</p>
</div>
<!-- Infographic Image -->
<div style="text-align:center; margin-top:40px;">
<img src="https://copilot.microsoft.com/th/id/BCO.91dddab2-7b61-4338-be60-30ad735bad73.png" alt="Project & Payment Flow Infographic" style="max-width:100%; height:auto; border-radius:8px; box-shadow:0 4px 10px rgba(0,0,0,0.1);" />
</div>
<!-- Important Notification -->
<div style="max-width:800px; margin:50px auto 0; padding:20px; background-color:#fff3cd; border:1px solid #ffeeba; border-radius:8px;">
<h3 style="color:#856404; text-align:center;">⚠️ Important Notification to Clients & Customers</h3>
<p style="color:#856404; font-size:1.05em; line-height:1.8;">
Please <strong>do not make any payments</strong> via unknown links, unofficial payment gateways, or bank accounts without <strong>consulting directly with us</strong>.
Fake payment links may circulate online — avoid these to prevent fraud or loss.
</p>
<p style="color:#856404; font-size:1.05em;">
All official transactions are conducted only after a verified conversation and a <strong>digitally or manually signed agreement letter</strong> between our business and the client.
</p>
<p style="color:#856404; font-weight:600; text-align:center;">Your safety and trust are our top priority.</p>
</div>
</section>
<h2>Contact Us Today:</h2>
<div class="contact-box">
<a href="tel:8867740113" class="contact-item">📱 Mobile: 8867740113</a>
<a href="mailto:diws2026@outlook.com" class="contact-item">📧 Email: diws2026@outlook.com</a>
</div>
<div class="terms-container">
<h2>Service Terms & Conditions</h2>
<p>By engaging our services, you (the <strong>"Customer"</strong>) agree to the following terms:</p>
<div class="term-block">
<span class="term-title">1. One-Time Setup Policy</span>
<p>Our services are provided as a one-time setup. We are committed to excellence and will work diligently until the initial setup meets your requirements and reaches final customer satisfaction.</p>
</div>
<div class="term-block">
<span class="term-title">2. Final Approval & Acceptance</span>
<p>Upon completion of the setup, the Customer is required to review and provide formal confirmation/acceptance.</p>
<div class="highlight-box">
<strong>Approval:</strong> Once the Customer confirms satisfaction, the project is considered "Closed."<br>
<strong>Observation Period:</strong> Any minor adjustments required within a 48-hour window related to the initial setup will be handled at no extra cost.
</div>
</div>
<div class="term-block">
<span class="term-title">3. Future Support & Re-engagement</span>
<p>Any requests, issues, or modifications requested <strong>after</strong> the final approval and initial setup is complete will be treated as a new service request.</p>
<div class="highlight-box">
<strong>Service Charges:</strong> Standard hourly or flat-fee rates will apply to any troubleshooting, updates, or "second-time" issues.<br>
<strong>Scope:</strong> Includes issues caused by user error, third-party updates, or changes in requirements after hand-off.
</div>
</div>
<div class="term-block">
<span class="term-title">4. Mandatory Confirmation</span>
<p>No work will commence until the Customer has explicitly accepted these terms. Proceeding with the service request constitutes a binding agreement to these conditions.</p>
</div>
</div>
</div>
<div class="action-area">
<div class="checkbox-container">
<label>
<input type="checkbox" id="agree-check">
I accept the Terms and Conditions of <strong>Deepak IT & Web Services</strong>
</label>
</div>
<button class="btn-confirm" onclick="validateAndRedirect()">Accept & Confirm Service</button>
</div>
</div>
<script>
function validateAndRedirect() {
const checkbox = document.getElementById('agree-check');
if (checkbox.checked) {
// First alert the user
alert('Terms Accepted! Redirecting to our homepage...');
// Redirect to your GitHub page
window.location.href = "https://deepakworld.github.io/";
} else {
alert('Please check the box to accept the terms before proceeding.');
}
}
</script>
<footer style="background: #2c3e50; color: white; padding: 30px 20px; text-align: center; font-size: 0.85rem; border-top: 4px solid #5f259f; font-family: 'Verdana', sans-serif;">
<div style="max-width: 1000px; margin: 0 auto; line-height: 1.8;">
<p style="font-weight: bold; font-size: 1rem; color: orange; margin-bottom: 5px;">Deepak IT & WebServices | Proprietorship Firm</p>
<p>MSME Registration: <strong>UDYAM-KR-03-0674838</strong> | NIC Code: 62011 (Software Development)</p>
<!-- Policy Links Section -->
<div style="margin: 15px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;">
<a href="privacy-policy.html" class="menu-item" target="_blank">Privacy Policy</a>
<a href="refund-policy.html" class="menu-item" target="_blank">Refund Policy</a>
<a href="shipping-return.html" class="menu-item" target="_blank">Shipping and Return Policy</a>
<a href="terms.html" class="menu-item" target="_blank">Terms & Conditions</a>
</div>
<p style="color: #bdc3c7; font-size: 0.75rem; margin-top: 10px;">
© 2026 All Rights Reserved. | Support: diws2026@outlook.com
</p>
</div>
</footer>
</body>
</html>