-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathservices.html
897 lines (889 loc) · 54.4 KB
/
services.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
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
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>InternO</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/slicknav.css">
<link rel="stylesheet" href="assets/css/flaticon.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/css/themify-icons.css">
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/nice-select.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Preloader Start -->
<div id="preloader-active">
<div class="preloader d-flex align-items-center justify-content-center">
<div class="preloader-inner position-relative">
<div class="preloader-circle"></div>
<div class="preloader-img pere-text">
<img src="assets/img/logo/loder.jpg" alt="">
</div>
</div>
</div>
</div>
<!-- Preloader Start -->
<header>
<!-- Header Start -->
<div class="header-area">
<div class="main-header header-sticky">
<div class="container-fluid">
<div class="row align-items-center">
<!-- Logo -->
<div class="col-xl-2 col-lg-2 col-md-1">
<div class="logo">
<a href="index.html"><img src="assets/img/logo/logo.png" alt="" style="max-height:60px"></a>
</div>
</div>
<div class="col-xl-10 col-lg-10 col-md-10">
<div class="menu-main d-flex align-items-center justify-content-end">
<!-- Main-menu -->
<div class="main-menu f-right d-none d-lg-block">
<nav>
<ul id="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#startups">Startups</a></li>
<li><a href="tnc.html">Terms And Conditions</a></li>
<li><a href="blog.html">Blogs</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
<!--<div class="header-right-btn f-right d-none d-xl-block ml-20">
<a href="#" class="btn header-btn">Sign In</a>
</div>-->
</div>
</div>
<!-- Mobile Menu -->
<div class="col-12">
<div class="mobile_menu d-block d-lg-none"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Header End -->
</header>
<section class="categories-area w-padding2">
<div class="container">
<div class="row">
<div class="col-lg-6">
<!-- Section Tittle -->
<div class="section-tittle mb-70">
<h2>What fields do we provide!</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/www.png"></span>
</div>
<div class="cat-cap">
<h5>Web Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Web development is the building and maintenance of websites. It can range from developing a simple single static page of plain text to complex web-based internet applications(web apps), electronic businesses, and social network services. Web developers do this by using a variety of coding languages like HTML, CSS, JavaScript,etc.
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/design.png"></span>
</div>
<div class="cat-cap">
<h5>App Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>App development is the act or process by which a mobile app is developed for mobile devices, such as personal digital assistants, mobile phones, computers or tablets. This includes creating, testing and programming the apps. Mobile UI considers constraints, contexts, screen, input, and mobility as outlines for design. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span class="flaticon-portfolio"></span>
</div>
<div class="cat-cap">
<h5>UI/UX Design</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>UX Design refers to the term User Experience Design, while UI Design stands for User Interface Design. Both elements are crucial to a product and work closely together. User experience (UX) refers to any interaction a user has with a product or service.
UI design is the look and feel, the presentation and the interactivity of a product.
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span class="flaticon-pen"></span>
</div>
<div class="cat-cap">
<h5>Web Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Graphic design is the craft of creating visual content to communicate messages through the use of typography, photography, iconography and illustration. Applying visual hierarchy and page layout techniques. Graphic designers use typography and pictures to meet users' specific and create and combine symbols, images and text to form visual representations of ideas and messages. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/blog.png"></span>
</div>
<div class="cat-cap">
<h5>Digital Marketing</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Digital marketing is performing marketing activities over the use of the Internet, mobile devices, social media, search engines, and other channels to reach consumers.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span class="flaticon-speaker"></span>
</div>
<div class="cat-cap">
<h5>Marketing</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Marketing refers to business of promoting, selling, pitching products or services. It includes exchanging offerings having value for customers, clients, society, etc. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/content.png"</span>
</div>
<div class="cat-cap">
<h5>Content Writing</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Content Writing is researching, producing, and publishing information to meet a strategic goal. That goal will either be to build a connection with an audience or to encourage some kind of marketing or sales outcome. It aids a lot in establishing and growing the thinking and gaining overall information about the person, company, organization, nation and almost all the fields.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/science-fiction.png"</span>
</div>
<div class="cat-cap">
<h5>Space Science</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Space Science (it encompasses all of the scientific disciplines that involve space exploration and study natural phenomena and physical bodies occurring in outer space). It includes research in areas like astrophysics, planetary science, earth science, space platform etc.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/distribution.png"</span>
</div>
<div class="cat-cap">
<h5>Product Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Product development is a series of steps that includes the conceptualization, design, development and marketing of newly created or newly rebranded goods or services in order to offer new or additional benefits to the customer.It may involve modification of an existing product or its presentation, or formulation of an entirely new product that satisfies a newly defined customer’s needs.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/3d.png"</span>
</div>
<div class="cat-cap">
<h5>Digital Engineering</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Digital engineering is the art of creating, capturing and integrating data using a digital skill set. From drawings to simulations and 3D models, engineers are increasingly using advanced technologies to capture data and craft design in a digitized environment.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/reputation.png"</span>
</div>
<div class="cat-cap">
<h5>Online Reputation Management</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Online reputation management is the practice of crafting strategies that shape or influence the public perception of an organization, individual or other entity on the Internet. It is an ongoing task that serves to create, cultivate, and maintain your brand name and its good standing online.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/youtube.png"</span>
</div>
<div class="cat-cap">
<h5>Youtube Content Creation</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Youtube Content Creation is of creating content about ant specific field or subject for the approachable and constant presence of a large number of viewers of youtube. A YouTuber, also known as a YouTube content creator, is a type of videographer or entertainer who produces videos for the video-sharing website YouTube, sometimes being supported by networks.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/math.png"</span>
</div>
<div class="cat-cap">
<h5>Data Science</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Data Science is an inter-disciplinary field that uses scientific methods, processes, algorithms and systems to extract knowledge and insights from many structural and unstructured data. Data science is related to data mining, deep learning and big data.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/knowledge.png"</span>
</div>
<div class="cat-cap">
<h5>AI and ML</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Artificial Intelligence (AI) and Machine Learning (ML) are two very hot buzzwords right now, and often seem to be used interchangeably. Artificial Intelligence is the broader concept of machines being able to carry out tasks in a way that we would consider “smart” whereas Machine learning (ML) is the study of computer algorithms that improve automatically through experience.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/blockchain.png"</span>
</div>
<div class="cat-cap">
<h5>Bloackchain</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Block chain is a growing list of records, called blocks, that are linked using cryptography. By design, a block chain is resistant to modification of the data. It is "an open, distributed ledger that can record transactions between two parties efficiently and in a verifiable and permanent way". </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/phone.png"</span>
</div>
<div class="cat-cap">
<h5>Mobile Application</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Mobile Application also referred to as a mobile app or simply an app, is a computer program or software application designed to run on a mobile device such as a phone, tablet, or watch. They are the programs that execute when you press an icon on your mobile device, such as an iPad or Android phone.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/strategy.png"</span>
</div>
<div class="cat-cap">
<h5>Business Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Business Development the activity of pursuing strategic opportunities for a particular business or organization, for example by cultivating partnerships or other commercial relationships, or identifying new markets for its products or services. It entails tasks and processes to develop and implement growth opportunities within and between organizations.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/SW.png"</span>
</div>
<div class="cat-cap">
<h5>Solid Works</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Solidworks is a solid modeling computer-aided design (CAD) and computer-aided engineering(CAE) program, that runs primarily on Microsoft Windows. SolidWorks is published by Dassault Systèmes.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/catia.png"</span>
</div>
<div class="cat-cap">
<h5>Catia</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>CATIA is a multi-platform software suite for computer-aided design, computer-aided manufacturing, computer-aided engineering, PLM and 3D, developed by the French company Dassault Systèmes.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/nx.png"</span>
</div>
<div class="cat-cap">
<h5>Nx CAD</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>NxCAD is a robust 3D solution that provides fast and realistic concept design and modeling. Its design tools are a breakthrough in the industry, setting new standards for speed performance and ease of use.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/creo.png"</span>
</div>
<div class="cat-cap">
<h5>Creo</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Creo is a family or suite of Computer-aided design apps supporting product design for discrete manufacturers and is developed by PTC. The suite consists of apps, each delivering a distinct set of capabilities for a user role within product development.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/ansys.png"</span>
</div>
<div class="cat-cap">
<h5>Ansys</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Ansys (Ansys Mechanical finite element analysis software), is used to simulate computer models of structures, electronics, or machine components for analyzing strength, toughness, elasticity, temperature distribution, electromagnetism, fluid flow, and other attributes. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/hypermesh.png"</span>
</div>
<div class="cat-cap">
<h5>Hypermesh</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Hypermesh is a popular multi-disciplinary pre and post8-processor, which manages the generation of large and complex models. It provides a highly interactive visual environment for product design analysis.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/matlab.png"</span>
</div>
<div class="cat-cap">
<h5>MATLAB</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>MATLAB is a multi-paradigm numerical computing environment and proprietary programming language developed by MathWorks. It allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/car.png"</span>
</div>
<div class="cat-cap">
<h5>Automotive Body in White</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Automotive Body in White refers to the stage in automotive design or automobile manufacturing in which a car body's sheet metal components have been welded together.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/ecar.png"</span>
</div>
<div class="cat-cap">
<h5>Electric Vehicle</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Electric Vehicle is a vehicle that uses one or more electric motors or traction motors for propulsion. It runs solely on electricity and is very environment friendly compared to other modes of fuel, and has therefore made a big impact on the automobile industry.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/battery.png"</span>
</div>
<div class="cat-cap">
<h5>Battery Technology</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Battery Technology refers to the ongoing research and development work upon batteries and how to make them more efficient. Advances in battery technology may one day help to solve our energy crisis. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/website-design.png"</span>
</div>
<div class="cat-cap">
<h5>Web Designing</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Web Designing is a subcategory of web development which entails web graphic design, interface design, authoring, including standardized code and proprietary software, user experience design, and search engine optimization, etc.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/ucd.png"</span>
</div>
<div class="cat-cap">
<h5>User Centered Design</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>User Centered Design it is an iterative designing process, focusing on user and their needs in the steps of design process. In UCD design team involves users throughout their process of research and design technique.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/code.png"</span>
</div>
<div class="cat-cap">
<h5>Coding</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>JAVA is a general purposed programming language that is statically typed. Whereas PHP is a dynamically typed scripting language which is used in Web Development.
OOPs, or Object Oriented Programming, is a programming paradigm which is centered around object and not procedure.
Python is a powerful general purpose programming language. It is used in web designing, data science, creating software prototypes and so on..
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/editor.png"</span>
</div>
<div class="cat-cap">
<h5>Editor</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Editor can be a person with creative and linguistic knowledge who studies, corrects, and refines an article or a story. They are also responsible for checking facts as well as grammatical errors.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/social-media-marketing.png"</span>
</div>
<div class="cat-cap">
<h5>Social Media Marketing</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Social media marketing is a form of digital marketing. This includes creation and sharing of digital content on social media platforms to gather customer attention and establish branding goals.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/hr.png"</span>
</div>
<div class="cat-cap">
<h5>Human Resources and Talent Management</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Human Resource Management is the tactical dealing of day-to-day management of people or employees. Talent Management is more manifesting into strategic handling of talent or human capital for the companies long-term goals.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/meeting.png"</span>
</div>
<div class="cat-cap">
<h5>Global Community Expansion</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> It is when a company undergoes planned expansion of its business activities into several countries throughout the world. The lays a base for achieving long-term growth of the institution or company.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/blogger.png"</span>
</div>
<div class="cat-cap">
<h5>Campus Influencers Program</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Brands interact and engage with college going students in the context of marketing. The students who have influence on friends and peers can help the brands to understand and access students’ peer networks. This is Campus Influencer’s Program. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/gcode.png"</span>
</div>
<div class="cat-cap">
<h5>Game Development</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Game Development is the process of creating video games and describes the design, development and release of a game. It involves concept generation, design, building, testing, release etc </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/nodejs.png"</span>
</div>
<div class="cat-cap">
<h5>Node.JS</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Node.JS is a platform built on chrome’s JavaScript runtime which makes building fast and scalable network applications easy. It is useful for developing real time applications that require a persistent connection from browser to server.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/product.png"</span>
</div>
<div class="cat-cap">
<h5>Collection Framework and DBMS</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Collection Framework is a hierarchy of set of interfaces and classes used to manipulate a group of objects. It reduces programming effort by providing useful data structures and algorithms. DBMS(Database Management System) is a system software for creating and managing databases. </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/pattern.png"</span>
</div>
<div class="cat-cap">
<h5>Design Pattern</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p> Design Pattern is a general reusable solution to recurring problems in software design. It refers to a template or explanation for how to solve a problem under different conditions. Three types are creational, structural and behavioral.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/workflow.png"</span>
</div>
<div class="cat-cap">
<h5>Algorithms</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Algorithm is procedure method or formula for solving any problem. A computer program is basically an elaborate algorithm. They are used in areas of Computer Science and Mathematics for solving recurring problems.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/ds.png"</span>
</div>
<div class="cat-cap">
<h5>Data Structures</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Data Structure is a group of data elements providing an efficient way of storing and organizing data. Arrays, link lists, stacks, queues are examples of data structures. Data structure find their use in various fields of computer science like Operating System, compiler design, Artificial Intelligence, graphic design, etc.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 cat-info">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="single-cate text-center mb-50">
<div class="cat-icon">
<span><img src="assets/img/service/data-mining.png"</span>
</div>
<div class="cat-cap">
<h5>Data Modelling</h5>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 service-info">
<p>Data modeling means exploring data oriented structures. This can be used for a variety of purposes, from high level conceptual models to physical data models, in the concept of Object Oriented Programming data modeling is similar to class modeling.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<!-- Footer Start-->
<div class="footer-area">
<div class="container">
<div class="footer-top footer-padding">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="footer-top-cap text-center">
<img src="assets/img/logo/logo_footer.png" alt="" style="max-height:80px">
<span><a href="#">[email protected]</a></span>
<p>Veer Surendra Sai University of Technology, Burla </p>
<p>Sambalpur, Odisha-768018</p>
<p><i class="far fa-user"></i>Pranjal Jain</p>
<p><i class="fas fa-phone"></i>8018555755</p>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="row d-flex justify-content-between align-items-center">
<div class="col-xl-9 col-lg-8">
<div class="footer-copy-right">
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | Made by <a href="https://ecellvssut.in/" target="_blank">E-CELL VSSUT, Burla</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
</div>
</div>
<div class="col-xl-3 col-lg-4">
<!-- Footer Social -->
<div class="footer-social f-right">
<a>Stay Connected</a>
<!--<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>-->
<a href="https://www.linkedin.com/company/interno-vssut/"><i class="fab fa-linkedin"></i></a>
<!--<a href="#"><i class="fab fa-instagram"></i></a>-->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End-->
</footer>
<!-- Scroll Up -->
<div id="back-top" >
<a title="Go to Top" href="#"> <i class="fas fa-level-up-alt"></i></a>
</div>
<!-- JS here -->
<!-- All JS Custom Plugins Link Here here -->
<script src="./assets/js/vendor/modernizr-3.5.0.min.js"></script>
<!-- Jquery, Popper, Bootstrap -->
<script src="./assets/js/vendor/jquery-1.12.4.min.js"></script>
<script src="./assets/js/popper.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<!-- Jquery Mobile Menu -->
<script src="./assets/js/jquery.slicknav.min.js"></script>
<!-- Jquery Slick , Owl-Carousel Plugins -->
<script src="./assets/js/owl.carousel.min.js"></script>
<script src="./assets/js/slick.min.js"></script>
<!-- One Page, Animated-HeadLin -->
<script src="./assets/js/wow.min.js"></script>
<script src="./assets/js/animated.headline.js"></script>
<script src="./assets/js/jquery.magnific-popup.js"></script>
<!-- Nice-select, sticky -->
<script src="./assets/js/jquery.nice-select.min.js"></script>
<script src="./assets/js/jquery.sticky.js"></script>
<!-- contact js -->
<script src="./assets/js/contact.js"></script>
<script src="./assets/js/jquery.form.js"></script>
<script src="./assets/js/jquery.validate.min.js"></script>
<script src="./assets/js/mail-script.js"></script>
<script src="./assets/js/jquery.ajaxchimp.min.js"></script>
<!-- Jquery Plugins, main Jquery -->
<script src="./assets/js/plugins.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>