-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·787 lines (725 loc) · 49.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IITK Consulting Group</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link href="img/logo.png" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Open+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" role="status" style="width: 3rem; height: 3rem;"></div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid px-0 navbar-light" style="background-color: #0c0c0c; opacity: 90%">
<div class="row g-0 d-none d-lg-flex">
<div class="col-lg-6 ps-5 text-start">
<div class="h-100 d-inline-flex align-items-center text-light">
<span>Connect With Us:</span>
<a class="btn btn-link text-light" href="https://www.linkedin.com/company/iitkconsult/"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-link text-light" href="https://www.facebook.com/iitkcg/"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-link text-light" href="https://www.instagram.com/iitkconsult/"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-6 text-end">
<div class="h-100 bg-info d-inline-flex align-items-center text-dark py-2 px-4">
<span class="me-2 fw-semi-bold"><i class="fa fa-phone-alt me-2"></i>Call Us:</span>
<span>+91 8319105822</span>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg navbar-light sticky-top px-4 px-lg-5 py-0 " style="background-color: #0c0c0c; opacity: 90%;">
<img class="logo" src="img/logo.png" alt="Image" style="width: 5%;height: 5%;">
<img class="mobile-logo" src="img/logo.png" alt="Image" style="width: 10%;height: 10%;">
<button type="button" class="navbar-toggler me-0" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="team.html" class="nav-item nav-link">Team</a>
<a href="projects.html" class="nav-item nav-link">Our Projects</a>
<a href="archives.html" class="nav-item nav-link">Archives</a>
<a href="gallery.html" class="nav-item nav-link">Gallery</a>
<a href="#contact-us" class="nav-item nav-link">Contact Us</a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Carousel Start -->
<div class="container-fluid px-0 mb-5">
<div id="header-carousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="w-100" src="img/wallpaper2.jpg" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row justify-content-start">
<div class="col-lg-8 text-start">
<h1 class="display-1 text-white mb-5 animated slideInRight">IIT Kanpur Consulting Group</h1>
<p class="fs-4 text-white">Handing out pro-bono data-driven consultancy to non-profits and social organisations using data science and machine learning</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- About Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-5 align-items-end">
<div class="col-lg-6">
<div class="row g-2">
<div class="col-6 position-relative wow fadeIn" data-wow-delay="0.7s">
<div class="about-experience bg-info rounded">
<h1 class="display-1 mb-0">5</h1>
<small class="fs-5 fw-bold text-dark">Years' Experience</small>
</div>
</div>
<div class="col-6 wow fadeIn" data-wow-delay="0.1s">
<img class="img-fluid rounded" src="img/ds_banner.jpg">
</div>
<div class="col-6 wow fadeIn" data-wow-delay="0.3s">
<img class="img-fluid rounded" src="img/mconsult_banner.jpg">
</div>
<div class="col-6 wow fadeIn" data-wow-delay="0.5s">
<img class="img-fluid rounded" src="img/new_icon.jpg">
</div>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.5s">
<p class="section-title bg-white text-start text-primary text-dark pe-3"><a id="about">About Us</a></p>
<h1 class="mb-4">We are a community of consulting and data science enthusiasts</h1>
<p class="mb-4">Established in 2018, we at IIT Kanpur Consulting Group are driven by the vision of using data science and case solving skills to help organizations leverage better insights from their data and thereby create a strong social impact</p>
<div class="row g-5 pt-2 mb-5">
<div class="col-sm-6" text-align="centre">
<img class="img-fluid mb-4" width="40%" height="40%" src="img/ds_transparent.png" alt="">
<h5 class="mb-3">Data Science</h5>
<span>Leveraging the power of data science and Machine Learning to address societal issues</span>
</div>
<div class="col-sm-6" text-align="centre">
<img class="img-fluid mb-4" width="40%" height="40%" src="img/consult_transparent.png" alt="">
<h5 class="mb-3">Strategy Consulting</h5>
<span>Exploring the world of consulting with an aim to create a positive social impact</span>
</div>
</div>
<!-- <a class="btn btn-secondary rounded-pill py-3 px-5" href="">Explore More</a> -->
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Features Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-5 align-items-center">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<p class="section-title bg-white text-start text-primary pe-3 text-dark">Why Us?</p>
<h1 class="mb-4">Reasons Why People Choose Us!</h1>
<p class="mb-4 text-dark">We are an experienced team of IITK Undergraduates tackling real-world problems that impact our society. We are <b>A-rated</b> for punctuality and quality of work we deliver.</p>
<!-- <p><i class="fa fa-check text-primary me-3"></i>For each task we have flexible team structure and time commitments for long-term projects and externships</p> -->
<p><i class="fa fa-check text-primary me-3"></i>In our approach, being bound by time or team structure is not a limitation. We are prepared to adapt and cater to your needs, ensuring the best outcomes. </p>
<!-- <p><i class="fa fa-check text-primary me-3"></i>Researches and structres are mentored by professionals and faculties in the IITK’s department of CSE & IME</p> -->
<p><i class="fa fa-check text-primary me-3"></i>Research and structures are mentored by professionals and faculties in IITK’s departments of CSE & IME</p>
<!-- <p><i class="fa fa-check text-primary me-3"></i>Recommendations and methods are proof-read by industry experts working in McKinsey, Bain & Co. and BCG</p> -->
<p><i class="fa fa-check text-primary me-3"></i>Continuously guided and assisted by experienced alums working in McKinsey, Bain & Co. and BCG</p>
<!-- <a class="btn btn-secondary rounded-pill py-3 px-5 mt-3" href="">Explore More</a> -->
</div>
<div class="col-lg-6">
<div class="rounded overflow-hidden">
<div class="row g-0">
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.1s">
<div class="text-center py-5 px-4" style="background-color: rgb(55, 53, 53);" id="zero">
<img class="img-fluid mb-4" src="img/experience.png" alt="">
<h1 class="display-6 text-white fs-2" data-toggle="counter-up">100,000,000</h1>
<span class="fs-5 fw-semi-bold text-white">Population<br> Impacted Worldwide*</span>
</div>
</div>
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.3s">
<div class="text-center bg-info py-5 px-4">
<img class="img-fluid mb-4" src="img/award.png" alt="">
<h1 class="display-6 fs-2">40,000</h1>
<span class="fs-5 fw-semi-bold text-dark">Indian <br>Farmers Affected*</span>
</div>
</div>
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.5s">
<div class="text-center bg-info py-5 px-4">
<img class="img-fluid mb-2" src="img/grant_3.png" alt="">
<h1 class="display-6 fs-2">5,000,000</h1>
<span class="fs-5 fw-semi-bold text-dark">INR<br> Grants Received*</span>
</div>
</div>
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.7s">
<div class="text-center py-5 px-4" style="background-color: rgb(55, 53, 53);">
<img class="img-fluid mb-4" src="img/client.png" alt="">
<h1 class="display-6 text-white fs-2" data-toggle="counter-up">68,000</h1>
<span class="fs-5 fw-semi-bold text-white">Underprivileged<br> Children Liberated*</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features End -->
<!-- Banner Start -->
<div class="container-fluid banner my-5 py-5" data-parallax="scroll" data-image-src="img/wallpaper2.jpg">
<div class="container py-5">
<div class="row g-5">
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.5s">
<div class="row g-4 align-items-center">
<div class="col-sm-4">
<img class="img-fluid rounded" src="img/ds_banner.jpg" alt="">
</div>
<div class="col-sm-8">
<h2 class="text-white mb-3">Data <br>Science</h2>
<p class="text-white mb-4">The adage that data is the most precious oil these days is one that our
team fully embraces. In our project collaborations, we are privileged to have members who possess
exceptional expertise in data science, having triumphed in numerous data science hackathons
and accumulated extensive experience in tackling real-world challenges with data-driven solutions.</p>
<!-- <a class="btn btn-secondary rounded-pill py-2 px-4" href="">Read More</a> -->
</div>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.3s">
<div class="row g-4 align-items-center">
<div class="col-sm-4">
<img class="img-fluid rounded" src="img/mconsult_banner.jpg" alt="">
</div>
<div class="col-sm-8">
<h2 class="text-white mb-3">Strategy Consulting</h2>
<p class="text-white mb-4">We actively seek out individuals with diverse skill levels, ranging from
first-year students passionate about strategy consulting and case-solving, to final-year
students who have experienced in solving multiple real-life consulting problems. By bringing together
this talented pool of individuals, we ensure that we can provide outstanding solutions to
address the pressing societal challenges at hand.</p>
<!-- <a class="btn btn-secondary rounded-pill py-2 px-4" href="">Read More</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Banner End -->
<!-- Project start -->
<div class="container-xxl py-5">
<div class="container">
<!-- completed projects -->
<div class="text-center mx-auto pb-4 wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;">
<p class="section-title bg-white text-center text-primary px-3 text-dark">Our Projects</p>
<h1 class="mb-5">Accomplished Projects</h1>
</div>
<div class="row gy-5 gx-4 ">
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp " data-wow-delay="0.1s">
<div class="service-item d-flex h-100 ">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0 ">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/google_ai.png" alt="">
</div>
<h5 class="mb-3">Predicting the evolution of deforestation in a spatial zone</h4>
<p class="mb-4">We have partnered with <b>Moja Global</b> and Makerere University, with funding from Google AI,
to predict the evolution of deforestation in a spatial zone. To achieve this, we're using machine
learning techniques such as time series forecasting and Long Short Term Memory (LSTM) on satellite
images, along with ground reports collected by Makerere University. Our aim is to provide stakeholders
with better insights to make informed policy choices regarding climate change. By leveraging our
expertise in machine learning and data analysis, we hope to make a positive impact in addressing
deforestation and promoting sustainable land use</p><br><br><br><br>
<a href="https://moja.global/">
<div class="footer org">
<div class="org_name">
<b>Google AI | Moja Global</b>
</div>
<div class="org_info">
Researchers from Google select 6 proposals from India annually, provide monetary funding and cloud support to those aiming to solve societal problems using AI/ML
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item d-flex h-100">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/GOI.png" alt="">
</div>
<h5 class="mb-3">Machine Learning based Air Quality Forecasting in Delhi-NCR</h5>
<p class="mb-4">In collaboration with Prof. SN Tripathi of IIT Kanpur and the National Clean Air Programme (NCAP)
of the Ministry of Environment, Government of India, we developed a machine learning model to predict levels
of pollutants such as PM2.5 and PM10 over time and space in Delhi-NCR. Our model incorporated various data
sources, including weather and traffic, using time series forecasting and Long Short Term Memory (LSTM)
techniques. This model is expected to aid in devising policy interventions to protect citizens' health from
the negative effects of poor air quality.</p><br><br><br><br>
<a href="https://prana.cpcb.gov.in/#/home">
<div class="footer org">
<div class="org_name">
<b>National Clean Air Program | GOI</b>
</div>
<div class="org_info">
The Central Government NCAP as a long-term, time-bound, national level strategy to tackle the air pollution problem across the country in comprehensive manner
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item d-flex h-100">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/who.jpg" alt="">
</div>
<h5 class="mb-3">AI-based Monitoring and Response System towards COVID-19</h5>
<p class="mb-4">We used Twitter data to study the surge in hospitalization volumes due
to the COVID-19 pandemic. Our work was focused on India, Indonesia, and
Bangladesh for the scope of this study, with plans to extend this approach to
other geographies in South-East Asia. The aim was to identify incidents of
overcrowding at hospitals, shortage of critical equipment like ventilators, and
lack of available ICU units. This system can help understand the medical
preparedness levels of the health facilities in these countries and the burden
on their hospitals as the pandemic spreads.</p><br><br><br><br>
<a href="https://www.who.int/southeastasia">
<div class="footer org">
<div class="org_name">
<b>WHO - South East Asia Office</b>
</div>
<div class="org_info">
South East Asia Office of WHO worked with us closely during the pandemic time and facilitated the suggestions in 3 countries, effecting 1.8B people worldwide
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<a href="projects.html" class="explore_more btn btn-secondary rounded-pill py-3 px-5 animated slideInRight">Explore More</a>
<!-- adding a space -->
<p class="mobile-only"><br><br></p>
<!-- ongoing projects -->
<div class="text-center mx-auto pb-4 wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;">
<h1 class="mb-5" >Ongoing Projects</h1>
</div>
<div class="row gy-5 gx-4">
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item d-flex h-100">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/google_ai.png" alt="">
</div>
<h5 class="mb-3">AI-fying and digitizing maternity care in rural parts of India</h5>
<p class="mb-4">Our project, in partnership with Care India and funded by Google AI, aims to address the pressing issue
of infant mortality in Bihar, where access to proper healthcare is limited, and there is a severe shortage of doctors.
To help combat this issue, we are developing an AI-enabled anomaly detection and protocol recommendation system for
midwives and nurses, who often lack the necessary resources and training to handle complicated cases on their own. By
leveraging AI technology, we hope to provide real-time guidance to healthcare providers in the absence of qualified
doctors, ultimately improving health outcomes for mothers and infants in Bihar.</p><br><br><br><br>
<a href="https://www.careindia.org/">
<div class="footer org">
<div class="org_name">
<b>Google AI | Care India</b>
</div>
<div class="org_info">
Researchers from Google select 6 proposals from India annually, provide monetary funding and cloud support to those aiming to solve societal problems using AI/ML
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item d-flex h-100">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/Navjyoti_new.png" alt="">
</div>
<h5 class="mb-3">Developing a sustainable partnership model for impactful skill-training and education</h4>
<p class="mb-4">We were tasked with developing a partnership model for Navjyoti India Foundation, which provides education and skill training. Our first step was to study successful partnership models globally and map them against various indicators. We aim to develop a low-cost, high-impact, scalable, and sustainable model that aligns with Navjyoti's goals. Additionally, we will work on creating a data management dashboard and devising entrepreneurship training strategies.</p><br><br><br><br>
<a href = "https://www.navjyoti.org.in/">
<div class="footer org">
<div class="org_name">
<b>Navjyoti India Foundation</b>
</div>
<div class="org_info">
Founded by Dr. Kiran Bedi along with 16 police officers, it aims to improve the lives of underprivileged communities
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 pt-5 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item d-flex h-100">
<div class="service-img">
<img class="img-fluid" src="img/black_bg.jpg" alt="">
</div>
<div class="service-text p-5 pt-0">
<div class="service-icon">
<img class="img-fluid rounded-circle" src="img/Aomics.png" alt="">
</div>
<h5 class="mb-3">Multi-omics based Disease Detection System for cancer type prediction</h5>
<p class="mb-4">Aomics GmbH is a German based healthtech company, specialised in the area of Immunoinformatics and
precision oncology by leveraging the power of AI and multi-omics data. ICG is helping Aomics to build a product
that predicts which available therapy is best suited for a cancer patient based on their multi-omics data
derived from tumour micro environment (TME). We are automating the task of collecting Tumour Micro Environment (TME)
data and building machine learning (ML)-based models to train them on the available dataset.</p><br><br><br><br>
<a href="https://www.aomics.com/onco-cure/">
<div class="footer org" >
<div class="org_name">
<b>Aomics GmbH Germany</b>
</div>
<div class="org_info">
Aomics is a deep-tech healthcare startup based in Europe and focusses on utilising AI and blockchain technologies to develop Immuno-Oncology/Informatics Solutions
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<a href="projects.html#ongoing_projects" class="explore_more btn btn-secondary rounded-pill py-3 px-5 animated slideInRight">Explore More</a>
</div>
</div>
<!-- Project end -->
<!-- Team Start -->
<div class="container-xxl py-5">
<div id="team" class="container">
<div class="text-center mx-auto wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;">
<p class="section-title bg-white text-center text-primary px-3 text-dark">Our Team</p>
<h1 class="mb-5">Current Leaders</h1>
</div>
<div class="row g-4">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="team-item rounded p-4 bg-white">
<img class="img-fluid rounded mb-4" src="img/Arush.jpg" alt="" >
<h5 class="text-dark">Arush Upadhyaya</h5>
<p class="text-dark">Junior Undergraduate in the Department of CSE</p>
<br>
<div class="d-flex justify-content-center">
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.linkedin.com/in/arush-upadhyaya-5a2604281/"><i
class="fab fa-linkedin"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.facebook.com/arush.upadhyaya"><i
class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="mailto:[email protected]"><i
class="fa fa-envelope"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="team-item rounded p-4 bg-white">
<img class="img-fluid rounded mb-4" src="img/Ishan.jpeg" alt="" >
<h5 class="text-dark">Ishan Prakhar</h5>
<p class="text-dark">Junior Undergraduate in the Department of MSE</p>
<br>
<div class="d-flex justify-content-center">
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.linkedin.com/in/ishan-prakhar/"><i
class="fab fa-linkedin"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.facebook.com/profile.php?id=100087078135593"><i
class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="mailto:[email protected]"><i
class="fa fa-envelope"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="team-item rounded p-4 bg-white">
<img class="img-fluid rounded mb-4" src="img/Sharah.jpg" alt="" >
<h5 class="text-dark">Sharah P S</h5>
<p class="text-dark">Junior Undergraduate in the Department of ME</p>
<br>
<div class="d-flex justify-content-center">
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.linkedin.com/in/sharah-p-s-256065258/"><i
class="fab fa-linkedin"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.facebook.com/profile.php?id=100086198757349"><i
class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="mailto:[email protected]"><i
class="fa fa-envelope"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="team-item rounded p-4 bg-white">
<img class="img-fluid rounded mb-4" src="img/Trijal.jpg" alt="" >
<h5 class="text-dark">Trijal Srivastava</h5>
<p class="text-dark">Junior Undergraduate in the Department of EE</p>
<br>
<div class="d-flex justify-content-center">
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.linkedin.com/in/trijal-srivastava-944056228/"><i
class="fab fa-linkedin"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="https://www.facebook.com/profile.php?id=100087078135593https://www.facebook.com/search/top?q=trijal%20srivastava"><i
class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-outline-secondary rounded-circle mx-1" href="mailto:[email protected]"><i
class="fa fa-envelope"></i></a>
</div>
</div>
</div>
</div>
<a href="team.html" class="explore_more btn btn-secondary rounded-pill py-3 px-5 animated slideInRight">View full team</a>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="text-center mx-auto wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;">
<p class="section-title bg-white text-center text-primary px-3 text-dark">Testimonial</p>
<h1 class="mb-5">What People Have to Say About ICG</h1>
</div>
<div class="row g-5 align-items-center">
<div class="col-lg-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="testimonial-img">
<img class="img-fluid animated pulse infinite" src="img/rahul_sharma.jpeg" alt="">
<img class="img-fluid animated pulse infinite" src="img/aditya_gosh.jpg" alt="">
<img class="img-fluid animated pulse infinite" src="img/pratyush_rai.jpg" alt="">
<img class="img-fluid animated pulse infinite" src="img/alankrita_pandey.jpg" alt="">
</div>
</div>
<div class="col-lg-7 wow fadeInUp" data-wow-delay="0.5s">
<div class="owl-carousel testimonial-carousel">
<div class="testimonial-item">
<img class="img-fluid mb-3" src="img/rahul_sharma.jpeg" alt="">
<p class="fs-5">We are working with the IITK Consulting Group team on various Data Science tasks.
The team is extremely knowledgeable and skilled in machine learning, and their dedication
to delivering high-quality results is truly impressive.
Throughout the entire process, they were always available to answer my questions and
provide updates on their progress. ICG's focus on building long-term relationships with its
clients is what sets it apart. They take the time to understand our business and the specific
challenges we face, and they work collaboratively with us to find solutions that would meet
our needs both now and in the future. Overall, I would highly recommend ICG to anyone looking
for top-notch Data Science services.
</p>
<h5>Dr. Rahul Sharma</h5>
<span class="text-info">Founder & CEO at <b>Aomics GmbH</b></span>
</div>
<div class="testimonial-item">
<img class="img-fluid mb-3" src="img/aditya_gosh.jpg" alt="">
<p class="fs-5">Team ICG was involved in helping to improve our e-commerce platform,
which was in dire need of updating and modernization. The students took on this challenge
enthusiastically, and their work has significantly impacted our online sales and revenue.<br>
They also provided invaluable support for our video conferencing needs. The team helped us optimize our setup for better performance and ease of use.<br>
Their dedication, expertise, and commitment to our success have been nothing short of
outstanding. We look forward to working with them again and continuing to benefit from their skills and knowledge.
</p>
<h5>Aditya Ghosh</h5>
<span class="text-info">Lead at <b>Navjyoti India Foundation</b></span>
</div>
<div class="testimonial-item">
<img class="img-fluid mb-3" src="img/pratyush_rai.jpg" alt="">
<p class="fs-5">ICG folks helped me in the early days of my startup to help us make a sales and product strategy.
And most importantly to get early customers.
The team was exceptional at execution and very well satisfied all their commitments to my team. They ALWAYS delivered.<br>
They are categorically some of the most enthusiastic and creative sets of folks you can hire.
Just get started and I am sure you will end up having a deeply productive professional relationship with them.
As I did during some very fragile days of our startup journey.<br>
Being a real go-getter while also being really good people at heart,
is a rare combination that ICG members possess.
</p>
<h5>Pratyush Rai</h5>
<span class="text-info">Founder at <b>Foyer</b></span>
</div>
<div class="testimonial-item">
<img class="img-fluid mb-3" src="img/alankrita_pandey.jpg" alt="">
<p class="fs-5">The team of ICG IIT Kanpur has truly left me spellbound with the kind of efforts they put in to bring the
best out of every situation! The team is extremely professional and sincere with their timelines and work.
The amount of hard work that they have put into my project is incredible and I’m beyond grateful to have
worked with such a brilliant team.<br>
There’s no such word as “impossible” in their dictionary and they truly prove that on every
step they ever take. It’s really not often that one come across
such an all rounder team and I’m glad I met team ICG IIT Kanpur
</p>
<h5>Alankrita Pandey</h5>
<span class="text-info">Founder at <b>Titli Foundation</b></span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Gallery Start -->
<div class="container-xxl py-5 px-0">
<div id="gallery" class="text-center mx-auto wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;">
<p class="section-title bg-white text-center text-primary px-3 text-dark">Gallery</p>
<h1 class="mb-5">Glimpse of Our Journey</h1>
</div>
<div class="row g-0">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="row g-0">
<div class="col-12">
<a class="d-block" href="img/gallery/icg-11.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-11.jpg" alt="">
</a>
</div>
<div class="col-12">
<a class="d-block" href="img/gallery/icg-2.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-12.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="row g-0">
<div class="col-12">
<a class="d-block" href="img/gallery/icg-10.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-10.jpg" alt="">
</a>
</div>
<div class="col-12">
<a class="d-block" href="img/gallery/guwahati.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/guwahati.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="row g-0">
<div class="col-12">
<a class="d-block" href="img/gallery/utkarsh_sp.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/utkarsh_sp.jpg" alt="">
</a>
</div>
<div class="col-12">
<a class="d-block" href="img/gallery/icg-19.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-19.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.7s">
<div class="row g-0">
<div class="col-12">
<a class="d-block" href="img/gallery/icg-13.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-13.jpg" alt="">
</a>
</div>
<div class="col-12">
<a class="d-block" href="img/gallery/icg-17.jpg" data-lightbox="gallery">
<img class="img-fluid" src="img/gallery/icg-17.jpg" alt="">
</a>
</div>
</div>
</div>
</div>
<a href="gallery.html" class="explore_more btn btn-secondary rounded-pill py-3 px-5 animated slideInRight" >View full Gallery</a>
</div>
<!-- Gallery End -->
<!-- Footer Start -->
<div class="container-fluid footer mt-5 py-5 wow fadeIn" style="background-color: rgb(55, 53, 53);" data-wow-delay="0.1s">
<div class="container py-5">
<div class="row gy-lg-5"> <!--row gy-lg-5-->
<div class="col-lg-3 col-md-6">
<h5 class="text-white mb-4"><a id="contact-us">Our Office</a></h5>
<p class="mb-2"><i class="fa fa-map-marker-alt me-3"></i>
<div>
Indian Institute of Technology Kanpur<br>
Uttar Pradesh, India - 208016
</div></p>
<p class="mb-2"><i class="fa fa-phone-alt me-3"></i>
<div>+91 7012660210 / +91 8319105822<br>
+91 8433226659 / +91 9871021714</div></p>
<p class="mb-2"><i class="fa fa-envelope me-3"></i>[email protected]</p>
<div class="d-flex pt-3">
<!-- <a class="btn btn-square btn-secondary rounded-circle me-2" href=""><i class="fab fa-twitter"></i></a>-->
<a class="btn btn-square btn-secondary rounded-circle me-2" href="https://www.facebook.com/iitkcg/"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary rounded-circle me-2" href="https://www.instagram.com/iitkconsult/"><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary rounded-circle me-2" href="https://www.linkedin.com/company/iitkconsult/about/"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<!-- adding space -->
<p class="mobile-only"><br><br></p>
<h5 class="text-white mb-4">Quick Links</h5>
<a class="btn btn-link" href="index.html#about">About Us</a>
<a class="btn btn-link" href="team.html">Team</a>
<a class="btn btn-link" href="projects.html">Our Projects</a>
<a class="btn btn-link" href="gallery.html">Gallery</a>
<!-- <a class="btn btn-link" href="">Support</a> -->
</div>
<!-- Map start-->
<div class="justify-content-lg-evenly col-xxl-6">
<div class="mapouter">
<div class="gmap_canvas"><iframe class="gmap_iframe" width="100%" frameborder="0" scrolling="no" marginheight="0"
marginwidth="0"
src="https://maps.google.com/maps?width=500&height=300&hl=en&q=IIT KANPUR&t=&z=14&ie=UTF8&iwloc=B&output=embed"></iframe><a
href="https://formatjson.org/"><p class="text-white">Map</p></a>
</div>
</div>
</div>
</div>
<!-- Map End -->
</div>
</div>
</div>
<!-- Footer End -->
<!-- Copyright Start -->
<div class="container-fluid bg-info text-body copyright py-4">
<div class="container">
<div class="row">
<div class="col-md-6 text-center text-black-50 text-md-start mb-3 mb-md-0">
© <a class="fw-semi-bold text-black-50" href="#">IITK Consulting Group</a>, All Right Reserved.
</div>
<div class="col-md-6 text-center text-md-end">
<!--/*** This template is free as long as you keep the footer author’s credit link/attribution link/backlink. If you'd like to use the template without the footer author’s credit link/attribution link/backlink, you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". Thank you for your support. ***/-->
<!-- Template By <a class="fw-semi-bold" href="https://htmlcodex.com">HTML Codex</a> -->
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-secondary btn-lg-square rounded-circle back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/parallax/parallax.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>