-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1784 lines (1682 loc) · 114 KB
/
index.html
File metadata and controls
1784 lines (1682 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
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 name="theme-color" content="#253b2f">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tulika Dutta</title>
<link rel="shortcut icon" type="images/png" href="assets\images\fav-icon\favicon.ico">
<!-- Google 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=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="assets\css\swiper-bundle.min.css">
<link rel="stylesheet" href="assets\css\odometer.css">
<link rel="stylesheet" href="assets\css\animate.css">
<link rel="stylesheet" href="assets\css\magnific-popup.css">
<link rel="stylesheet" href="assets\css\style.css">
<link rel="stylesheet" href="assets\css\custom.css">
<script src="https://kit.fontawesome.com/e5c874c64c.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="page">
<div class="w-100 h-100 position-fixed top-0 start-0 page-lines">
<div class="container position-relative h-100">
<span class="page-line-start position-absolute h-100"></span>
<span class="page-line-end position-absolute h-100"></span>
<span class="page-line-inner position-absolute h-100 d-none d-xl-block"></span>
</div>
</div>
<!--Header Section ======================-->
<header class="section-header header-1 tdweb-nav sticky-navbar ">
<nav class="navbar navbar-expand-xl navbar-light hover-menu" aria-label="Offcanvas navbar large">
<div class="container max-width header-bg">
<div class="d-flex align-items-end">
<a class="navbar-brand py-0 ps-3" href="index.html">
<span class="logo">
<img src="assets/img/logo.svg" alt="logo">
</span>
</a>
</div>
<a href="javascript:void(0)" class="toggler-icon text-decoration-none d-block d-xl-none"
data-bs-toggle="offcanvas" data-bs-target="#tdwebNavbar" aria-controls="tdwebNavbar"
aria-label="Toggle navigation">
<svg width="40" height="23" viewbox="0 0 40 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="1.5" y1="1.5" x2="38.5" y2="1.5" stroke="#fff" stroke-width="3"
stroke-linecap="round"></line>
<line x1="1.5" y1="11.5" x2="38.5" y2="11.5" stroke="#fff" stroke-width="3"
stroke-linecap="round"></line>
<line x1="21.5" y1="21.5" x2="38.5" y2="21.5" stroke="#fff" stroke-width="3"
stroke-linecap="round"></line>
</svg>
</a>
<div class="offcanvas offcanvas-end" data-bs-backdrop="static" tabindex="-1" id="tdwebNavbar"
aria-labelledby="tdwebNavbarLabel">
<div class="offcanvas-header">
<span class="offcanvas-title" id="tdwebNavbarLabel">
<span class="logo">
<img src="assets/img/logo.svg" alt="logo">
</span>
</span>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"
aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end align-items-xl-center ">
<li class="nav-item dropdown">
<a class="nav-link active d-flex gap-2 align-items-center" aria-current="page"
href="#" aria-label="nav-links">
Home</a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link d-flex gap-2 align-items-center" href="#" aria-label="nav-links"
data-bs-toggle="dropdown" aria-expanded="false">
About
<span class="dropdown-icon">
<svg width="12" height="9" viewbox="0 0 12 9" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M11 8L6 2L1 8"></path>
</svg>
</span>
</a>
<ul class="dropdown-menu ">
<li><a class="dropdown-item" href="blog-archive.html"
aria-label="single-pages"><span class="link-hover-animation-1">Blog
Archive</span></a></li>
<li><a class="dropdown-item" href="blog-single.html"
aria-label="single-pages"><span class="link-hover-animation-1">Blog
Single</span></a></li>
<li><a class="dropdown-item" href="blog-left-sidebar.html"
aria-label="single-pages"><span class="link-hover-animation-1">Blog Left
Sidebar</span></a></li>
<li><a class="dropdown-item" href="blog-right-sidebar.html"
aria-label="single-pages"><span class="link-hover-animation-1">Blog
Right Sidebar</span></a></li>
</ul>
</li>
<li class="nav-item dropdown has-megamenu">
<a class="nav-link d-flex gap-2 align-items-center" href="#" aria-label="nav-links"
data-bs-toggle="dropdown" aria-expanded="false">
Our Services
<span class="dropdown-icon">
<svg width="12" height="9" viewbox="0 0 12 9" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M11 8L6 2L1 8"></path>
</svg>
</span>
</a>
<div class="dropdown-menu megamenu mb-3 mb-xl-0" role="menu">
<div class="container">
<div class="megamenu-contents">
<div class="row g-0">
<div class="col-xl-3">
<div class="d-flex gap-30 flex-column py-40 ps-30 pe-40">
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Residential
Design</a>
<p class="small mb-0 pt-10">Everything from concept to
completion</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Commercial
Design</a>
<p class="small mb-0 pt-10">Focuses on optimizing
functionality and aesthetics</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Space
Planning</a>
<p class="small mb-0 pt-10">Maximize the potential of
your space</p>
</div>
<!-- menu-description -->
</div>
</div>
<!-- col -->
<div class="col-xl-3">
<div
class="d-flex gap-30 flex-column py-40 ps-30 pe-40 separator h-100">
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Color
Consultation</a>
<p class="small mb-0 pt-10">We help you choose the
perfect palette</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Project
Management</a>
<p class="small mb-0 pt-10">We oversee every detail for
a successful project</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Custom
Furnishings</a>
<p class="small mb-0 pt-10">Elevate your space with
unique furnishings</p>
</div>
<!-- menu-description -->
</div>
</div>
<!-- col -->
<div class="col-xl-3">
<div
class="d-flex gap-30 flex-column py-40 ps-30 pe-40 separator h-100">
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Color
Consultation</a>
<p class="small mb-0 pt-10">We help you choose the
perfect palette</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Project
Management</a>
<p class="small mb-0 pt-10">We oversee every detail for
a successful project</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Custom
Furnishings</a>
<p class="small mb-0 pt-10">Elevate your space with
unique furnishings</p>
</div>
<!-- menu-description -->
</div>
</div>
<!-- col -->
<div class="col-xl-3">
<div
class="d-flex gap-30 flex-column py-40 ps-30 pe-40 separator h-100">
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Color
Consultation</a>
<p class="small mb-0 pt-10">We help you choose the
perfect palette</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Project
Management</a>
<p class="small mb-0 pt-10">We oversee every detail for
a successful project</p>
</div>
<!-- menu-description -->
<div class="menu-description">
<a href="service-single.html"
class="menu-heading text-decoration-none link-hover-animation-1 pb-1">Custom
Furnishings</a>
<p class="small mb-0 pt-10">Elevate your space with
unique furnishings</p>
</div>
<!-- menu-description -->
</div>
</div>
</div>
<!-- row -->
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Resources
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog-listing.html">
Blog
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">
Contact
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- container-fluid -->
</nav>
</header>
<!--Header Section ======================-->
<!--Hero Section ======================-->
<section class="section-hero hero-1 max-width position-relative">
<div id="heroSlider" class="carousel carousel-dark slide" data-bs-ride="carousel" data-bs-interval="600000">
<!-- -->
<div class="carousel-indicators">
<div class="d-flex align-items-center gap-3 gap-lg-1 lh-1 active" data-bs-target="#heroSlider"
data-bs-slide-to="0" aria-current="true">
<span class="indecators-item display-4 fw-extra-bold mb-0">01</span>
<span class="indecators-description mb-0">Elegant Design Showcase</span>
</div>
<div class="d-flex align-items-center gap-3 gap-lg-1 lh-1" data-bs-target="#heroSlider"
data-bs-slide-to="1">
<span class="indecators-item display-4 fw-extra-bold mb-0">02</span>
<span class="indecators-description mb-0">Sustainable Design Focus</span>
</div>
<div class="d-flex align-items-center gap-3 gap-lg-1 lh-1" data-bs-target="#heroSlider"
data-bs-slide-to="2">
<span class="indecators-item display-4 fw-extra-bold mb-0">03</span>
<span class="indecators-description mb-0">Meet Our <br> Design Team</span>
</div>
</div>
<!-- carousel-indicators -->
<div class="carousel-inner">
<div class="carousel-item active">
<picture>
<img class="hero_img" src="assets/img/banner1.jpg" alt="hero-image">
</picture>
<div>
<div class="carousel-captions">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="content-text text-start">
<div class="position-relative banner_text_wrapper mb-5">
<h1 class="text-white animated fadeInUpBig">Empowering <br>Holistic
<span>Wellness</span>
</h1>
<p class="text-white animated fadeInDown">Lorem Ipsum is simply
dummy text of the printing and typesetting industry. Lorem Ipsum
has been the industry's standard dummy text ever since the
1500s, </p>
</div>
<div class="theme-button animated fadeInLeft">
<a href="project-archive.html" class="btn btn-primary gap-10">Book
A Consultancy
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
<div
class="comapny_works d-flex align-items-center position-relative gap-3 mt-5 animated fadeInLeft">
<img src="assets/img/1.svg" />
<img src="assets/img/4.svg" />
<img src="assets/img/3.svg" />
<img src="assets/img/2.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<picture>
<img class="hero_img" src="assets/img/banner1.jpg" alt="hero-image">
</picture>
<div class="carousel-captions">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="content-text text-start">
<div class="position-relative banner_text_wrapper mb-5">
<h1 class="text-white animated fadeInUpBig">Empowering <br>Holistic
<span>Wellness</span>
</h1>
<p class="text-white animated fadeInDown">Lorem Ipsum is simply dummy
text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="theme-button animated fadeInLeft">
<a href="project-archive.html" class="btn btn-primary gap-10">Book A
Consultancy
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
<div
class="comapny_works d-flex align-items-center position-relative gap-3 mt-5 animated fadeInLeft">
<img src="assets/img/1.svg" />
<img src="assets/img/4.svg" />
<img src="assets/img/3.svg" />
<img src="assets/img/2.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<picture>
<img class="hero_img" src="assets/img/banner1.jpg" alt="hero-image">
</picture>
<div class="carousel-captions">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="content-text text-start">
<div class="position-relative banner_text_wrapper mb-5">
<h1 class="text-white animated fadeInUpBig">Empowering <br>Holistic
<span>Wellness</span>
</h1>
<p class="text-white animated fadeInDown">Lorem Ipsum is simply dummy
text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, </p>
</div>
<div class="theme-button animated fadeInLeft">
<a href="project-archive.html" class="btn btn-primary gap-10">Book A
Consultancy
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
<div
class="comapny_works d-flex align-items-center position-relative gap-3 mt-5 animated fadeInLeft">
<img src="assets/img/1.svg" />
<img src="assets/img/4.svg" />
<img src="assets/img/3.svg" />
<img src="assets/img/2.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-control-buttons d-flex flex-column gap-0 position-absolute bottom-0 end-0">
<a class="next-btn" href="#" data-bs-target="#heroSlider" data-bs-slide="next">
<svg width="35" height="22" viewbox="0 0 35 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
<a class="prev-btn" href="#" data-bs-target="#heroSlider" data-bs-slide="prev">
<svg class="arrow-reverse" width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
</div>
<div class="top-social-media">
<ul class="d-flex align-items-center flex-column gap-4">
<li><a href="#"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="#"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="#"><i class="fa-brands fa-x-twitter"></i></a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</section>
<!--Hero Section ======================-->
<!--About Section ======================-->
<section class="section-about about-1 section-full-width">
<div class="section-title-wrapper position-relative">
<div class="scroll-move">
<span
class="scrolling-text display-1 fw-extra-bold stroke-title text-stroke stroke-opacity-20 stroke-width-1 stroke-primary lh-1">About
Me</span>
</div>
<div class="container">
<div class="section-title section-separator">
<h2 class="fw-extra-bold heading-title separator">Everything About Tulika Dutta</h2>
<p class="fs-5 mb-0 subtitle subtitle-width">For 16 years, Tulika has inspired and guided
<b>over 10,000 individuals </b> towards healthier.
</p>
</div>
</div>
</div>
<div class="about-bg text-secondary position-relative">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="about-image overflow-hidden">
<img src="assets/img/tulika_abt.jpg" class="img-fluid wow slideInLeft"
alt="about-image">
</div>
</div>
<div class="col-lg-6">
<div class="about-contents ">
<h1 class="mb-3 text-black">I’m Tulika</h1>
<h5 class="mb-4 text-black fw-normal fs-5 lh-5">For 16 years, Tulika has inspired and
guided over 10,000 individuals towards healthier.</h5>
<p class="text-black">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever since the
1500s, when an unknown printer took a galley of type and scrambled it to make a type
specimen book. It has survived not only five centuries...</p>
<div class="theme-button-white">
<a href="#" class="btn gap-10">Read More about Me
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--About Section ======================-->
<!--Counter Section ======================-->
<div class="event-counter position-relative">
<div class="container">
<div class="row row-cols-2 row-cols-md-3 gy-lg-0 gy-4 justify-content-between">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="separator d-flex align-items-center fw-extra-bold display-3">
<span class="odometer" data-count-to="22"></span>
</div>
<p class="fs-5 fw-bold mb-0 mt-1 mt-lg-2 mt-xxl-3">Years of experience</p>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="separator d-flex align-items-center display-3 fw-extra-bold">
<span class="odometer" data-count-to="282"></span><span class="odometer-icon">+</span>
</div>
<p class="fs-5 fw-bold mb-0 mt-1 mt-lg-2 mt-xxl-3">Seminar done</p>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="separator d-flex align-items-center display-3 fw-extra-bold">
<span class="odometer" data-count-to="420"></span><span class="odometer-icon">k</span>
</div>
<p class="fs-5 fw-bold mb-0 mt-1 mt-lg-2 mt-xxl-3">Impact on lives</p>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="separator d-flex align-items-center display-3 fw-extra-bold">
<span class="odometer" data-count-to="93"></span><span class="odometer-icon">%</span>
</div>
<p class="fs-5 fw-bold mb-0 mt-1 mt-lg-2 mt-xxl-3">Positive Feedbacks</p>
</div>
</div>
</div>
</div>
<!--Counter Section ======================-->
<!--Service Section ======================-->
<section class="section-service">
<div class="section-full-width">
<div class="section-title-wrapper position-relative">
<div class="scroll-move">
<span
class="scrolling-text display-1 fw-extra-bold stroke-title text-stroke stroke-opacity-20 stroke-width-1 stroke-primary lh-1">Services</span>
</div>
<div class="container">
<div class="section-title section-separator">
<h2 class="fw-extra-bold heading-title separator lh-1">Explore Our Services That we provide
</h2>
<div
class="d-flex flex-column flex-lg-row gap-4 align-items-lg-end justify-content-lg-between">
<p class="fs-5 fw-normal mb-0 subtitle subtitle-width">For 16 years, Tulika has inspired
and guided over 10,000 individuals towards healthier.</p>
<div class="tdweb-button">
<a href="services.html" class="btn btn-primary gap-10">View All Services
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-custom-progress position-relative mt-n30">
<div class="swiper service-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="service-details">
<h2 class="stroke-heading">
<svg stroke-width="1" class="text-line-2 fw-extra-bold"><text x="0%"
dominant-baseline="middle" y="70%">01</text></svg>
</h2>
<a href="service-single.html" class="text-decoration-none">
<h4 class="service-title link-hover-animation-1 d-inline-block">Child Growth
Nutrition</h4>
</a>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard............</p>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="service-details">
<h2 class="stroke-heading">
<svg stroke-width="1" class="text-line-2 fw-extra-bold"><text x="0%"
dominant-baseline="middle" y="70%">02</text></svg>
</h2>
<a href="service-single.html" class="text-decoration-none">
<h4 class="service-title link-hover-animation-1 d-inline-block">Meal Planing
</h4>
</a>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard............</p>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="service-details">
<h2 class="stroke-heading">
<svg stroke-width="1" class="text-line-2 fw-extra-bold"><text x="0%"
dominant-baseline="middle" y="70%">03</text></svg>
</h2>
<a href="service-single.html" class="text-decoration-none">
<h4 class="service-title link-hover-animation-1 d-inline-block">Nutritional
Consultant</h4>
</a>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard............</p>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="service-details">
<h2 class="stroke-heading">
<svg stroke-width="1" class="text-line-2 fw-extra-bold"><text x="0%"
dominant-baseline="middle" y="70%">04</text></svg>
</h2>
<a href="service-single.html" class="text-decoration-none">
<h4 class="service-title link-hover-animation-1 d-inline-block">Employee
Wellness</h4>
</a>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard............</p>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="service-details">
<h2 class="stroke-heading">
<svg stroke-width="1" class="text-line-2 fw-extra-bold"><text x="0%"
dominant-baseline="middle" y="70%">05</text></svg>
</h2>
<a href="service-single.html" class="text-decoration-none">
<h4 class="service-title link-hover-animation-1 d-inline-block">Nutrition
Consultancy</h4>
</a>
<p class="mb-0">Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard............</p>
</div>
</div>
</div>
<!-- swiper-wrapper -->
</div>
<!-- swiper -->
<div class="container">
<div class="service-swiper-pagination-wrapper">
<div class="service-swiper-pagination"></div>
<div class="swiper-button-progress">
<div class="progress-button-prev">
<svg class="arrow-reverse" width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
<div class="progress-button-next">
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section-full-width -->
</section>
<!--Service Section ======================-->
<!--Nutrition Section ======================-->
<section class="section-shop shop-1 section-full-width">
<div class="section-title-wrapper position-relative">
<div class="scroll-move">
<span
class="scrolling-text display-1 fw-extra-bold stroke-title text-stroke stroke-opacity-20 stroke-width-1 stroke-primary lh-1">Nutrition</span>
</div>
<div class="container">
<div class="section-title section-separator">
<h2 class="fw-extra-bold heading-title separator lh-2">Explore <br> Nutrition & Dietatics</h2>
<div class="d-flex flex-column flex-lg-row gap-4 align-items-lg-end justify-content-lg-between">
<p class="fs-6 mb-0 subtitle subtitle-width">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown Lorem Ipsum is simply dummy </p>
<div class="tdweb-button">
<a href="product-single.html" class="btn btn-primary gap-10">View More
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-custom-progress position-relative">
<div class="swiper shop-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv1.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Child Growth Nutrition</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv2.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Meal Planing</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv3.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Nutrition Consultant</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv4.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Employee Wellness </h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
</div>
<!-- swiper-wrapper -->
</div>
<!-- swiper -->
<div class="container">
<div class="shop-swiper-pagination-wrapper">
<div class="shop-swiper-pagination"></div>
<div class="swiper-button-progress">
<div class="progress-button-prev">
<svg class="arrow-reverse" width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
<div class="progress-button-next">
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Nutrition Section ======================-->
<!--Weight Management Section ======================-->
<section class="section-shop shop-1 section-full-width">
<div class="section-title-wrapper position-relative">
<div class="scroll-move">
<span
class="scrolling-text display-1 fw-extra-bold stroke-title text-stroke stroke-opacity-20 stroke-width-1 stroke-primary lh-1">Weight
Management</span>
</div>
<div class="container">
<div class="section-title section-separator">
<h2 class="fw-extra-bold heading-title separator lh-2">Explore <br> Weight Management</h2>
<div class="d-flex flex-column flex-lg-row gap-4 align-items-lg-end justify-content-lg-between">
<p class="fs-6 mb-0 subtitle subtitle-width">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown Lorem Ipsum is simply dummy </p>
<div class="tdweb-button">
<a href="product-single.html" class="btn btn-primary gap-10">View Shop
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-custom-progress position-relative container">
<div class="swiper weight-management-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv1.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Child Growth Nutrition</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv2.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Meal Planing</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv3.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Nutrition Consultant</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
<div class="swiper-slide">
<div class="shop-details">
<div class="shop-image-wrapper position-relative">
<div class="shop-image">
<img src="assets/img/serv4.jpg" class="w-100 h-100 object-fit-cover" alt="img">
</div>
</div>
<!-- shop-image-wrapper -->
<a href="product-single.html" class="text-decoration-none">
<div class="shopping-info-wrapper mt-3 mt-lg-4 d-flex justify-content-between">
<div class="shopping-item-details">
<h5 class="fw-semibold product-title">Employee Wellness </h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry....</p>
</div>
</div>
</a>
</div>
</div>
<!-- swiper-slide-->
</div>
<!-- swiper-wrapper -->
</div>
<!-- swiper -->
<div class="container">
<div class="shop-swiper-pagination-wrapper">
<div class="weight-management-swiper-pagination"></div>
<div class="swiper-button-progress">
<div class="progress-button-prev">
<svg class="arrow-reverse" width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
<div class="progress-button-next">
<svg width="35" height="22" viewbox="0 0 35 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 0.585815L34.4142 10.9999L24 21.4142L22.5858 20L30.5857 12L0 12L2.38419e-07 10L30.5858 10L22.5858 2.00003L24 0.585815Z">
</path>
</svg>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Weight Management Section ======================-->
<!--Organization Section ======================-->
<section class="section-shop shop-1 section-full-width">
<div class="section-title-wrapper position-relative">
<div class="scroll-move">
<span
class="scrolling-text display-1 fw-extra-bold stroke-title text-stroke stroke-opacity-20 stroke-width-1 stroke-primary lh-1">Organizational</span>
</div>
<div class="container">
<div class="section-title section-separator">
<h2 class="fw-extra-bold heading-title separator lh-2">Explore <br> Organizational Services</h2>
<div class="d-flex flex-column flex-lg-row gap-4 align-items-lg-end justify-content-lg-between">