-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1585 lines (1491 loc) · 76.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
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
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Omorfia</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
defer />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js" defer></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script type="module" src="./src/js/AnimationJs/HomePageAnimation.js"></script>
<script type="module" src="./src/js/charts/chart-container.js"></script>
<script type="module" src="./src/js/charts/idfc-chart-container.js"></script>
<script type="module" src="./src/js/charts/falabella-chart-container.js"></script>
<script type="module" src="./src/js/charts/axis-chart-container.js"></script>
<script type="module" src="./src/js/AnimationJs/CommercialSuccessAnimation.js"></script>
<script type="module" src="src/js/script.js" defer></script>
<link rel="stylesheet" href="build/style.css" />
</head>
<body>
<section class="header">
<div class="tw-logo-wrapper"><img class="tw-logo" src="/src/images/logo.svg" alt=""></div>
<div class="navigation">
<div class="nav-0 nav-screen1" id="nav-0">Home</div>
<div class="nav-1 nav-positiveSocialChange" id="nav-1">Amplify positive social change</div>
<div class="nav-2 nav-commercialSuccess" id="nav-2">Achieve commercial success</div>
<div class="nav-3 nav-vibrantCommunity" id="nav-3">Foster a vibrant community</div>
<div class="nav-4 nav-awesomePartner" id="nav-4">Be an awesome partner</div>
<div class="nav-5 nav-revolutionizeTech" id="nav-5">Revolutionize the tech industry</div>
</div>
</section>
<section id="screen1" class="screen">
<div class="why-clickable">
<div class="why-core">
</div>
<ul class="why-clickable-upper">
<li class="awesome-partner-clickable"></li>
<li class="revolutionize-tech-clickable"></li>
<li class="positive-social-change-clickable"></li>
<li class="commercial-success-clickable"></li>
</ul>
<ul class="why-clickable-bottom">
<li class="commercial-success-clickable"></li>
<li class="vibrant-community-clickable"></li>
<li class="awesome-partner-clickable"></li>
</ul>
</div>
<article class="know-more">
<div class="start-text">
Know more about
<span class="twi">Thoughtworks India</span>
<div class="description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.
</div>
<button class="play-video"><i class="fa fa-play"></i> Play Video</button>
</div>
<div class="video-area">
<img src="./src/images/popup/close-pink.svg" alt="" id="close-video">
<div class="play-area">
<video src="./src/videos/sample-intro.mp4" id="intro-video" width="700" playsinline="true"></video>
<div id="play-pause-icons">
<img src="./src/images/why-lenses/play.svg" alt="" id="play-icon">
<img src="./src/images/why-lenses/pause.svg" alt="" id="pause-icon">
</div>
</div>
</div>
</article>
<article class="wheel-container">
<div class='skeleton-container'>
<div class='skeleton-inner-container'>
<img class='skeleton' src='src/images/why-lenses/skeleton.svg'>
<img class='lense-positiveSocialChange' src='src/images/why-lenses/positive-social-change.svg'>
<img class='lense-revolutionizeTech' src='src/images/why-lenses/revolutionize-tech.svg'>
<img class='lense-awesomePartner' src='src/images/why-lenses/awesome-partner.svg'>
<img class='lense-vibrantCommunity' src='src/images/why-lenses/vibrant-community.svg'>
<img class='lense-commercialSuccess' src='src/images/why-lenses/commercial-success.svg'>
<img class='lense-commercialSuccess-back' src='src/images/commercial-success/back-icon.svg'>
<img class='lense-revolutionizeTech-back' src='src/images/revolutionize-tech/back-icon.svg'>
<img class='lense-awesomePartner-back' src='src/images/awesome-partner/back-icon.svg'>
<img class='lense-vibrantCommunity-back' src='src/images/vibrant-community/back-icon.svg'>
<img class='lense-positiveSocialChange-back' src='src/images/positive-social-change/back-icon.svg'>
</div>
<img class='lenses-core' src='src/images/why-lenses/core.svg'>
</div>
</article>
</article>
</section>
<section id="commercial-success" class="screen">
<div class="back-icon-button" id="back-icon-button">
<div class="back-button">
<img src="./src/images/commercial-success/back-icon.svg" alt="" class="back-icon" />
</div>
<span class="back-label">Back</span>
</div>
<div class="container">
<div class="description" id="commerical-description">
<img src="./src/images/commercial-success/index.svg" alt="" class="description-image">
<h1>
Achieve enduring <span class="tumeric-yellow">commercial success</span> and sustained growth
</h1>
<p>
Our year-on-year growth has been ~33% from 2019 to 2021. We have the ability to scale with predictability and
digitally transform global enterprises through strategic consulting and cutting-edge technologies.Aaprt from
being an attractive destination for technology talent and known for hiring the best, we also have long term
relationships with our customers and are passionate about sharing our expertise in technology, business, and
people
</p>
</div>
<div class="timeline" id="commercial-timeline">
<div class='steps' id='commercial-steps'>
<div class='step current'>
<div class='number'>1</div>
<p class='title'><a href='#cs-intro'>Section Introduction</a></p>
<object type="image/svg+xml" data="src/images/commercial-success/timeline-0.svg"
class="timeline-img timeline-img-0"></object>
<img class='timeline-arrow' src='src/images/commercial-success/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>2</div>
<p class='title'><a href='#twi-journey'>Thoughtworks India Journey</a></p>
<object type="image/svg+xml" data="src/images/commercial-success/timeline-1.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/commercial-success/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>3</div>
<p class='title'><a href='#twi-growth'>Thoughtworks India fueling Thoughtworks growth</a></p>
<object type="image/svg+xml" data="src/images/commercial-success/timeline-3.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/commercial-success/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>4</div>
<p class='title last-title'><a href='#twi-marketing'>Our marketing organization </a></p>
<object type="image/svg+xml" data="src/images/commercial-success/timeline-5.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/commercial-success/timeline-arrow.svg'>
</div>
</div>
</div>
<div class="main-content" id="commercial-main-content">
<section class="cs-intro" id="cs-intro">
<h2 class="content-heading">
An Introduction to our India Commercial Team.
</h2>
<p class="desc">
In addition to the India organizational leaders, key commercial leaders include:
</p>
<div class="commercial-team">
<div class="person">
<div class="name">
<img src="./src/images/commercial-success/user-icon.svg" alt="" class="image">
<span class="tumeric-yellow">Saptorshi Hore</span>, COO India
</div>
</div>
<div class="person">
<div class="name ">
<img src="./src/images/commercial-success/user-icon.svg" alt="" class="image">
<span class="tumeric-yellow">Jaggi AL</span>, Head of Marketing
</div>
</div>
<div class="person">
<div class="name">
<img src="./src/images/commercial-success/user-icon.svg" alt="" class="image">
<span class="tumeric-yellow">Suresh Bellalla</span>, Head of Business Finance
</div>
</div>
<div class="person">
<div class="name ">
<img src="./src/images/commercial-success/user-icon.svg" alt="" class="image">
<span class="tumeric-yellow">Suresh Kalarikkal</span>, Head of Legal
</div>
</div>
</div>
<p class="pointer-desc">
The Marketing, Finance and Legal teams work closely with our Demand, Professional Services and Talent
teams to help ensure that we are predictably meeting our business objectives.
</p>
<div class="pointer">
<img src="./src/images/commercial-success/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Consistently increasing Average Headcount with 3500+ total FTEs.
</div>
</div>
<div class="pointer">
<img src="./src/images/commercial-success/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
60% of top 20 TW accounts by size have India presence
</div>
</div>
<div class="pointer">
<img src="./src/images/commercial-success/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our long term partnership with accounts such as McKinsey, Kroger, Aadhar/UIDAI are a key to the impact
in revenue growth
</div>
</div>
<div class="pointer">
<img src="./src/images/commercial-success/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
It has taken as 10 years for us to move from 1mn to 6mn; and 2 years to move from 6 to 12mn
</div>
</div>
<div class="pointer">
<img src="./src/images/commercial-success/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
>30% growth in India market in last 3 years with India market contribution moving up significantly: 2018 -
5.5M, 2019 - 20M, 2020-35.7M, 2021- 52.8M
</div>
</div>
<div class="accounts">
<article class="account">
<img src="./src/images/commercial-success/axis-bank.svg" alt="" class="twi-growth-img">
<p class="account-text">Digital platform to reimagine customer engagement in online and mobile banking
with the goal of being the best in digital bank</p>
<button class="learn-more" id="axis-learn-more"><span class="wave-blue">Learn more</span> <i
class="fa fa-angle-right tumeric-yellow"></i></button>
</article>
<article class="account">
<img src="./src/images/commercial-success/falabella.svg" alt="" class="twi-growth-img">
<p class="account-text">In 2018, we helped them kickoff their transformation journey delivering a
blueprint and roadmap to create a customer retail platform. Since then, we have partnered on multiple
programmes including our recent win on Finance business, to work on Payments</p>
<button class="learn-more" id="falabella-learn-more"><span class="wave-blue">Learn
more</span> <i class="fa fa-angle-right tumeric-yellow"></i></button>
</article>
<article class="account">
<img src="./src/images/commercial-success/idfc-first.svg" alt="" class="twi-growth-img">
<p class="account-text">Implemented digital-first strategy and developed a cloud-based
hyper-personalization platform and made IDFC FIRST the first Indian bank to do weekly releases.</p>
<button class="learn-more" id="idfc-learn-more"><span class="wave-blue">Learn more</span> <i
class="fa fa-angle-right tumeric-yellow"></i></button>
</article>
</div>
</section>
<section class="twi-journey" id="twi-journey">
<div class="div-after-intro">
<img src="./src/images/commercial-success/map.svg" alt="" class="tw-offices-map">
<h2 class="content-heading">
Thoughtworks India
</h2>
<p class="journey-description">
Thoughtworks India is one of the offices where we can have more support on variety of expertise. Given
that we service a global portfolio of clients, the richness of experience that benefits all our clients.
</p>
<table>
<tr>
<td class="table-number">2001</td>
<td class="table-text">Thoughtworks India started</td>
</tr>
<tr>
<td class="table-number">3500+</td>
<td class="table-text">Employees</td>
</tr>
<tr>
<td class="table-number">8</td>
<td class="table-text">Offices</td>
</tr>
<tr>
<td class="table-number">7</td>
<td class="table-text">Locations</td>
</tr>
<tr>
<td class="table-number">80+</td>
<td class="table-text">Active customers</td>
</tr>
<tr>
<td class="table-number">5+</td>
<td class="table-text">Years of average customer-engagement duration</td>
</tr>
</table>
</div>
<div>
<p class="capabilities-heading">
Our teams are working across various capabilities
</p>
<p class="capabilities-text">
Data Strategy / Blockchain / Platforms / Security / AR/VR / Mobile / Business Advisory / Design Strategy /
Product strategy / E4R / Cloud / IoT / Innovation / Healthtech / FinTech / Retail tech
</p>
</div>
<div>
<p class="awards-heading">
Awards & recognitions
</p>
<img src="./src/images/commercial-success/awards-and-recognitions.svg" alt="" class="awards-img">
</div>
<div>
<!-- <div class="history-title">
<p class="history-heading">A brief history of ThoughtWorks India</p>
<button class="history-button" id="explore-journey">Explore our journey <i class="fa fa-angle-right tumeric-yellow"></i></button>
</div>
<p class="history-text">Since our inception 29 years ago, we have been solving problems that got complex and bigger as the industry grew, and as our appetite to solve them grew. We have always been engaged in a distributed setup and that has made us extra alert on using our first principles of agile & engineering practices.</p> -->
<button class="history-button" id="explore-journey">Explore our journey <i
class="fa fa-angle-right tumeric-yellow"></i></button>
</div>
</section>
<br><br>
<section class="twi-growth" id="twi-growth">
<h2 class="growth-main-heading">
Thoughtworks India fueling Thoughtworks growth
</h2>
<div id="chart-container"></div>
<p class="chart-footer">2022-projected</p>
<p class="growth-discription">Thoughtworks India revenue, headcount and Gross Margin</p>
<button class="learn-more" id="operational-metrics"><span class="wave-blue">Learn more about Key Operational
Metrics</span> <i class="fa fa-angle-right tumeric-yellow"></i></button>
</section>
<br><br>
<section class="twi-marketing" id="twi-marketing">
<h2 class="content-heading">2022 has been a year of consolidation for Marketing</h2>
<p class="marketing-text">New India Head of Marketing in April 2021. Our focus has been on reevaluating our
Go-to-Market and evolving our marketing approach to help build thought leadership. This helps in building a
strong foundation for demand generation in the Indian market.</p>
<div class="marketing-content">
<img src="./src/images/commercial-success/marketing-1.svg" alt="" class="marketing-img" id="marketing-1">
<img src="./src/images/commercial-success/marketing-2.svg" alt="" class="marketing-img" id="marketing-2">
<img src="./src/images/commercial-success/marketing-3.svg" alt="" class="marketing-img" id="marketing-2">
</div>
<button class="learn-more" id="marketing-button"><span class="wave-blue">Learn more</span> <i
class="fa fa-angle-right tumeric-yellow"></i></button>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</section>
<br>
</div>
</div>
</section>
<section id="revolutionize-tech" class="screen">
<div class="back-icon-button" id="back-icon-button">
<div class="back-button">
<img src="./src/images/revolutionize-tech/back-icon.svg" alt="" class="back-icon" />
</div>
<span class="back-label">Back</span>
</div>
<div class="container">
<div class="description" id="revolution-description">
<img src="./src/images/revolutionize-tech/index.svg" alt="" class="description-image">
<h1>
<span class="sapphire-blue">Revolutionize</span> the tech industry
</h1>
<p>
We are the hub for best tech talent. We have achieved industry leading glassdoor ratings and have the most
competitive selection process within the Indian IT ecosystem. We pride ourselves for being the best Tech
partner to our clients and our investment in technology and innovation, such as E4R, has helped us
revolutionize the tech industry.
</p>
</div>
<div class="timeline" id="revolution-timeline">
<div class='steps' id='revolution-steps'>
<div class='step current'>
<div class='number'>1</div>
<p class='title'><a href='#rt-intro'>Section Introduction</a></p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-0.svg"
class="timeline-img timeline-img-0"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>2</div>
<p class='title large-title'><a href='#public-goods'>Digital Public Goods</a></p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-1.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>3</div>
<p class='title large-title'><a href='#tech-assets'>Creating technology assets & emerging technologies</a>
</p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-2.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>4</div>
<p class='title large-title'><a href='#e4r'>Engineering for research</a></p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-3.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>5</div>
<p class='title'><a href='#service-lines'>Service Lines</a></p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-4.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>6</div>
<p class='title last-title'><a href='#domain-capabilities'>Domain capabilities</a></p>
<object type="image/svg+xml" data="src/images/revolutionize-tech/timeline-5.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/revolutionize-tech/timeline-arrow.svg'>
</div>
</div>
</div>
<div class="main-content" id="revolution-main-content">
<section class="rt-intro" id="rt-intro">
<h2 class="section-heading">
An Introduction to our India Technology Team
</h2>
<p class="desc">India covers the full spectrum of our global services offerings across all Service Lines, and
also has Local service offerings.</p>
<p class="desc">Our technology leadership emcompasses:</p>
<div class="revolution-team">
<div class="person">
<div class="name">
<img src="./src/images/revolutionize-tech/user-icon.svg" alt="" class="image">
<p><span class="sapphire-blue">Bharani Subramaniam, Vanya Seth, Prasanna Pendse</span>, India Head of
Tech</p>
</div>
</div>
<div class="person">
<div class="name">
<img src="./src/images/revolutionize-tech/user-icon.svg" alt="" class="image">
<p><span class="sapphire-blue">Gunjan Khandelwal, Namitha Anand, Prasanna Pendse and Rohit Kalro and
their
teams</span>, Service Line Leaders</p>
</div>
</div>
<div class="person">
<div class="name">
<img src="./src/images/revolutionize-tech/user-icon.svg" alt="" class="image">
<p><span class="sapphire-blue">Ankur Dang, Nivetha Padmanabhan, and their teams</span>, Regional Service
Line leaders</p>
</div>
</div>
<div class="person">
<div class="name">
<img src="./src/images/revolutionize-tech/user-icon.svg" alt="" class="image">
<p><span class="sapphire-blue">Sanjeev Athreya, Murali P and their teams</span>, Domain Leaders</p>
</div>
</div>
<div class="person">
<div class="name">
<img src="./src/images/revolutionize-tech/user-icon.svg" alt="" class="image">
<span class="sapphire-blue"> Client Technical Principals, and various global thought-leaders, Market
Technology Principals</span>
</div>
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We are known for our Distributed Agile delivery and this is one of our key differentiators to being in
expertise and quality at scale
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our E4R Service Line solves complex scientific community problems with cutting edge technology </div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We have evangelised, designed and build large scale business platforms & platform businesses across
industry verticals ( e.g. Axis Bank, Falabella, IDFC First)
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We have built enterprise cloud based data platforms, implemented data mesh across global regions
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We have done state of the art ML work with public sector in India to unlock innovation with Indic
languages
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We are working with Germany on Autonomous Vehicles
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Focus area for capabilities include infrastructure consultants, cloud solutions architect, Data Engineers,
Mobile developers
</div>
</div>
<div class="pointer">
<img src="./src/images/revolutionize-tech/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We are solving repeatability challenges at scale with assets like Catalyst, X-Act and Polaris
</div>
</div>
<button class="learn-more-btn" id="tech-trends-popup-button">Learn more technology trends <i
class="fa fa-angle-right sapphire-blue"></i></button>
<br><br>
<h2 class="section-heading">
Key stories
</h2>
<p class="sub-heading">Presence-less, paper-less, cash-less services</p>
<p class="pointer-desc sapphire-blue">India stack</p>
<img src="./src/images/revolutionize-tech/aadhaar.svg" alt="" class="aadhaar-img">
<p class="sub-heading">Democratising India’s digital commerce value chain</p>
<img src="./src/images/revolutionize-tech/globe.svg" alt="" class="globe-img">
</section>
<br><br>
<section class="public-goods" id="public-goods">
<h2 class="section-heading">
Digital Public Goods (DPG) has always been integral to Thoughtworks
</h2>
<img class='dpg-image' src='src/images/revolutionize-tech/dpg.svg'>
<button class="learn-more-btn" id="dpg-popup-button">Learn more about DPG <i
class="fa fa-angle-right sapphire-blue"></i></button>
</section>
<br><br>
<section class="tech-assets" id="tech-assets">
<h2 class="section-heading">
Creating technology assets and emerging technologies
</h2>
<img class='tech-assets-image' src='src/images/revolutionize-tech/fa.svg'>
<img class='tech-assets-image' src='src/images/revolutionize-tech/xr.svg'>
<img class='tech-assets-image' src='src/images/revolutionize-tech/av.svg'>
</section>
<br><br>
<section class="e4r" id="e4r">
<h2 class="section-heading">
Engineering for research
</h2>
<p class="desc">Engineering for research (e4r™) Service Line (India local) is committed to advance research in
the fields
of radio and optical astronomy, genomics, molecular dynamics and urban sciences</p>
<img class='tech-assets-image' src='src/images/revolutionize-tech/tmt.svg'>
<img class='tech-assets-image' src='src/images/revolutionize-tech/bs.svg'>
<img class='tech-assets-image' src='src/images/revolutionize-tech/er.svg'>
<button class="learn-more-btn" id="e4r-popup-button">Learn more <i
class="fa fa-angle-right sapphire-blue"></i></button>
</section>
<br><br>
<section class="service-lines" id="service-lines">
<h2 class="section-heading">
Service Lines
</h2>
<div class="service-content">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-1.png' id="dto-popup-image">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-2.png' id="empc-popup-image">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-3.png' id="cxpd-popup-image">
</div>
<div class="service-content">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-4.png' id="ai-popup-image">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-5.png' id="gic-popup-image">
<img class='service-lines-image' src='src/images/revolutionize-tech/sl-6.png' id="gdo-popup-image">
</div>
</section>
<br><br>
<section class="domain-capabilities" id="domain-capabilities">
<h2 class="section-heading">
Global Domains Key Priorities 2023 - India has been the pioneer for Domain & Industry capabilities @ TW
</h2>
<img class='domain-capabilities-image' src='src/images/revolutionize-tech/domains.png'>
<button class="learn-more-btn" id="domain-popup-button">Learn more <i
class="fa fa-angle-right sapphire-blue"></i></button>
</section>
<br><br><br><br>
</div>
</div>
</section>
<section id="vibrant-community" class="screen">
<div class="back-icon-button" id="back-icon-button">
<div class="back-button">
<img src="./src/images/vibrant-community/back-icon.svg" alt="" class="back-icon" />
</div>
<span class="back-label">Back</span>
</div>
<div class="container">
<div class="description" id="vibrant-description">
<img src="./src/images/vibrant-community/index.svg" alt="" class="description-image">
<h1>
Foster a <span class="jade-green">vibrant community</span> of diverse and passionate technologists
</h1>
<p>We value learning and collaboration an through our communities of practice, influence the industry to do a
better job and grow individuals and communities of technologist through open source contributions, conferences
and tech-community events (such as TW Live, Geek Night, Converge, VodQa). Every Thoughtworks office is abuzz
(both in-person and virtually) with conversations, emails, group threads, pet projects, and discussions on
technology trends – culminating in the delivery of great software</p>
</div>
<div class="timeline" id="vibrant-timeline">
<div class='steps' id='vibrant-steps'>
<div class='step current'>
<div class='number'>1</div>
<p class='title'><a href='#vc-intro'>Section Introduction</a></p>
<object type="image/svg+xml" data="src/images/vibrant-community/timeline-0.svg"
class="timeline-img timeline-img-0"></object>
<img class='timeline-arrow' src='src/images/vibrant-community/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>2</div>
<p class='title'><a href='#home-twu'>Thoughtworks University & Communities of Practice</a></p>
<object type="image/svg+xml" data="src/images/vibrant-community/timeline-1.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/vibrant-community/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>3</div>
<p class='title large-title'><a href='#people-function'>People function & Recruitment</a></p>
<object type="image/svg+xml" data="src/images/vibrant-community/timeline-2.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/vibrant-community/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>4</div>
<p class='title last-title'><a href='#back-to-office'>Back to office</a></p>
<object type="image/svg+xml" data="src/images/vibrant-community/timeline-3.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/vibrant-community/timeline-arrow.svg'>
</div>
</div>
</div>
<div class="main-content" id="vibrant-main-content">
<section class="vc-intro" id="vc-intro">
<h2 class="content-heading">
An Introduction to our India Talent & Community Team
</h2>
<p class="desc">
Our India Prof Services Leadership Team is led by
<span class="name">
<img src="./src/images/vibrant-community/user-icon.svg" alt="" class="image">
<span class="jade-green">Saptorshi Hore</span>,
</span> and includes:
</p>
<div class="social-team">
<div class="person">
<div class="name">
<img src="./src/images/vibrant-community/user-icon.svg" alt="" class="image">
<span class="jade-green">Chirag Doshi</span>, Head of People
</div>
</div>
<div class="person">
<div class="name ">
<img src="./src/images/vibrant-community/user-icon.svg" alt="" class="image">
<span class="jade-green">Savitha Hortikar</span>, Head of Recruiting
</div>
</div>
<div class="person">
<div class="name ">
<img src="./src/images/vibrant-community/user-icon.svg" alt="" class="image">
<span class="jade-green">Prithviraj Thakor</span>, Head of Staffing
</div>
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
The composition of our PS community is becoming increasingly complex, with scale, specialities,
distribution and domain playing a role.
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our recruiting team is highly effective and has the scale to hire the numbers we need. Average Hires per
month is around 126 including laterals, grads.
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We are also investing heavily in scalable learning and development, including technical, consulting and
business skills, and leadership development. Udemy for Thoughtworks, Digital Learning Experience, is being
utilized by 90% of Thoughtworkers
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We redefined the People Champion (PC) role to meet the need of scale and our new org structure and
socialised with our stakeholders.
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We began the first half of this year with a focus on creating a clear and coherent strategy for the People
function. H2 has been all about defining and executing concrete initiatives that are helping us move
forward in this direction.
</div>
</div>
<div class="pointer">
<img src="./src/images/vibrant-community/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We designed and implemented the new compensation approach which creates better confidence about internal
and external parity.
</div>
</div>
</section>
<br><br>
<section class="home-twu" id="home-twu">
<h2 class="content-heading">
Community thought-leadership
</h2>
<img src="./src/images/vibrant-community/community.png" alt="" class="community-img">
<button class="learn-more-btn" id="home-twu-popup-button"><span class="wave-blue">Learn
more</span> <i class="fa fa-angle-right jade-green"></i></button>
</section>
<br><br>
<section class="people-function" id="people-function">
<h2 class="content-heading">
Changing composition of Professional Services
</h2>
<p class="desc">
Work is becoming more complex and covers a greater breadth of technologies
</p>
<p class="content-text">
As India grows and scales, and more work gets globally distributed, the composition of our PS staff is
changing. The breadth of technology, size of accounts, service lines, and need for domain expertise is
driving the new shape of our PS population. The external job market and the changing structure of
Thoughtworks is also impacting us.
</p>
<div class="people-function-content">
<img src="./src/images/vibrant-community/twu-1.png" alt="" class="twu-img" id="twu-1">
<img src="./src/images/vibrant-community/twu-2.png" alt="" class="twu-img" id="twu-2">
<img src="./src/images/vibrant-community/twu-3.png" alt="" class="twu-img" id="twu-3">
</div>
<button class="learn-more-btn" id="people-function-popup-button"><span class="wave-blue">Learn
more</span> <i class="fa fa-angle-right jade-green"></i></button>
</section>
<br><br>
<section class="back-to-office" id="back-to-office">
<h2 class="content-heading">
From all office set-up to a Remote first setup
</h2>
<div class="office-content-text">
<p>
We have been operating in fully remote from the time of the pandemic
</p>
<p>It has been working well and the transition was smooth because of the way we work - our
practices,
processes</p>
<p>Our people are working from across India and are based out of multiple locations. Last
check, people were
working out of <b>230+ locations</b></p>
</div>
<div class="office-content-text">
<p class="jade-green"><b>Back to Office</b></p>
<p>Currently we are running “Back to Office Festival” with the aim to get people to office and figure out
what
the new normal looks like</p>
<p>Give a feel of Thoughtworks culture and working together to new joinees who joined us during the pandemic
</p>
<p>Our aim is to get back people to office as much as possible.</p>
<p>This festival will tell us about what works and what needs to change</p>
<p>Although we want everyone back, reality might be that we will have a hybrid mode with some people always
from home and some from office</p>
</div>
<img src="./src/images/vibrant-community/map.png" alt="" class="map-img">
</section>
<br><br><br><br>
</div>
</div>
</section>
<section id="positive-social-change" class="screen">
<div class="back-icon-button" id="back-icon-button">
<div class="back-button">
<img src="./src/images/positive-social-change/back-icon.svg" alt="" class="back-icon" />
</div>
<span class="back-label">Back</span>
</div>
<div class="container">
<div class="description" id="social-description">
<img src="./src/images/positive-social-change/index.svg" alt="" class="description-image">
<h1>
Amplify <span class="flamingo-pink">positive social change</span> and advocate for an equitable tech future
</h1>
<p>Social change is in our DNA and culture. We see this as one of the most important and effective ways we can
improve the lives of a large number of people. We invest and co-create technology to drive change as part of
our approach to social justice. This also helps us in elevating our brand, attract talent and trigger growth.
</p>
</div>
<div class="timeline" id="social-timeline">
<div class='steps' id='social-steps'>
<div class='step current'>
<div class='number'>1</div>
<p class='title'><a href='#sc-intro'>Section Introduction</a></p>
<object type="image/svg+xml" data="src/images/positive-social-change/timeline-0.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/positive-social-change/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>2</div>
<p class='title'><a href='#dei-story'>Our DEI story</a></p>
<object type="image/svg+xml" data="src/images/positive-social-change/timeline-1.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/positive-social-change/timeline-arrow.svg'>
</div>
<div class='step'>
<div class='number'>3</div>
<p class='title'><a href='#bahmni'>Bahmni - open source EMR solution</a></p>
<object type="image/svg+xml" data="src/images/positive-social-change/timeline-2.svg"
class="timeline-img"></object>
<img class='timeline-arrow' src='src/images/positive-social-change/timeline-arrow.svg'>
</div>
</div>
</div>
<div class="main-content" id="social-main-content">
<section class="sc-intro" id="sc-intro">
<h2 class="content-heading">
An Introduction to our India DEISSC Team
</h2>
<p class="desc">
Our India DEISSC organization:
</p>
<div class="social-team">
<div class="person">
<div class="name">
<img src="./src/images/positive-social-change/user-icon.svg" alt="" class="image">
<span class="flamingo-pink">Sujitha Selvaraj (interim)</span>, Head of Diversity, Equity & Inclusion
</div>
</div>
<div class="person">
<div class="name ">
<img src="./src/images/positive-social-change/user-icon.svg" alt="" class="image">
<span class="flamingo-pink">Satish Vishwanathan</span>, Head of Social Change
</div>
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our LGBTQIA+ inclusion efforts includes programs like Interning with Pride and Revive which aim at
bringing in and supporting diverse people in the organisation
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our inclusive Policies are pioneering industry best practices such as Equal Opportunity, Parental Policy.
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
We have affinity groups for our different areas of focus like Gender Equity at TW, The Mitra collective
for LGBTQIA+ & Allies and Intertwined for Mental Health & Wellness, Disability Inclusion, Socio Economic
marginalised communities
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
From the Peakon DEI & engagement survey 2021, DEI scores high and above the industry benchmark
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
Our award winning women returnee program Vapasi has been a success. There are now plans to roll out Vapasi
globally in Thoughtworks.
</div>
</div>
<div class="pointer">
<img src="./src/images/positive-social-change/arrow-pointer.svg" alt="" class="pointer-img">
<div class="pointer-desc">
In 2022, we have won many prestigious awards such as Trans Inclusion Asia Award by Community Business, DEI
Champions by DivHersity awards 2022 by JobsForHer, Recognised as GOLD employer by IWEI 2021
</div>
</div>
</section>
<br><br>
<section class="dei-story" id="dei-story">
<h2 class="content-heading">
Our DEI 2022 prioritized initiatives
</h2>
<p class="desc">
Our goal for 2022 is to be an equitable home for all with DEI integrated into the business vision of /tw
India, while striving for positive social change.
</p>
<div class="dei-content">
<img class='dei-img' src='src/images/positive-social-change/dei-1.svg'>
<img class='dei-img' src='src/images/positive-social-change/dei-2.svg'>
</div>
<div class="dei-content">
<img class='dei-img' src='src/images/positive-social-change/dei-3.svg'>
<img class='dei-img' src='src/images/positive-social-change/dei-4.svg'>
</div>
<button class="learn-more-btn" id="dei-popup-button"><span class="wave-blue">Learn more about our DEI
stories</span> <i class="fa fa-angle-right flamingo-pink"></i></button>
</section>
<br><br>
<section class="bahmni" id="bahmni">
<h2 class="content-heading">
Building ecosystem - Bahmni
</h2>
<img class='bahmni-img' src='src/images/positive-social-change/bahmni.svg'>
<p class="bahmni-text"><b>Bahmni</b> is an easy to use EMR and hospital system. It combines and enhances
existing open source products
into a single solution built on systems used in over 80 countries, is designed for hospitals and
organizations in low resource settings.</p>
<p class="bahmni-text">We helped create an online Community and ecosystem to help Implementers and adopters of
Bahmni and it
comprises of:</p>
<div class="pointer">
<div class='number'>1</div>
<p class="pointer-text">Website: <a class="pointer-link" href="https://www.bahmni.org/">bahmni.org</a></p>
</div>
<div class="pointer">
<div class='number'>2</div>
<p class="pointer-text">Documentation Wiki</p>
</div>
<div class="pointer">
<div class='number'>3</div>
<p class="pointer-text">OpenMRS Talk and IRC Chat</p>
</div>
<div class="pointer">
<div class='number'>4</div>
<p class="pointer-text">Youtube Channel</p>
</div>
<div class="pointer">
<div class='number'>5</div>
<p class="pointer-text">Bahmni Blogs</p>
</div>
<div class="pointer">
<div class='number'>6</div>
<p class="pointer-text">Twitter</p>
</div>
<img class='bahmni-data-img' src='src/images/positive-social-change/bahmni-data.svg'>
<button class="learn-more-btn" id="bahmni-popup-button"><span class="wave-blue">Learn more about
Bahmni</span> <i class="fa fa-angle-right flamingo-pink"></i></button>
<br>
<br>