-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication-development.html
More file actions
603 lines (456 loc) · 21.3 KB
/
Copy pathapplication-development.html
File metadata and controls
603 lines (456 loc) · 21.3 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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#000" />
<meta name="author" content="Sanny Prajapati" />
<link rel="icon" type="image/jpg" href="src/png/main-favicon-sanny.jpg" />
<link rel="stylesheet" href="https://unpkg.com/aos@2.3.1/dist/aos.css" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Passions+Conflict&family=Orbitron&family=Fira+Code&family=Six+Caps"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet"
/>
<style>
.service-detail-container {
width: 90%;
max-width: 1000px;
margin: 150px auto 100px auto;
padding: 40px;
background: rgba(10, 10, 15, 0.7);
border: 1px solid rgba(138, 43, 226, 0.2);
border-radius: 12px;
backdrop-filter: blur(10px);
color: #ccc;
font-family: "Fira Code", monospace;
line-height: 1.8;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.service-detail-container h1 {
font-family: "Orbitron", sans-serif;
color: #b155ff;
font-size: 2.5rem;
margin-bottom: 20px;
border-bottom: 1px solid rgba(177, 85, 255, 0.2);
padding-bottom: 15px;
}
.service-detail-container h2 {
color: #fff;
font-size: 1.5rem;
margin-top: 40px;
margin-bottom: 15px;
}
.service-detail-container ul {
margin-left: 20px;
list-style-type: square;
}
.service-detail-container li {
margin-bottom: 10px;
}
.back-btn {
display: inline-block;
margin-bottom: 30px;
color: #b155ff;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}
.back-btn:hover {
color: #fff;
text-shadow: 0 0 10px #b155ff;
}
.navbar {
background: rgba(10, 10, 10, 0.9) !important;
}
</style>
<!-- Advanced SEO & Structured Data -->
<title>Application Development | Sanny Prajapati</title>
<meta name="description" content="Cross-platform mobile and desktop application development crafting intuitive, high-performance, and secure digital experiences." />
<link rel="canonical" href="https://darkuser.tech/application-development.html" />
<!-- Open Graph Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Application Development | Sanny Prajapati" />
<meta property="og:description" content="Cross-platform mobile and desktop application development crafting intuitive, high-performance, and secure digital experiences." />
<meta property="og:image" content="https://images.unsplash.com/photo-1526498460520-4c246339dccb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80" />
<meta property="og:url" content="https://darkuser.tech/application-development.html" />
<meta property="og:site_name" content="Sanny Prajapati Portfolio" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Portfolio" />
<meta name="twitter:title" content="Application Development | Sanny Prajapati" />
<meta name="twitter:description" content="Cross-platform mobile and desktop application development crafting intuitive, high-performance, and secure digital experiences." />
<meta name="twitter:image" content="https://images.unsplash.com/photo-1526498460520-4c246339dccb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80" />
<!-- JSON-LD Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"name": "Application Development",
"description": "Cross-platform mobile and desktop application development crafting intuitive, high-performance, and secure digital experiences.",
"provider": {
"@type": "Person",
"name": "Sanny Prajapati"
},
"serviceType": "Cybersecurity & Software Development",
"areaServed": {
"@type": "Country",
"name": "Global"
},
"url": "https://darkuser.tech/application-development.html"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://darkuser.tech/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Services",
"item": "https://darkuser.tech/services.html"
},
{
"@type": "ListItem",
"position": 3,
"name": "Application Development",
"item": "https://darkuser.tech/application-development.html"
}
]
}
</script>
<!-- End Advanced SEO -->
<!-- Cyber 3D Styles & Particles -->
<style>
body { background-color: #050508 !important; }
#tsparticles {
position: fixed; width: 100%; height: 100vh; top: 0; left: 0; z-index: -2;
}
.blob-service {
position: fixed; right: -15%; top: -10%; background-color: #00f2fe; width: 700px; height: 100vh;
filter: blur(250px); opacity: 0.15; animation: breath-service 6s ease-in-out infinite alternate; z-index: -1; pointer-events: none;
}
@keyframes breath-service { 0% {opacity: 0.1; transform: scale(0.9) translate(0, 0);} 100% {opacity: 0.25; transform: scale(1.1) translate(-50px, 50px);} }
/* 3D Image Container */
.tilt-box {
border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,242,254,0.15);
position: relative; margin: 40px 0 50px 0; border: 1px solid rgba(0, 242, 254, 0.3);
background: #000;
width: 100%; height: auto;
}
.tilt-box img {
width: 100%; height: 400px; object-fit: cover; display: block; filter: brightness(0.85) contrast(1.1) saturate(1.2);
}
.tilt-box::after {
content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(135deg, rgba(0,242,254,0.2) 0%, transparent 50%, rgba(255,81,47,0.1) 100%); pointer-events: none; mix-blend-mode: overlay;
}
/* Modal Styles */
.modal {
display: none; position: fixed; z-index: 9999; left: 0; top: 0;
width: 100%; height: 100%; overflow: auto;
background-color: rgba(0,0,5,0.9); backdrop-filter: blur(15px);
}
.modal-content {
background: rgba(10, 10, 15, 0.95);
margin: 8% auto; padding: 40px;
border: 1px solid rgba(0,242,254,0.5); border-radius: 8px;
width: 90%; max-width: 550px; position: relative;
box-shadow: 0 0 40px rgba(0, 242, 254, 0.1), inset 0 0 20px rgba(0, 242, 254, 0.05);
animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-content::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #00f2fe, #4facfe, #00f2fe);
background-size: 200% 100%; animation: gradientShift 3s ease infinite; border-radius: 8px 8px 0 0;
}
@keyframes gradientShift { 0% {background-position: 100% 0;} 100% {background-position: -100% 0;} }
@keyframes modalFadeIn {
from {opacity: 0; transform: scale(0.8) translateY(30px);}
to {opacity: 1; transform: scale(1) translateY(0);}
}
.close-btn { color: #555; float: right; font-size: 32px; font-weight: bold; cursor: pointer; transition: 0.3s; line-height: 20px; text-shadow: none; }
.close-btn:hover { color: #ff512f; text-shadow: 0 0 15px #ff512f; transform: scale(1.1); }
.form-group { margin-bottom: 25px; position: relative; }
.form-group label { display: block; margin-bottom: 8px; color: #00f2fe; font-family: 'Fira Code', monospace; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;}
.form-input {
width: 100%; padding: 15px;
background: rgba(0,0,0,0.6); border: 1px solid rgba(0,242,254,0.2);
color: #fff; border-radius: 4px; font-family: 'Fira Code', monospace; font-size: 1rem;
transition: all 0.3s ease; box-sizing: border-box;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus { outline: none; border-color: #00f2fe; box-shadow: 0 0 20px rgba(0,242,254,0.2), inset 0 0 10px rgba(0,242,254,0.1); background: rgba(0,242,254,0.05); }
.submit-btn {
width: 100%; padding: 18px; border: none; cursor: pointer; margin-top: 15px;
background: linear-gradient(90deg, #00f2fe, #4facfe); color: #000; font-weight: 900; letter-spacing: 2px;
font-family: 'Orbitron', sans-serif; font-size: 1.2rem; border-radius: 4px;
transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); text-transform: uppercase;
position: relative; overflow: hidden;
}
.submit-btn::before {
content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
transform: skewX(-25deg); transition: 0.5s;
}
.submit-btn:hover::before { left: 150%; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6); color: #fff; text-shadow: 0 0 5px rgba(255,255,255,0.5); }
.form-status { margin-top: 20px; text-align: center; font-family: 'Fira Code', monospace; font-size: 0.95rem; text-shadow: 0 0 10px currentColor; font-weight: bold; }
/* Cyber frame styling for images */
.cyber-frame {
position: absolute; pointer-events: none; width: 30px; height: 30px; border: 2px solid #00f2fe; z-index: 10;
}
.cf-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.cf-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.cf-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.cf-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }
/* Mobile Responsive Queries */
@media (max-width: 768px) {
.modal-content {
margin: 15% auto;
padding: 25px 20px;
width: 95%;
}
.modal-content h2 {
font-size: 1.3rem;
margin-bottom: 25px;
}
.submit-btn {
padding: 15px;
font-size: 1rem;
letter-spacing: 1px;
}
.tilt-box img {
height: 250px;
}
.blob-service {
width: 100%;
right: 0;
}
.close-btn {
font-size: 28px;
line-height: 15px;
}
.form-group {
margin-bottom: 15px;
}
.form-input {
padding: 12px;
}
}
</style>
</head>
<body class="body">
<header>
<div class="navbar" id="navbar">
<div class="logo">
<a href="index.html" style="text-decoration: none">
<div class="logo-top">
<img
src="src/png/nav-avatar.png"
alt="Sanny Prajapati"
id="nav-avatar"
/>
</div>
</a>
</div>
<div class="navbar-tabs" id="navbar-tabs">
<ul class="navbar-tabs-ul">
<li class="navbar-tabs-li home">
<a href="index.html" tabindex="0" aria-label="Home menu button">
</Home>
</a>
</li>
<li class="navbar-tabs-li about">
<a href="about.html"></AboutMe></a>
</li>
<li class="navbar-tabs-li gallery">
<a href="gallery.html"></Gallery></a>
</li>
<li class="navbar-tabs-li skills activeThistab">
<a href="services.html"></Services></a>
</li>
</ul>
</div>
</div>
</header>
<main>
<div class="blob-service"></div>
<section class="service-detail-container" data-aos="fade-up">
<a href="services.html" class="back-btn">← Back to Services</a>
<h1><Mobile & Desktop App Development /></h1>
<div class="tilt-box" data-aos="zoom-in" data-aos-duration="1000">
<img src="https://images.unsplash.com/photo-1526498460520-4c246339dccb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80" alt="Mobile & Desktop App Development" style="width: 100%; height: 350px; object-fit: cover; display: block; filter: brightness(0.8) contrast(1.2);">
</div>
<p data-aos="fade-up">We develop high-performance applications that provide a seamless experience across all platforms. Whether it's a mobile app for millions or a specialized desktop tool for enterprise security, we deliver precision-engineered software.</p>
<h2 data-aos="fade-up">Core Specialties:</h2>
<ul data-aos="fade-up">
<li><strong>Cross-Platform Mobile:</strong> Single-codebase development using Flutter and React Native for beautiful, high-performance iOS and Android apps.</li>
<li><strong>Native Desktop Apps:</strong> Powerful applications for Windows, macOS, and Linux built using Electron, C++, and Python frameworks.</li>
<li><strong>Offline-First Design:</strong> Implementing local data persistence and synchronization to ensure apps remain functional in low-connectivity environments.</li>
<li><strong>Security Obfuscation:</strong> Advanced code hardening and runtime protection to prevent reverse engineering and unauthorized app modification.</li>
</ul>
<h2 data-aos="fade-up">The Process:</h2>
<p data-aos="fade-up">Our development cycle emphasizes user testing and performance profiling. We ensure your application is bug-free, lightning-fast, and ready for distribution on the App Store or Google Play.</p>
<div style="margin-top: 50px; text-align: center">
<div style="position: relative; z-index: 100; margin-top: 50px; text-align: center;">
<button type="button" class="letsTalkBtn inq-btn" data-service="Mobile & Desktop App Development" style="border: none; cursor: pointer; background: transparent; padding: 0; outline: none;">
<div class="letsTalkBtn-text" style="color: #00f2fe; text-shadow: 0 0 10px rgba(0,242,254,0.5); font-family: 'Orbitron', sans-serif; font-weight: bold; letter-spacing: 1px; z-index: 10; position: relative; padding: 15px 30px;">Inquire About Service</div>
<span class="letsTalkBtn-BG" style="background: rgba(0,242,254,0.1); border: 1px solid #00f2fe; border-radius: 5px;"></span>
</button></div>
</div>
</section>
</main>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- 3D Particles Container -->
<div id="tsparticles"></div>
<!-- Inquiry Modal -->
<div id="inquiryModal" class="modal">
<div class="modal-content">
<span class="close-btn">×</span>
<h2 style="font-family: 'Orbitron', sans-serif; color: #fff; margin-bottom: 35px; text-shadow: 0 0 10px #00f2fe; letter-spacing: 2px;">
Service Inquiry
</h2>
<form id="inquiryForm">
<div class="form-group">
<label>Full Name</label>
<input type="text" id="inqName" class="form-input" placeholder="Enter your full name..." required />
</div>
<div class="form-group">
<label>Contact Number</label>
<input type="tel" id="inqNumber" class="form-input" placeholder="Enter your phone number..." required />
</div>
<div class="form-group">
<label>Email Address</label>
<input type="email" id="inqEmail" class="form-input" placeholder="Enter your email address..." required />
</div>
<div class="form-group">
<label>Service of Interest</label>
<input type="text" id="inqService" class="form-input" style="color: #fff; font-weight: bold; background: rgba(0,242,254,0.1); border-color: #00f2fe; text-shadow: 0 0 5px rgba(0,242,254,0.8);" readonly />
</div>
<div class="form-group">
<label>Message / Details</label>
<textarea id="inqMessage" class="form-input" placeholder="Explain your requirements here..." rows="4" style="resize: vertical;"></textarea>
</div>
<button type="submit" class="submit-btn" id="inqSubmitBtn">Submit Inquiry</button>
</form>
<div id="inqStatus" class="form-status"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.8.0/vanilla-tilt.min.js"></script>
<!-- tsParticles Library -->
<script src="https://cdn.jsdelivr.net/npm/tsparticles-preset-triangles@2.11.0/tsparticles.preset.triangles.bundle.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
// Initialize 3D Particles
try {
tsParticles.load("tsparticles", {
preset: "triangles",
particles: {
number: { value: 60, density: { enable: true, value_area: 800 } },
color: { value: ["#00f2fe", "#4facfe"] },
links: { enable: true, color: "#00f2fe", opacity: 0.2, distance: 150 },
move: { enable: true, speed: 1.5, direction: "none", random: false, straight: false, outModes: "out" },
size: { value: 2 },
opacity: { value: 0.4, animation: { enable: true, speed: 1, minimumValue: 0.1 } }
},
interactivity: {
events: {
onHover: { enable: true, mode: "grab" },
onClick: { enable: true, mode: "push" }
},
modes: { grab: { distance: 140, links: { opacity: 0.8 } }, push: { quantity: 4 } }
},
background: { color: "transparent" }
});
} catch(err) { console.error("tsParticles failed to load:", err); }
});
</script>
<script>
document.addEventListener("DOMContentLoaded", () => {
// 3D Tilt initialization for non-mobile devices
try {
if(window.innerWidth > 768) {
VanillaTilt.init(document.querySelectorAll(".tilt-box"), {
max: 6,
speed: 400,
glare: true,
"max-glare": 0.25,
scale: 1.03
});
}
} catch(e) {}
// Modal Script
const modal = document.getElementById("inquiryModal");
const closeBtn = document.querySelector(".close-btn");
const inqService = document.getElementById("inqService");
const inqBtns = document.querySelectorAll(".inq-btn");
inqBtns.forEach(btn => {
btn.addEventListener("click", (e) => {
e.preventDefault();
const serviceName = btn.getAttribute("data-service");
inqService.value = serviceName;
modal.style.display = "block";
});
});
closeBtn.onclick = () => { modal.style.display = "none"; document.getElementById("inqStatus").innerText = ""; }
window.onclick = (e) => { if (e.target == modal) { modal.style.display = "none"; document.getElementById("inqStatus").innerText = ""; } }
document.getElementById("inquiryForm").addEventListener("submit", async (e) => {
e.preventDefault();
const status = document.getElementById("inqStatus");
const submitBtn = document.getElementById("inqSubmitBtn");
status.style.color = "#00f2fe";
status.innerText = "Submitting request...";
submitBtn.disabled = true;
submitBtn.innerText = "Processing...";
const data = {
name: document.getElementById("inqName").value,
number: document.getElementById("inqNumber").value,
email: document.getElementById("inqEmail").value,
service: document.getElementById("inqService").value,
message: document.getElementById("inqMessage").value
};
try {
const res = await fetch("/.netlify/functions/send-inquiry", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(data)
});
if(res.ok) {
status.style.color = "#38ef7d";
status.innerText = "Success! Your inquiry has been submitted and a confirmation email has been sent.";
document.getElementById("inquiryForm").reset();
setTimeout(() => {
modal.style.display = "none";
status.innerText = "";
}, 3000);
} else {
status.style.color = "#ff512f";
status.innerText = "Error: Our server failed to process the request.";
}
} catch (err) {
status.style.color = "#ff512f";
status.innerText = "Fatal Error: Comm Link Offline or Server Unavailable.";
}
submitBtn.disabled = false;
submitBtn.innerText = "Submit Inquiry";
});
});
</script>
</body>
</html>