-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
704 lines (644 loc) · 41.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- SEO Meta Tags -->
<meta name="description" content="Your description">
<meta name="author" content="Your name">
<!-- OG Meta Tags to improve the way the post looks when you share the page on Facebook, Twitter, LinkedIn -->
<meta property="og:site_name" content="" /> <!-- website name -->
<meta property="og:site" content="" /> <!-- website link -->
<meta property="og:title" content="" /> <!-- title shown in the actual shared post -->
<meta property="og:description" content="" /> <!-- description shown in the actual shared post -->
<meta property="og:image" content="" /> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="" /> <!-- where do you want your post to link to -->
<meta name="twitter:card" content="summary_large_image"> <!-- to have large image post format in Twitter -->
<!-- Webpage Title -->
<title>Aerawat</title>
<!-- Styles -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap"
rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fontawesome-all.min.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body data-bs-spy="scroll" data-bs-target="#navbarExample">
<!-- Navigation -->
<nav id="navbarExample" class="navbar navbar-expand-lg fixed-top navbar-light" aria-label="Main navigation">
<div class="container">
<!-- Image Logo -->
<!-- <a class="navbar-brand logo-image" href="index.html"><img src="images/logo.svg" alt="alternative"></a> -->
<!-- Text Logo - Use this if you don't have a graphic logo -->
<a class="navbar-brand logo-text active" href="index.html">Aerawat</a>
<button class="navbar-toggler p-0 border-0" type="button" id="navbarSideCollapse"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse offcanvas-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ms-auto navbar-nav-scroll">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#header">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#process">Process</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#technology">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">F.A.Q</a>
</li>
</ul>
<span class="nav-item">
<a class="btn-outline-sm" href="#contact">Contact Us</a>
</span>
</div> <!-- end of navbar-collapse -->
</div> <!-- end of container -->
</nav> <!-- end of navbar -->
<!-- end of navigation -->
<!-- Header -->
<header id="header" class="header">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="text-container">
<h1 class="h1-large" style="margin-top: -80px;">IT CONSULTING SERVICES</h1>
<p class="p-large">Leverage the knowledge and extensive technical experience of Intellectsoft's
top experts to develop a complete IT strategy for your organization's digital and
technological transformation that aligns with your business goals. Our expert IT consulting
services will aid in the automation and digitalization of operations, optimizing your
software portfolio, and the implementation of cutting-edge technologies.</p>
<a class="btn-solid-lg" href="sign-up.html">Explore</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="image-container">
<img class="img-fluid" src="images/header-illustration.svg" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</header> <!-- end of header -->
<!-- end of header -->
<!-- Features -->
<div id="features" class="cards-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading">OUR IT CONSULTING SERVICES</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card">
<div class="card-icon">
<span class="fas fa-headphones-alt"></span>
</div>
<div class="card-body">
<h4 class="card-title">ENTERPRISE ARCHITECTURE ADVISORY</h4>
<p>With the assistance of our Enterprise Architecture specialists, you can seamlessly shift
from obsolete and inefficient IT delivery systems and architectures to a cloud-based
infrastructure that enhances delivery and enables the integration of new technologies
into your software approach.</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-icon green">
<span class="far fa-clipboard"></span>
</div>
<div class="card-body">
<h4 class="card-title">IT STRATEGY CONSULTING & NEW TECH</h4>
<p>In the present day, it's crucial to guarantee the consistent delivery of top-notch IT
products and services for both your enterprise workflow and customers. It's also
essential to integrate new technologies to remain competitive and fulfill the
expectations of modern users. Our IT solutions consulting aims to strike a balance
between these two objectives, preventing them from conflicting with one another.</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-icon blue">
<span class="far fa-comments"></span>
</div>
<div class="card-body">
<h4 class="card-title">SOFTWARE PORTFOLIO CONSULTING</h4>
<p>Our team of IT consulting advisors will perform a thorough assessment of your company's
current use of enterprise software, as well as your mobile strategy. From there, they
will provide recommendations for necessary modifications, new developments, and the
integration of third-party solutions to eliminate any obstacles that may be hindering
progress.</p>
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-1 -->
<!-- end of services -->
<!-- Invitation -->
<div class="basic-3" style="height: 45px;">
<div class="container">
<div class="row">
<div class="col-lg-6" style="margin-top: -55px;">
<h4>CURRENT STATE OF IT DOES NOT ALIGN WITH YOUR BUSINESS STRATEGY? REQUEST OUR IT CONSULTING
SERVICES NOW.</h4>
</div> <!-- end of col -->
<div class="col-lg-6" style="margin-top: -15px;">
<a class="btn-outline-lg page-scroll" href="contact.html">Talk to Us</a>
</div>
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-3 -->
<!-- end of invitation -->
<!-- Cards -->
<div class="ex-cards-1 pt-3 pb-3" id="process">
<div class="container" style="margin-top: 120px;">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading">OUR IT CONSULTING PROCESS</h2>
<p style="text-align: center;">For over a decade, Aerawat has been assisting organizations of
varying sizes and types in enhancing and updating their IT strategies. Several of our IT
specialists possess more than fifteen years of industry experience, enabling us to devise an
efficient IT consulting approach that delivers the most significant advantage in the least
amount of time.</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row" style="margin-top: 80px;">
<div class="col-lg-12">
<div class="row">
<div class="col-sm">
<!-- Card -->
<div class="card" style="width: 250px;">
<ul class="list-unstyled">
<li class="d-flex">
<span class="fa-stack">
<span class="fas fa-circle fa-stack-2x"></span>
<span class="fa-stack-1x">1</span>
</span>
<div class="flex-grow-1">
<h5>ANALYSIS</h5>
<p>Our IT consulting advisors analyze your current software solutions and
how your employees utilize them, pinpointing any issues in workflows and
automation.</p>
</div>
</li>
</ul>
</div> <!-- end of card -->
<!-- end of card -->
</div>
<div class="col-sm">
<!-- Card -->
<div class="card" style="width: 250px;">
<ul class="list-unstyled">
<li class="d-flex">
<span class="fa-stack">
<span class="fas fa-circle fa-stack-2x"></span>
<span class="fa-stack-1x">2</span>
</span>
<div class="flex-grow-1">
<h5>STRATEGY</h5>
<p>The advisors create a roadmap and strategy to assist your business in
utilizing the most current technologies and simplifying your software
infrastructure. They then establish software and employee KPIs.</p>
</div>
</li>
</ul>
</div> <!-- end of card -->
<!-- end of card -->
</div>
<div class="col-sm">
<!-- Card -->
<div class="card" style="width: 250px;">
<ul class="list-unstyled">
<li class="d-flex">
<span class="fa-stack">
<span class="fas fa-circle fa-stack-2x"></span>
<span class="fa-stack-1x">3</span>
</span>
<div class="flex-grow-1">
<h5>PERFORMANCE</h5>
<p>Effective IT consulting services are dependent on collaboration between
the client and the IT consulting company. Our experts will conduct a
thorough analysis of your workflows, monitoring performance to identify
any problem areas. Our software engineers will then eliminate any
hindering elements.</p>
</div>
</li>
</ul>
</div> <!-- end of card -->
<!-- end of card -->
</div>
<div class="col-sm"> <!-- Card -->
<div class="card" style="width: 250px;">
<ul class="list-unstyled">
<li class="d-flex">
<span class="fa-stack">
<span class="fas fa-circle fa-stack-2x"></span>
<span class="fa-stack-1x">4</span>
</span>
<div class="flex-grow-1">
<h5>IMPROVEMENTS</h5>
<p>Upon achieving the initial objectives, our IT consulting advisors and
software engineers suggest measures for future enhancements and aid in
their implementation.</p>
</div>
</li>
</ul>
</div> <!-- end of card -->
<!-- end of card -->
</div>
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of ex-cards-1 -->
<!-- end of cards -->
<br><br><br>
<!-- Testimonials -->
<div class="slider-1 bg-gray" id="technology">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading">IT STRATEGY CONSULTING. THE LATEST TECH</h2>
<p style="text-align: center;">We make sure to stay up-to-date with the latest advancements in
technology to provide cutting-edge software solutions. Our IT strategy consulting service
assists you in selecting appropriate technologies for your business and industry, devising a
plan for their implementation, and supporting you throughout the implementation process.</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<br><br><br><br>
<div class="row">
<div class="col-lg-12">
<!-- Card Slider -->
<div class="slider-container">
<div class="swiper-container card-slider">
<div class="swiper-wrapper">
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/Blockchain Technology_48px.png"
alt="alternative">
<div class="card-body">
<p class="testimonial-author">Blockchain Technology</p> <br>
<p class="testimonial-text">Utilize the potential of distributed ledger
technology to enhance security and transparency in your business
operations. Additionally, automate your processes through the use of
Smart Contracts.</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/Augmented Reality_128px.png"
alt="alternative">
<div class="card-body">
<p class="testimonial-author">Augmented Reality</p> <br>
<p class="testimonial-text">Use the practical promise of AR to transform key
operations and become more efficient.
</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/artificial_intelligence_48px.png"
alt="alternative">
<div class="card-body">
<p class="testimonial-author">Artificial Intelligence</p> <br>
<p class="testimonial-text">Utilize machine learning and deep learning
algorithms to handle your large sets of data, and gain valuable insights
into your business operations. Develop predictive models based on
artificial intelligence to ensure secure and reliable decision-making.
</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/iota_100px.png" alt="alternative">
<div class="card-body">
<p class="testimonial-author">Internet of Things</p> <br>
<p class="testimonial-text">Use secure IoT solutions to monitor your
operations, optimise them, and introduce high efficiency. Gain more
insights from the Big Data gathered by IoT devices.</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/Cloud Database_48px.png" alt="alternative">
<div class="card-body">
<p class="testimonial-author">Cloud Computing</p> <br>
<p class="testimonial-text">Use cloud platforms like Microsoft Azure and
Amazon AWS to create a flexible, scalable, and connected business
environment.</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/online_money_transfer_128px.png"
alt="alternative">
<div class="card-body">
<p class="testimonial-author">FinTech</p> <br>
<p class="testimonial-text">
Prevent money laundering and introduce transparency with
blockchain-based solutions. Use reliable payment processing with PSP
backend system integration</p>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
</div> <!-- end of swiper-wrapper -->
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<!-- end of add arrows -->
</div> <!-- end of swiper-container -->
</div> <!-- end of slider-container -->
<!-- end of card slider -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of slider-1 -->
<!-- end of testimonials -->
<!-- Questions -->
<div class="accordion-1" id="faq">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading">Frequently Asked Questions</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<div class="accordion" id="accordionExample">
<!-- Accordion Item -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">Why
Enterprise IT Consulting Services Are Necessary for Business?</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">Starting a new business or launching a new product in
today's digital market requires careful consideration of all aspects involved in the
process. To achieve this, you need a team of professionals with the right expertise
to provide you with the necessary business strategy. The digital transformation of a
company can be challenging, requiring years of experience, technical skills, and an
understanding of the modern market. At Aerawat, we offer consulting services to help
enterprises automate their processes and operations, utilize the latest technologies
to their fullest potential, and optimize their software portfolio. A well-planned
and effective strategy is crucial to success, and we have all the necessary
resources, including the latest tech tools and a team of experienced professionals,
to tailor a strategy that fits the specific needs of your enterprise.
</div>
</div>
</div>
<!-- end of accordion-item -->
<!-- Accordion Item -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">Who
Are IT Consultants and What Do They Do?</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">In today's highly competitive market, having a solid
business strategy is crucial for companies to succeed and reach their target
audience. Technical consultants are responsible for developing and providing
solutions to help businesses stay ahead of the competition, meet the needs of modern
customers, and increase revenue. They act as intermediaries between customers and
project teams, ensuring everyone is on the same page. Consultants stay up-to-date
with the latest trends and changes in the market, helping businesses adapt and grow.
Aerawat works with analytical experts who have extensive knowledge of the modern
market and can develop unique business strategies for their clients.</div>
</div>
</div>
<!-- end of accordion-item -->
<!-- Accordion Item -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">What Software Consulting Services Do We
Offer?</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">Our IT consulting services are designed to enhance your
software architecture, develop effective digital strategies, and optimize your
software portfolio to improve operations. The fast-paced world we live in requires
businesses to stay ahead of the curve, and to do so, they need a team of experts who
can seamlessly transition them from outdated IT systems to modern ones in a timely
and cost-effective manner. At Aerawat, we aim to help our clients remain
competitive, deliver high-quality services, and meet the needs of modern customers.
Our teams conduct a thorough analysis of how companies and their employees utilize
their software and provide recommendations on how to improve existing
infrastructure, integrate new technologies, and implement necessary changes. We are
well-versed in the challenges that come with digital transformation and have
innovative solutions that will not only help you survive the competition but also
make your employees' work more efficient.</div>
</div>
</div>
<!-- end of accordion-item -->
<!-- Accordion Item -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseFour" aria-expanded="false"
aria-controls="collapseFour">Why Choose Our IT Consulting Company?</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour"
data-bs-parent="#accordionExample">
<div class="accordion-body">Aerawat is a team of experienced IT professionals with a
decade of experience in the industry. Our consultants are dedicated to helping small
and medium-sized enterprises improve their work processes and service delivery by
providing unique solutions tailored to their needs. Through in-depth analysis, we
identify areas for improvement and stay up-to-date with the latest trends to suggest
effective strategies. Our team not only recommends the best technologies and
strategies for your business, but also assists with implementation. We stay current
with emerging technologies like blockchain, AR, AI, IoT, and Cloud Computing to help
companies across different industries grow, perform better, remain competitive, and
achieve better outcomes.</div>
</div>
</div>
<!-- end of accordion-item -->
</div> <!-- end of accordion -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of accordion-1 -->
<!-- end of questions -->
<!-- Pricing -->
<div id="pricing" class="cards-2 bg-gray" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="h2-heading">Contact Us</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card" style="width: 450px; height: 500px; margin-left: 160px;">
<div class="card-body">
<!-- Basic -->
<div class="ex-form-1 pt-5 pb-5" style="margin-top: -95px;">
<div class="container">
<div class="row">
<div class="col-xl-6 offset-xl-3">
<div class="text-box mt-5 mb-5" style="width: 350px; margin-left: -85px;">
<!-- Log In Form -->
<form>
<div class="mb-4 form-floating">
<input type="email" class="form-control" id="floatingInput"
placeholder="[email protected]">
<label for="floatingInput">Your Name*</label>
</div>
<div class="mb-4 form-floating">
<input type="password" class="form-control"
id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Email*</label>
</div>
<div class="mb-4 form-floating">
<input type="text" class="form-control" id="floatingPassword"
placeholder="Password">
<label for="floatingPassword">How we can help you?*</label>
</div>
<div class="mb-4 form-check">
<input type="checkbox" class="form-check-input"
id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">I agree with
the site's stated <a href="privacy.html">Privacy Policy</a>
and <a href="terms.html">Terms & Conditions</a></label>
</div>
<button type="submit"
class="form-control-submit-button">Send</button>
</form>
<!-- end of log in form -->
</div> <!-- end of text-box -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of ex-basic-1 -->
<!-- end of basic -->
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card"
style="width: 370px; height: 425px; margin-top: 35px; margin-left: -25px; background-color: #272556; color: aliceblue;">
<div class="card-body">
<div class="card-title">
<h5 style="color: aliceblue; font-weight: bold;"> What Happens Next? </h5>
</div>
<ul class="list-unstyled li-space-lg">
<li>1. Our sales manager reaches you out within a few days after analyzing your business
requirements</li>
<li>2. Meanwhile, we sign an NDA to ensure the highest privacy level</li>
<li>3. Our pre-sale manager presents project estimates and approximate timeline
</li>
</ul>
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-2 -->
<!-- end of pricing -->
<!-- Footer -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="footer-col first">
<h6>About Us</h6>
<p class="p-small">At Aerawat we help business build an intelligently designed digital future.
Tell us about your idea, and we’ll offer the most fitting technological solution. </p>
</div> <!-- end of footer-col -->
<div class="footer-col second">
<h6>Links</h6>
<ul class="list-unstyled li-space-lg p-small">
<li>Important: <a href="terms.html">Terms & Conditions</a>, <a href="privacy.html">Privacy
Policy</a></li>
<li>Useful: <a href="#">Blockchain</a>, <a href="#">Internet of Things</a>, <a
href="#">Cloud Computing</a></li>
</ul>
</div> <!-- end of footer-col -->
<div class="footer-col third">
<span class="fa-stack">
<a href="#your-link">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin fa-stack-1x"></i>
</a>
</span>
<p class="p-small"><a
href="mailto:[email protected]"><strong>[email protected]</strong></a></p>
</div> <!-- end of footer-col -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of footer -->
<!-- end of footer -->
<!-- Copyright -->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-6">
<p class="p-small">Copyright © 2023<a href="#your-link"> | Aerawat</a></p>
</div> <!-- end of col -->
<div class="col-lg-6">
<p class="p-small">All rights reserved.</a></p>
</div> <!-- end of col -->
</div> <!-- enf of row -->
</div> <!-- end of container -->
</div> <!-- end of copyright -->
<!-- end of copyright -->
<!-- Back To Top Button -->
<button onclick="topFunction()" id="myBtn">
<img src="images/up-arrow.png" alt="alternative">
</button>
<!-- end of back to top button -->
<!-- Scripts -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap framework -->
<script src="js/swiper.min.js"></script> <!-- Swiper for image and text sliders -->
<script src="js/purecounter.min.js"></script> <!-- Purecounter counter for statistics numbers -->
<script src="js/replaceme.min.js"></script> <!-- ReplaceMe for rotating text -->
<script src="js/scripts.js"></script> <!-- Custom scripts -->
</body>
</html>