-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
811 lines (715 loc) · 25.9 KB
/
Copy pathcontact.html
File metadata and controls
811 lines (715 loc) · 25.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
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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact & Pricing | DeployLynx</title>
<link rel="icon" type="image/png" href="/images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-cyan: #00c6ff;
--dark-bg: #030712;
--input-bg: rgba(255, 255, 255, 0.05);
--form-bg: rgba(15, 23, 42, 0.8);
--glass-border: rgba(255, 255, 255, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background: var(--dark-bg);
color: #fff;
overflow-x: hidden;
scroll-behavior: smooth;
/* Added Tech Background */
background-image:
radial-gradient(circle at 20% 30%, rgba(0, 198, 255, 0.05) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(0, 198, 255, 0.05) 0%, transparent 40%);
}
/* NAV BAR */
nav {
position: sticky;
top: 0;
z-index: 9999;
background: rgba(10, 15, 28, 0.95);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 8%;
border-bottom: 1px solid var(--glass-border);
}
.logo {
font-size: 26px;
color: var(--primary-cyan);
font-weight: 800;
text-decoration: none;
}
.logo span {
color: white;
}
.menu {
display: flex;
align-items: center;
gap: 25px;
}
.menu a {
color: #94a3b8;
text-decoration: none;
font-size: 0.95rem;
transition: 0.3s;
}
.menu a:hover,
.menu a.active {
color: var(--primary-cyan);
}
/* HERO GRID */
.container-main {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 40px;
padding: 60px 8%;
max-width: 1400px;
margin: auto;
align-items: flex-start;
}
.typing-title {
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
line-height: 1.1;
color: #fff;
margin-bottom: 20px;
}
.sub-text {
color: #cbd5e1;
margin-bottom: 30px;
font-size: 1.1rem;
line-height: 1.6;
}
.form-column {
display: flex;
flex-direction: column;
gap: 30px;
}
.booking-card {
background: var(--form-bg);
padding: 35px;
border-radius: 24px;
border: 1px solid var(--glass-border);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 15px;
}
.single-field {
margin-bottom: 15px;
}
input,
textarea,
select {
width: 100%;
padding: 15px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
background: var(--input-bg);
color: #fff;
outline: none;
transition: 0.3s;
}
input:focus,
textarea:focus {
border-color: var(--primary-cyan);
background: rgba(255, 255, 255, 0.08);
}
.submit-btn {
width: 100%;
padding: 18px;
border: none;
border-radius: 12px;
background: var(--primary-cyan);
color: #000;
font-weight: 800;
cursor: pointer;
transition: 0.3s;
text-transform: uppercase;
}
.submit-btn:hover:not(:disabled) {
background: #fff;
box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
transform: translateY(-2px);
}
.submit-btn:disabled {
background: #555;
cursor: not-allowed;
}
.cards-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.contact-card {
background: rgba(15, 23, 42, 0.6);
border: 1px solid var(--glass-border);
padding: 20px;
border-radius: 16px;
transition: 0.3s;
display: flex;
align-items: center;
gap: 15px;
}
.contact-card:hover {
border-color: var(--primary-cyan);
transform: scale(1.02);
}
.contact-card .card-text {
overflow: hidden;
}
.contact-card p {
font-size: 0.85rem;
color: #94a3b8;
}
.contact-card a {
font-size: 0.95rem;
font-weight: 600;
color: white;
text-decoration: none;
word-break: break-all;
}
.contact-card a:hover {
color: var(--primary-cyan);
}
.premium-animation {
width: 100%;
max-width: 500px;
border-radius: 24px;
border: 1px solid var(--glass-border);
box-shadow: 0 0 30px rgba(0, 198, 255, 0.15);
margin: auto;
overflow: hidden;
}
.premium-animation img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}
/* WHY SECTION */
.why-section {
padding: 80px 8%;
text-align: center;
max-width: 1400px;
margin: auto;
}
.why-section h2 {
font-size: 2.8rem;
margin-bottom: 50px;
color: white;
font-weight: 700;
}
.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.why-card {
background: rgba(15, 23, 42, 0.6);
padding: 40px;
border-radius: 20px;
border: 1px solid var(--glass-border);
transition: 0.3s;
}
.why-card:hover {
border-color: var(--primary-cyan);
transform: translateY(-10px);
background: rgba(15, 23, 42, 0.8);
}
.why-icon {
font-size: 40px;
color: var(--primary-cyan);
margin-bottom: 20px;
}
/* NEW SECTIONS: CONSULTATION & TOPICS */
.consult-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
padding: 40px 8%;
max-width: 1400px;
margin: auto;
}
.consult-item {
background: rgba(15, 23, 42, 0.4);
border: 1px solid var(--glass-border);
padding: 25px;
border-radius: 20px;
display: flex;
align-items: center;
gap: 20px;
transition: 0.3s;
}
.consult-item:hover {
background: rgba(0, 198, 255, 0.05);
border-color: var(--primary-cyan);
}
.consult-icon {
background: rgba(0, 198, 255, 0.1);
padding: 15px;
border-radius: 12px;
color: var(--primary-cyan);
font-size: 24px;
}
.topics-panel {
background: var(--form-bg);
border: 1px solid var(--glass-border);
border-radius: 30px;
padding: 50px;
margin: 60px 8%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.topic-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 15px;
margin-top: 30px;
}
.topic-item {
display: flex;
align-items: center;
gap: 12px;
color: #cbd5e1;
font-size: 1.05rem;
}
.topic-item span {
color: var(--primary-cyan);
font-weight: bold;
}
/* PRICING SECTION */
.section-pricing {
padding: 80px 8%;
text-align: center;
max-width: 1400px;
margin: auto;
}
.section-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 50px;
}
.grid-3 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}
.price-card {
background: rgba(15, 23, 42, 0.6);
padding: 40px;
border-radius: 24px;
border: 1px solid var(--glass-border);
transition: 0.3s;
text-align: center;
}
.price-card:hover {
border-color: var(--primary-cyan);
transform: translateY(-10px);
}
.price-val {
font-size: 3rem;
font-weight: 800;
color: var(--primary-cyan);
margin: 25px 0;
}
.price-val span {
font-size: 1rem;
color: #94a3b8;
}
.card-btn {
display: inline-block;
width: 100%;
padding: 15px;
border-radius: 12px;
background: transparent;
border: 1px solid var(--primary-cyan);
color: var(--primary-cyan);
font-weight: 700;
cursor: pointer;
text-decoration: none;
transition: 0.3s;
}
.card-btn:hover {
background: var(--primary-cyan);
color: #000;
box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}
@media (max-width: 900px) {
.container-main {
grid-template-columns: 1fr;
}
.cards-column {
grid-template-columns: 1fr;
}
.form-row {
grid-template-columns: 1fr;
gap: 0;
}
}
#successPopup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #0f172a;
padding: 40px;
border-radius: 25px;
border: 2px solid var(--primary-cyan);
text-align: center;
z-index: 99999;
box-shadow: 0 0 80px rgba(0, 198, 255, 0.4);
max-width: 400px;
width: 90%;
}
</style>
</head>
<body class="antialiased">
<nav>
<a href="index.html" class="logo">Deploy<span>Lynx</span></a>
<div class="menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="case-studies.html">Case Studies</a>
<a href="contact.html" class="active">Contact</a>
</div>
</nav>
<div class="container-main">
<div class="form-column">
<div>
<h1 class="typing-title">Ready to Architect Your Scale?</h1>
<p class="sub-text">
Enterprise-grade infrastructure designed for the next generation of SaaS. Fill out the form below to secure your infrastructure audit or migration strategy.
</p>
<div class="booking-card">
<form id="scheduleForm">
<div class="form-row">
<input type="text" name="Name" placeholder="Full Name" required>
<input type="email" name="Email" placeholder="Work Email" required>
</div>
<input type="text" name="Company" placeholder="Company / Startup Name" required class="single-field">
<select name="Service" required class="single-field">
<option value="" disabled selected>Select Service</option>
<option value="Cloud Migration">AWS Cloud Migration</option>
<option value="CI/CD">CI/CD Pipeline Automation</option>
<option value="Kubernetes">Kubernetes Orchestration</option>
<option value="Security">DevSecOps & Security</option>
</select>
<div class="form-row">
<input type="date" name="Date" required>
<select name="Time" required>
<option value="" disabled selected>Time (PKT)</option>
<option value="09:00 AM">09:00 AM</option>
<option value="12:00 PM">12:00 PM</option>
<option value="03:00 PM">03:00 PM</option>
</select>
</div>
<textarea name="Message" rows="8" style="min-height: 200px;" placeholder="Tell us about your project infrastructure needs..." class="single-field"></textarea>
<button type="submit" id="submitBtn" class="submit-btn">Send Booking Request</button>
</form>
</div>
</div>
<div class="cards-column">
<div class="contact-card">
<div class="text-2xl text-cyan-400">📞</div>
<div class="card-text">
<p>Call Us</p>
<a href="tel:+923713600892">+92 371 3600892</a>
</div>
</div>
<div class="contact-card">
<div class="text-2xl text-cyan-400">✉️</div>
<div class="card-text">
<p>Email</p>
<a href="mailto:deploylynx26@gmail.com">deploylynx26@gmail.com</a>
</div>
</div>
<div class="contact-card">
<div class="text-2xl text-cyan-400">💬</div>
<div class="card-text">
<p>WhatsApp</p>
<a href="https://wa.me/message/VXHPTQC4ZU46A1" target="_blank">Business Chat</a>
</div>
</div>
<div class="contact-card">
<div class="text-2xl text-cyan-400">🔗</div>
<div class="card-text">
<p>LinkedIn</p>
<a href="https://www.linkedin.com/company/deploylynx" target="_blank">Connect</a>
</div>
</div>
</div>
</div>
<div class="premium-animation">
<img src="https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80"
onerror="this.src='https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1000&q=80'" />
</div>
</div>
<div class="why-section">
<h2>Why Partner with DeployLynx?</h2>
<div class="why-grid">
<div class="why-card">
<div class="why-icon">🛡️</div>
<h3>Security First</h3>
<p>DevSecOps is not an afterthought; it's integrated into every line of code. We architect for high availability and fault tolerance from day one.</p>
</div>
<div class="why-card">
<div class="why-icon">⚡</div>
<h3>Seamless Migration</h3>
<p>Zero-downtime migrations from on-premise or legacy systems to AWS and Azure, ensuring full data integrity and minimal disruption.</p>
</div>
<div class="why-card">
<div class="why-icon">📉</div>
<h3>Cost Efficiency</h3>
<p>We optimize resource allocation with advanced autoscaling solutions, growing infrastructure with your users to reduce AWS spend.</p>
</div>
</div>
</div>
<div class="consult-grid">
<div class="consult-item">
<div class="consult-icon">🕒</div>
<div>
<h4 class="font-bold">30 Minutes</h4>
<p class="text-sm text-gray-400">Free one-on-one consultation call</p>
</div>
</div>
<div class="consult-item" style="border-color: var(--primary-cyan);">
<div class="consult-icon">📹</div>
<div>
<h4 class="font-bold">Google Meet / Zoom</h4>
<p class="text-sm text-gray-400">Virtual meeting at your convenience</p>
</div>
</div>
<div class="consult-item">
<div class="consult-icon">💎</div>
<div>
<h4 class="font-bold">100% Free</h4>
<p class="text-sm text-gray-400">No obligations, no hidden charges</p>
</div>
</div>
</div>
<div class="topics-panel">
<div class="flex items-center gap-3 mb-6">
<div class="text-2xl">💡</div>
<h2 class="text-2xl font-bold">What We Can Discuss</h2>
</div>
<div class="topic-list">
<div class="topic-item"><span>✓</span> Cloud Migration Strategy (AWS, Azure, GCP)</div>
<div class="topic-item"><span>✓</span> Kubernetes Architecture & Deployment</div>
<div class="topic-item"><span>✓</span> CI/CD Pipeline Design & Optimization</div>
<div class="topic-item"><span>✓</span> Infrastructure as Code (Terraform/Ansible)</div>
<div class="topic-item"><span>✓</span> DevSecOps & Security Best Practices</div>
<div class="topic-item"><span>✓</span> Cloud Cost Optimization (FinOps)</div>
<div class="topic-item"><span>✓</span> Monitoring & Observability Setup</div>
</div>
</div>
<div class="section-pricing">
<h2 class="section-title">Transparent Pricing Solutions</h2>
<div class="grid-3">
<div class="price-card">
<h3 class="text-xl font-bold">Cloud Audit</h3>
<div class="price-val">$499<span>/flat</span></div>
<p class="text-gray-400 mb-6">A deep-dive analysis identifying security gaps and cost inefficiencies.</p>
<a href="mailto:deploylynx26@gmail.com?subject=Inquiry: Cloud Audit" class="card-btn">Get Started</a>
</div>
<div class="price-card" style="border-color: var(--primary-cyan); background: rgba(0, 198, 255, 0.05);">
<h3 class="text-xl font-bold">DevOps Dedicated</h3>
<div class="price-val">$1,999<span>/mo</span></div>
<p class="text-gray-400 mb-6">Your on-demand team. Ongoing CI/CD management and 24/7 reliability.</p>
<a href="https://wa.me/message/VXHPTQC4ZU46A1" target="_blank" class="card-btn" style="background-color:var(--primary-cyan); color: #000; border-color: var(--primary-cyan);">Scale Now</a>
</div>
<div class="price-card">
<h3 class="text-xl font-bold">Custom Project</h3>
<div class="price-val">Quote</div>
<p class="text-gray-400 mb-6">For large-scale migrations or complex enterprise data pipelines.</p>
<a href="#scheduleForm" class="card-btn">Inquire</a>
</div>
</div>
</div>
<div class="pb-20 text-center">
<p class="text-gray-500 mb-4">Prefer a direct line?</p>
<div class="flex justify-center gap-4 flex-wrap">
<a href="tel:+923713600892" class="px-6 py-3 border border-gray-700 rounded-full hover:border-cyan-400 transition">Call Support</a>
<a href="mailto:deploylynx26@gmail.com" class="px-6 py-3 border border-gray-700 rounded-full hover:border-cyan-400 transition">Email Team</a>
</div>
</div>
<div id="successPopup">
<div style="font-size: 50px; margin-bottom: 15px;">✨🚀
<!-- ================= AI CHATBOT START ================= -->
<div id="dl-chatbot-container">
<button id="dl-chat-toggle">💬</button>
<div id="dl-chatbox">
<div id="dl-chat-header">
DeployLynx AI 🤖
<span onclick="toggleDLChat()">✖</span>
</div>
<div id="dl-chat-messages">
<div class="bot-msg">Hi, this is DeployLynx AI chatbot. How may I help you?</div>
</div>
<div id="dl-quick-questions">
<button onclick="dlAsk('services')">Services?</button>
<button onclick="dlAsk('pricing')">Pricing?</button>
<button onclick="dlAsk('aws')">AWS Migration?</button>
<button onclick="dlAsk('kubernetes')">Kubernetes?</button>
<button onclick="dlAsk('consultation')">Free Call?</button>
<button onclick="dlAsk('contact')">Contact?</button>
<button onclick="dlAsk('security')">Security?</button>
<button onclick="dlAsk('cost')">Cost Optimization?</button>
</div>
<div id="dl-chat-input">
<input type="text" id="dl-user-input" placeholder="Type your message...">
<button onclick="dlSend()">➤</button>
</div>
</div>
</div>
<style>
#dl-chatbot-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99999;
}
#dl-chat-toggle {
background: #00c6ff;
border: none;
padding: 16px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 10px 20px rgba(0,198,255,0.4);
}
#dl-chatbox {
display: none;
width: 320px;
height: 450px;
background: #0f172a;
border-radius: 18px;
overflow: hidden;
margin-bottom: 10px;
border: 1px solid rgba(255,255,255,0.1);
flex-direction: column;
}
#dl-chat-header {
background: #00c6ff;
color: #000;
padding: 12px;
display: flex;
justify-content: space-between;
font-weight: bold;
}
#dl-chat-messages {
flex: 1;
padding: 10px;
overflow-y: auto;
}
.bot-msg {
background: rgba(255,255,255,0.05);
padding: 8px;
border-radius: 8px;
margin-bottom: 6px;
}
.user-msg {
background: #00c6ff;
color: #000;
padding: 8px;
border-radius: 8px;
margin-bottom: 6px;
text-align: right;
}
#dl-quick-questions {
padding: 8px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5px;
}
#dl-quick-questions button {
font-size: 11px;
padding: 6px;
border-radius: 6px;
border: none;
background: rgba(255,255,255,0.05);
color: white;
cursor: pointer;
}
#dl-chat-input {
display: flex;
border-top: 1px solid rgba(255,255,255,0.1);
}
#dl-chat-input input {
flex: 1;
padding: 10px;
border: none;
background: transparent;
color: white;
outline: none;
}
#dl-chat-input button {
background: #00c6ff;
border: none;
padding: 10px;
cursor: pointer;
}
</style>
<script>
const dlChatbox = document.getElementById("dl-chatbox");
const dlMessages = document.getElementById("dl-chat-messages");
document.getElementById("dl-chat-toggle").onclick = toggleDLChat;
function toggleDLChat() {
dlChatbox.style.display = dlChatbox.style.display === "flex" ? "none" : "flex";
}
function addMessage(msg, type) {
const div = document.createElement("div");
div.className = type === "user" ? "user-msg" : "bot-msg";
div.innerText = msg;
dlMessages.appendChild(div);
dlMessages.scrollTop = dlMessages.scrollHeight;
}
function dlAsk(type) {
const data = {
services: ["What services do you offer?", "We provide AWS, CI/CD, Kubernetes, DevSecOps, and cloud optimization."],
pricing: ["What is pricing?", "Plans start from $499 and scale based on your needs."],
aws: ["AWS migration?", "We provide secure zero-downtime AWS migration."],
kubernetes: ["Kubernetes support?", "Yes, full cluster setup and management."],
consultation: ["Free consultation?", "Yes, 30-minute free consultation."],
contact: ["How to contact?", "Phone, email, WhatsApp, and LinkedIn available."],
security: ["Do you provide security?", "Yes, DevSecOps and cloud security best practices included."],
cost: ["Cost optimization?", "We reduce cloud bills using autoscaling and FinOps strategies."]
};
addMessage(data[type][0], "user");
setTimeout(() => addMessage(data[type][1], "bot"), 500);
}
function dlSend() {
const input = document.getElementById("dl-user-input");
const text = input.value.trim();
if (!text) return;
addMessage(text, "user");
setTimeout(() => {
addMessage("Thanks! Our team will assist you shortly 🚀", "bot");
}, 600);
input.value = "";
}
document.getElementById("dl-user-input").addEventListener("keypress", function(e) {
if (e.key === "Enter") dlSend();
});
</script>
<!-- ================= AI CHATBOT END ================= -->
</body>
</html>