forked from marketingsolver/marketing-solver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1285 lines (1196 loc) · 72.2 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>
<!-- upto 2 directory depth-->
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:type" content="article">
<meta property="og:title" content="Marketing Solver – The World is digital where are you, SEO, Designs & Social Media">
<meta property="og:url" content="https://www.marketingsolver.in">
<meta property="og:site_name" content="marketingsolver.in">
<meta property="og:description" content="Our mission is to craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and trends to drive tangible results.">
<meta property="og:locale" content="en_IN">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Marketing Solver – The World is digital where are you, SEO, Designs & Social Media">
<meta name="twitter:description" content="Our mission is to craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and trends to drive tangible results.">
<meta name="twitter:url" content="https://www.marketinsolver.in">
<meta name="twitter:site" content="">
<title>Marketing Solver – The World is digital where are you, SEO, Designs, Social Media</title>
<meta name="description" content="Welcome to our digital
marketing agency, where our primary goal is to propel your brand to new heights in the online world.
In today's fast-paced digital landscape, standing out amidst the competition requires strategic
vision, innovative techniques, and a deep understanding of consumer behavior. Our mission is to
craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and
trends to drive tangible results. Whether it's enhancing your online presence, increasing brand
visibility, or maximizing ROI, we're dedicated to helping you achieve your objectives and exceed
your expectations. With our expertise and passion for all things digital, let us partner with you on
your journey to digital success.">
<meta name="robots" content="noindex">
<link rel="canonical" href="https://www.marketingsolver.in/">
<meta property="og:locale" content="en_IN">
<meta property="og:type" content="website">
<meta property="og:title" content="Marketing Solver – The World is digital where are you, SEO, Designs & Social Media">
<meta property="og:description" content="Our mission is to craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and trends to drive tangible results.">
<meta property="og:url" content="https://www.marketingsolver.in">
<meta property="og:site_name" content="Marketing Solver: The World is digital where are you, SEO, Designs, Social Media">
<meta property="og:image" content="https://www.marketingsolver.in/#about">
<meta property="og:image:secure_url" content="https://www.marketingsolver.in/#about">
<meta property="og:image:width" content="320">
<meta property="og:image:height" content="526">
<meta property="og:image:alt" content="Marketing Solver">
<meta property="og:image:type" content="image/png">
<meta property="og:video" content="https://www.instagram.com/p/C7dqy0_s0Ip/">
<meta property="video:duration" content="90">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Marketing Solver – The World is digital where are you, SEO, Designs - Social Media">
<meta name="twitter:description" content="Our mission is to craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and trends to drive tangible results.">
<meta name="twitter:site" content="@marketingsolver">
<meta name="twitter:creator" content="@marketingsolver">
<meta name="twitter:image" content="https://www.marketingsolver.in/#about">
<meta name="twitter:label1" content="Written by">
<meta name="twitter:data1" content="Affan">
<meta name="twitter:label2" content="Time to read">
<meta name="twitter:data2" content="Less than a minute">
<meta name="keyword"
content="Marketing Solver, Digital Marketing in Navsari, Digital Navsari, marketing agency,
digital marketing agency, digitalmarketing, digital, marketing, solver, best marketing agency, marketing strategy,digital marketing strategy,
youtube marketing, marketing website, online marketing">
<link rel="icon" href="assets/img/Digital Marketing Agency Favicon.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="crossorigin" />
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;800&display=swap" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;800&display=swap" media="print"
onload="this.media='all'" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;800&display=swap" />
<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=Play:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/aos.css">
</head>
<body id="top">
<div class="preloader position-fixed" id="preloader">
</div>
<header class="bg-light">
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="header-nav" role="navigation">
<div class="container">
<a class="link-dark navbar-brand site-title mb-0" href="#">
<img class="col-12 col-sm-12 col-md-8 col-lg-6" src="assets/img/Digital Marketing Agency brand.gif"
alt="brand">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto me-2">
<li class="nav-item"><a class="nav-link active" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul><a class="btn btn-main rounded-5 col-lg-3 col-md-3 col-sm-4" href="#contact">Get Started</a>
</div>
</div>
</nav>
</header>
<!-- social -->
<div class="card position-fixed bottom-0 end-0 translate-middle rounded-circle">
<div class="background">
</div>
<div class="logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29.667 31.69" class="logo-svg">
<img class="logo-img" src="assets/img/contact.png" alt="contact">
</svg>
</div>
<div class="box box1"><a href="https://www.facebook.com/profile.php?id=61558065225791&mibextid=ZbWKwL"
target="_blank"><span class="icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg">
<path
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z" />
</svg></span></a></div>
<div class="box box2"><a href="https://www.instagram.com/marketingsolver.in" target="_blank"><span class="icon"><svg
viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg" class="svg">
<path
d="M 9.9980469 3 C 6.1390469 3 3 6.1419531 3 10.001953 L 3 20.001953 C 3 23.860953 6.1419531 27 10.001953 27 L 20.001953 27 C 23.860953 27 27 23.858047 27 19.998047 L 27 9.9980469 C 27 6.1390469 23.858047 3 19.998047 3 L 9.9980469 3 z M 22 7 C 22.552 7 23 7.448 23 8 C 23 8.552 22.552 9 22 9 C 21.448 9 21 8.552 21 8 C 21 7.448 21.448 7 22 7 z M 15 9 C 18.309 9 21 11.691 21 15 C 21 18.309 18.309 21 15 21 C 11.691 21 9 18.309 9 15 C 9 11.691 11.691 9 15 9 z M 15 11 A 4 4 0 0 0 11 15 A 4 4 0 0 0 15 19 A 4 4 0 0 0 19 15 A 4 4 0 0 0 15 11 z">
</path>
</svg></span></a></div>
<div class="box box3"><a href="https://wa.link/77ypl1" target="_blank"><span class="icon"><svg
xmlns="http://www.w3.org/2000/svg" class="svg" viewBox="0 0 448 512">
<path
d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" />
</svg></span></a></div>
<div class="box box4"></div>
</div>
<div class="page-content" id="blur">
<div class="page-heading h1 position-absolute start-50 translate-middle-x">Digital Marketing Agency</div>
<div id="content">
<header>
<section class="cover bg-light" id="home">
<div class="container px-2">
<div class="row">
<div class="col-lg-6 z-1">
<div class="mt-5 pt-lg-5">
<h1 class="intro-title marker" data-aos="fade-left" data-aos-delay="50">Your Success is Our Mission.
</h1>
<p class="lead fw-normal mt-4" data-aos="fade-up" data-aos-delay="100">Welcome to our digital
marketing agency, where our primary goal is to propel your brand to new heights in the online world.
In today's fast-paced digital landscape, standing out amidst the competition requires strategic
vision, innovative techniques, and a deep understanding of consumer behavior. Our mission is to
craft bespoke marketing strategies tailored to your unique needs, leveraging the latest tools and
trends to drive tangible results. Whether it's enhancing your online presence, increasing brand
visibility, or maximizing ROI, we're dedicated to helping you achieve your objectives and exceed
your expectations. With our expertise and passion for all things digital, let us partner with you on
your journey to digital success.</p>
<div class="mt-3" data-aos="fade-up" data-aos-delay="200"><a class="btn btn-main mt-1 me-2"
href="#contact">Get Sarted</a></div>
</div>
</div>
<div class="gif col-lg-6 p-3 pe-lg-0" data-aos="fade-left" data-aos-delay="100">
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"></script>
<dotlottie-player src="https://lottie.host/ad72fdf6-4c9a-4fdb-9eb7-19dd3b8a605d/LLbr0SYOif.json"
background="transparent" speed="1" loop autoplay></dotlottie-player>
</div>
</div>
</div>
</section>
<div class="wave-bg">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(255,255,255,0.7)" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.5)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.3)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff" />
</g>
</svg>
</div>
</header>
<section class="section pt-3 pt-lg-5 px-2 px-lg-4" id="about">
<div class="container-narrow">
<div class="text-center mb-4 mt-3">
<h2 class="marker marker-center">Work With Us</h2>
</div>
<div class="text-center">
<p class="mx-auto mb-3" style="max-width:800px">Leverage agile frameworks to provide a robust synopsis for
high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further
the overall value proposition.</p>
</div>
</div>
<div class="container position-relative">
<div class="row py-3">
<div class="position-relative col-md-6 col-lg-3 text-center" data-aos="fade-up" data-aos-delay="100">
<!-- <img class="position-absolute top-50 start-50 translate-middle z-3 col-8 col-lg-3" src="img/youtube template.png" alt="template"> -->
<div class="position-relative rounded-5 p-3 bg-card mb-3" onclick="showTemp()" id="tempButton">
<div class="display-y"></div>
<img class="col-8" src="assets/img/youtube.png" alt="youtube">
<h3 class="h4 mt-2">Youtube Marketing</h3>
</div>
</div>
<div class="col-md-6 col-lg-3 text-center" data-aos="fade-up" data-aos-delay="200">
<div class="position-relative rounded-5 p-3 bg-card mb-3" onclick="showWebTemp()" id="WebtempBtn">
<div class="display-w"></div>
<img class="col-8" src="assets/img/web service.png" alt="youtube">
<h3 class="h4 mt-2">Web Services</h3>
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="position-relative rounded-5 p-3 bg-card mb-3" onclick="showFaceTemp()" id="FacetempBtn">
<div class="display-f"></div>
<img class="col-8" src="assets/img/facebook meta.png" alt="facebook">
<h3 class="h4 mt-2">Facebook Meta</h3>
</div>
</div>
<div class="col-md-6 col-lg-3 text-center" data-aos="fade-up" data-aos-delay="400">
<div class="position-relative rounded-5 p-3 bg-card mb-3" onclick="showSEOTemp()" id="SEOtempBtn">
<div class="display-s"></div>
<img class="col-8" src="assets/img/google ads.png" alt="seo">
<h3 class="h4 mt-2">SEO Strategy</h3>
</p>
</div>
</div>
</div>
<!-- Template POPUP Code -->
<!-- You Tube Template -->
<div class="yt_temp position-absolute top-50 start-50 translate-middle" id="yt_temp">
<div
class="col-10 col-lg-8 col-md-4 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible"
id="ytpopup"><button
class="close-btn col-12 text-light position-absolute top-50 start-50 translate-middle"
onclick="closeTemp()" id="closeTemptn">
<img class="col-12 col-lg-3 position-absolute top-50 start-50 translate-middle"
src="assets/img/youtube template.png" alt="temp">
</button>
</div>
</div>
<!-- Web Services Template -->
<div class="web_temp position-absolute top-50 start-50 translate-middle" id="web_temp">
<div
class="col-10 col-lg-8 col-md-4 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible"
id="webpopup"><button
class="close-btn col-12 text-light position-absolute top-50 start-50 translate-middle"
onclick="closeWebTemp()" id="closeWebbtn">
<img class="col-12 col-lg-3 position-absolute top-50 start-50 translate-middle"
src="assets/img/web-temp.png" alt="temp">
</button>
</div>
</div>
<!-- Facebook Met Template -->
<div class="face_temp position-absolute top-50 start-50 translate-middle" id="face_temp">
<div
class="col-10 col-lg-8 col-md-4 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible"
id="facepopup"><button
class="close-btn col-12 text-light position-absolute top-50 start-50 translate-middle"
onclick="closeFaceTemp()" id="closeFacebtn">
<img class="col-12 col-lg-3 position-absolute top-50 start-50 translate-middle"
src="assets/img/meta-temp.png" alt="temp">
</button>
</div>
</div>
<!-- SEO Strategy Template -->
<div class="seo_temp position-absolute top-50 start-50 translate-middle" id="seo_temp">
<div
class="col-10 col-lg-8 col-md-4 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible"
id="seopopup"><button
class="close-btn col-12 text-light position-absolute top-50 start-50 translate-middle"
onclick="closeSEOTemp()" id="closeSEObtn">
<img class="col-12 col-lg-3 position-absolute top-50 start-50 translate-middle"
src="assets/img/ads-temp.png" alt="temp">
</button>
</div>
</div>
</div>
<div class="container">
<div class="row py-3 py-lg-5">
<div class="gif col-lg-6 col-md-5 order-md-last" data-aos="fade-zoom-in" data-aos-delay="50"
data-aos-easing="ease-in-back">
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"></script>
<dotlottie-player src="https://lottie.host/6c6d1a37-e1d9-49ee-9380-fc2866dc8369/sjLGWHx2XT.json"
background="transparent" speed="1" loop autoplay></dotlottie-player>
</div>
<div class="col-lg-6 col-md-12 px-2" data-aos="zoom-in" data-aos-delay="100">
<div class="h3 mb-2">Let our <strong>Agile Team</strong> understand and serve your needs.</div>
<p class="text-secondary mb-3"> Our team embodies this spirit of collaboration, thriving on the synergy
created when diverse talents unite towards a common goal. In our team, every member is valued for their
distinct contributions. We recognize that each person brings something special to the table, whether
it's
their expertise in a particular area, their creativity in problem-solving, or their ability to motivate
and inspire others.</p>
<div class="row">
<div class="col-lg-6 mb-2">
<div class="border border-3 rounded px-2 py-2 d-flex align-items-center">
<div class="badge rounded-circle me-2"><span class="material-symbols-outlined">
check
</span></div>
<div class="text-secondary fw-bold">Active Colloboration</div>
</div>
</div>
<div class="col-lg-6 mb-2">
<div class="border border-3 rounded px-2 py-2 d-flex align-items-center">
<div class="badge rounded-circle me-2"><span class="material-symbols-outlined">
check
</span></div>
<div class="text-secondary fw-bold">On-Schedule Delivery</div>
</div>
</div>
<div class="col-lg-6 mb-2">
<div class="border border-3 rounded px-2 py-2 d-flex align-items-center">
<div class="badge rounded-circle me-2"><span class="material-symbols-outlined">
check
</span></div>
<div class="text-secondary fw-bold">After Sales Services</div>
</div>
</div>
<div class="col-lg-6 mb-2">
<div class="border border-3 rounded px-2 py-2 d-flex align-items-center">
<div class="badge rounded-circle me-2"><span class="material-symbols-outlined">
check
</span></div>
<div class="text-secondary fw-bold">24x7 On-Support</div>
</div>
</div>
</div>
</div>
</div>
<div class="row py-3 py-lg-5">
<div class="gif col-lg-6 col-md-5" data-aos="fade-zoom-in" data-aos-delay="50"
data-aos-easing="ease-in-back">
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"></script>
<dotlottie-player src="https://lottie.host/0cb48712-03be-4222-9c9e-15510d92ca61/I5vc5p5ES1.json"
background="transparent" speed="1" loop autoplay></dotlottie-player>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 px-3 py-5" data-aos="zoom-in" data-aos-delay="100">
<div class="col-12 px-2" data-aos="zoom-in" data-aos-delay="100">
<div class="h3 mb-2">We believe in <strong>Long Term Partnership</strong>.</div>
<p class="text-secondary mb-3">In today's fast-paced business landscape, where trends evolve at
lightning
speed and competition is fierce, the value of forging enduring partnerships cannot be overstated. At
marketingsolver.in, we firmly believe that cultivating long-term relationships with our clients,
suppliers, and stakeholders is fundamental to mutual success and sustained growth.</p>
<p class="text-secondary mb-3">At marketingsolver.in we are driven by a shared commitment to value
creation. We believe that by focusing on long-term partnerships, we can unlock new opportunities,
mitigate risks, and adapt to changing market dynamics more effectively. Whether it's through joint
product development, strategic alliances, or shared resources, we are dedicated to maximizing the
value
we deliver to our partners and helping them achieve their long-term objectives.</p>
</div>
</div>
</div>
</div>
</section>
<section class="wave position-relative" id="services">
<div class="wave-bg wave-top">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" fill="#2c8cffb2" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="#2c8cff80" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="#2c8cff4d" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#2c8cff" />
</g>
</svg>
</div>
<div class="section bg-light py-3 py-lg-5 px-2 px-lg-4 position-relative">
<div class="container-narrow">
<div class="text-center mb-5 mt-5">
<h2 class="marker marker-center">Our Services</h2>
</div>
<div class="text-center">
<p class="mx-auto mb-3" style="max-width:800px">Our digital marketing services are designed to elevate
your
online presence and drive measurable results in today's dynamic digital landscape. Whether you're
looking
to increase brand awareness, generate leads, or boost sales, we offer a comprehensive suite of solutions
tailored to meet your unique needs and goals.</p>
</div>
<div class="row py-3">
<div class="col-lg-3 col-md-6 col-sm-4 text-center mb-3" data-aos="fade-up" data-aos-delay="100">
<div class="bg-white col-5 border rounded-circle d-inline-block p-2"><img class="col-12"
src="assets/img/youtube-2.png" alt="web design" /></div>
<div class="bg-white rounded-5 service-content p-3 mt-n4">
<div class="h5 mt-3">Youtube Marketing</div>
<p class="text-small">Digital marketing strategy that involves using the YouTube platform to promote
products, services, brands, or messages to a targeted audience.</p>
<button class="btn-main px-2 rounded-5" onclick="showPopup()" id="popupButton">Learn More</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-4 text-center mb-3" data-aos="fade-up" data-aos-delay="200">
<div class="bg-white col-5 border rounded-circle d-inline-block p-2"><img class="col-12"
src="assets/img/web service-2.png" alt="web design" /></div>
<div class="bg-white rounded-5 service-content p-3 mt-n4">
<div class="h5 mt-3">Web Services</div>
<p class="text-small"> Its integral components of digital marketing strategies aimed at establishing a
strong online presence. Web design involves the creation</p>
<button class="btn-main px-2 rounded-5" onclick="openPopup()" id="openButton">Learn More</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-4 text-center mb-3" data-aos="fade-up" data-aos-delay="300">
<div class="bg-white col-5 border rounded-circle d-inline-block p-2"><img class="col-12"
src="assets/img/meta.png" alt="Meta Campaigns" /></div>
<div class="bg-white rounded-5 service-content p-3 mt-n4">
<div class="h5 mt-3">Meta Campaigns</div>
<p class="text-small"> Refer to advertising campaigns run on the platforms owned by Meta Platforms,
formerly known as Facebook.</p><button class="btn-main px-2 rounded-5" onclick="openMeta()"
id="openMetaBtn">Learn More</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-4 text-center mb-3" data-aos="fade-up" data-aos-delay="300">
<div class="bg-white col-5 border rounded-circle d-inline-block p-2"><img class="col-12"
src="assets/img/ad-2.png" alt="ui-ux" /></div>
<div class="bg-white rounded-5 service-content p-3 mt-n4">
<div class="h5 mt-3">SEO Strategy</div>
<p class="text-small">Powerful digital marketing platform that allows businesses to create and manage
online advertisements.</p><button class="btn-main px-2 rounded-5" onclick="openSeo()"
id="openSEOBtn">Learn More</button>
</div>
</div>
</div>
</div>
<!-- POPUP Meassage Section -->
<!-- YouTube Marketing PopUp Box Open -->
<div class="popup position-absolute top-50 start-50 translate-middle" id="popup">
<div
class="popup-box col-lg-8 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible"
id="ytpopup">
<button class="close-btn text-light fs-1 position-absolute end-0 translate-middle" onclick="closePopup()"
id="closeButton"><i class="fa-solid fa-xmark" style="color: #ff0000;"></i></button>
<div class="d-lg-flex justify-content-between">
<div class="media-content col-lg-6 col-12" style="color: #ff0000;">
<div
class="media-cover position-relative top-0 start-50 translate-middle-x col-lg-6 col-4 rounded-circle p-2"
style="border: 5px solid #ff0000;">
<img class="col-8" src="assets/img/youtube.png" alt="">
<p class="col-12 text-center" style="color: #ff0000; font-weight: bold;">YouTube Marketing</p>
</div>
<ul class="pt-2">
<li><i class="fa-solid fa-check"></i> Views</li>
<li><i class="fa-solid fa-check"></i> Subscriber Growth</li>
<li><i class="fa-solid fa-check"></i> Comments, Likes & Shares</li>
<li><i class="fa-solid fa-check"></i> Sales Generated through Youtube</li>
<li><i class="fa-solid fa-check"></i> Leads Generated through Youtube</li>
<li><i class="fa-solid fa-check"></i> Website Traffic Generated through Youtube</li>
<li><i class="fa-solid fa-check"></i> Average Watch Time</li>
</ul>
</div>
<div class="text-content col-lg-6 col-12">
<p class="pop-para rounded-5 p-3" style="color: #ffffff; background: #ff0000;">Digital marketing
strategy that involves using the YouTube platform to promote products, services, brands, or messages
to a targeted audience. It encompasses various techniques and tactics to optimize content
visibility, engagement, and conversion on YouTube<br> our expert team shoot your product video
professionally & refers to the strategic process of crafting engaging and relevant multimedia
content to attract and retain a target audience online. This content can take various forms,
including videos, images, shorts video (Reels) , and social media posts, tailored to suit different
platforms and mediums. The goal of content creation is to connect with audiences on a deeper level,
fostering brand awareness, loyalty, and ultimately driving desired actions such as purchases or
subscriptions.
</p>
</div>
</div>
</div>
</div>
<!-- Web Services PopUp Box Open -->
<div class="popup web_serv position-absolute top-50 start-50 translate-middle" id="web_serv">
<div
class="popup-box col-lg-8 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible">
<button class="close-btn text-light fs-1 position-absolute end-0 translate-middle" onclick="closeWeb()"
id="closeBtn"><i class="fa-solid fa-xmark" style="color: #00c210;"></i></button>
<div class="d-lg-flex justify-content-between">
<div class="media-content col-lg-6 col-12" style="color: #00c210;">
<div
class="media-cover position-relative top-0 start-50 translate-middle-x col-lg-6 col-4 rounded-circle p-2"
style="border: 5px solid #00c210;">
<img class="col-8" src="assets/img/chrome.png" alt="">
<p class="col-12 text-center" style="color: #00c210; font-weight: bold;">Web Services</p>
</div>
<ul class="pt-2">
<li><i class="fa-solid fa-check"></i> UI/UX Design</li>
<li><i class="fa-solid fa-check"></i> Wordpress Web Design</li>
<li><i class="fa-solid fa-check"></i> E-commerce Website</li>
<li><i class="fa-solid fa-check"></i> Personal Website</li>
</ul>
</div>
<div class="text-content col-lg-6 col-12">
<p class="pop-para rounded-5 p-3" style="color: #ffffff; background: #00c210;">Its integral components
of digital marketing strategies aimed at establishing a strong online presence.
Web design involves the creation and layout of a website, encompassing its visual aesthetics,
functionality, and user experience. This includes elements such as graphic design, navigation
structure, and content placement, all tailored to engage and retain visitors. Effective web design
ensures that
a website not only looks appealing but also functions seamlessly across various devices and
browsers.
<br>
website creation services involve the technical implementation of the design, turning concepts into
a fully functional website. This process typically includes coding, database integration, and
content
management system (CMS) setup. Website creation services ensure that the design vision is translated
into a functioning digital platform that meets the specific needs and goals of the business or
brand.
</p>
</div>
</div>
</div>
</div>
<!-- Meta Campaigns PopUp Box Open -->
<div class="popup meta_camp position-absolute top-50 start-50 translate-middle" id="meta_camp">
<div
class="popup-box col-lg-8 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible">
<button class="close-btn text-light fs-1 position-absolute end-0 translate-middle" onclick="closeMeta()"
id="closeMeta"><i class="fa-solid fa-xmark" style="color: #134be1;"></i></button>
<div class="d-lg-flex justify-content-between">
<div class="media-content col-lg-6 col-12" style="color: #134be1;">
<div
class="media-cover position-relative top-0 start-50 translate-middle-x col-lg-6 col-4 rounded-circle p-2"
style="border: 5px solid #134be1;">
<img class="col-8" src="assets/img/facebook meta.png" alt="">
<p class="col-12 text-center" style="color: #134be1; font-weight: bold;">Meta Campaigns</p>
</div>
<ul class="pt-2">
<li><i class="fa-solid fa-check"></i> Instagram Paid Ads</li>
<li><i class="fa-solid fa-check"></i> Facebook Paid Ads</li>
<li><i class="fa-solid fa-check"></i> WhatsApp Paid Ads</li>
</ul>
</div>
<div class="text-content col-lg-6 col-12">
<p class="pop-para rounded-5 p-3" style="color: #ffffff; background: #134be1;"> Refer to advertising
campaigns run on the platforms owned by Meta Platforms, formerly known as
Facebook. These campaigns primarily utilize the advertising tools provided by Meta, including
Facebook, Instagram, WhatsApp Messenger, and Audience Network. Meta ads campaigns allow advertisers
to target
specific demographics, interests, and behaviors of users, leveraging the vast amount of data
collected by Meta platforms. Advertisers can create various ad formats such as image ads, video ads,
carousel
ads, and more, tailored to their marketing objectives. These campaigns offer robust targeting
options,
allowing advertisers to reach their desired audience with precision and efficiency. Additionally,
Meta provides comprehensive analytics and reporting tools to track the performance of ads, enabling
advertisers to optimize their campaigns for better results. Overall, Meta ads campaigns play a
significant role in digital marketing strategies, offering advertisers a powerful platform to
connect with your target audience and achieve your business goals
</p>
</div>
</div>
</div>
</div>
<!-- SEO Strategy PopUp Box Open -->
<div class="popup seo_start position-absolute top-50 start-50 translate-middle" id="seo_start">
<div
class="popup-box col-lg-8 rounded-5 p-lg-5 p-2 p-md-4 p-sm-3 text-light position-absolute top-50 start-50 translate-middle overflow-visible">
<button class="close-btn text-light fs-1 position-absolute end-0 translate-middle" onclick="closeSeo()"
id="closeSeo"><i class="fa-solid fa-xmark" style="color: #fcbc01;"></i></button>
<div class="d-lg-flex justify-content-between">
<div class="media-content col-lg-6 col-12" style="color: #fcbc01;">
<div
class="media-cover position-relative top-0 start-50 translate-middle-x col-lg-6 col-4 rounded-circle p-2"
style="border: 5px solid #fcbc01;">
<img class="col-8" src="assets/img/google ads.png" alt="">
<p class="col-12 text-center" style="color: #fcbc01; font-weight: bold;">SEO Strategy</p>
</div>
<ul class="pt-2">
<li><i class="fa-solid fa-check"></i> Reach Your Marketing Goals</li>
<li><i class="fa-solid fa-check"></i> Target Your Ads with Keywords</li>
<li><i class="fa-solid fa-check"></i> Get Specific About Your Target Audience</li>
<li><i class="fa-solid fa-check"></i> Only Pay for Results</li>
<li><i class="fa-solid fa-check"></i> Measure Your Ads Performance</li>
<li><i class="fa-solid fa-check"></i> Advertise Across Platforms</li>
</ul>
</div>
<div class="text-content col-lg-6 col-12">
<p class="pop-para rounded-5 p-3" style="color: #ffffff; background: #fcbc01;"> powerful digital
marketing platform that allows businesses to create and manage online advertisements.
It operates on a pay-per-click (PPC) model, where advertisers bid on keywords relevant to their
target audience. When users search for those keywords on Google, the ads appear at the top or bottom
of the
search results page, labeled as "Ad." Additionally, Google Ads offers display advertising, where ads
appear on websites within Google's extensive network, as well as video advertising on YouTube. The
platform provides robust targeting options, allowing advertisers to reach specific demographics,
locations, and interests. With its tracking and analytics tools, Google Ads enables advertisers to
measure the performance of their campaigns in real-time and optimize them for better results.
Overall, Google Ads is a vital tool for businesses looking to increase Your online visibility, drive
website
traffic, and generate leads or sales.
</p>
</div>
</div>
</div>
</div>
<div class="review position-relative">
<div class="text-center mb-5 mt-5">
<h2 class="marker marker-center">Rank Our Services</h2>
</div>
<img class="col-lg-5 col-md-7 col-12 position-relative translate-middle-x start-50" src="assets/img/marketingsolver.in review.gif">
</div>
</div>
</section>
<section>
<div class="wave-bg" id="plan">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(255,255,255,0.7)" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.5)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.3)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff" />
</g>
</svg>
</div>
<div class="row">
<div class="container-fluid">
<div class="text-center mb-5">
<h2 class="marker marker-center">Our Plans</h2>
</div>
<div class="container position-relative">
<div class="row price-table">
<div class="col-sm-6 col-md-4 card-bg ">
<div class="price-card text-center">
<div class="title">
<i class="fa fa-solid fa-lightbulb" aria-hidden="true"></i>
<h2>Basic</h2>
</div>
<div class="price">
<h4><sup>₹</sup>4999</h4>
</div>
<div class="option">
<ul>
<li> <i class="fa-solid fa-chevron-right"></i> Social Media Management
<ul class="sublist">
<li>25 graphics post</li>
<li>5+5 Reels with editing</li>
<li>Paid Ads [500/- per Ad]</li>
</ul>
</li>
<li> <i class="fa-solid fa-chevron-right"></i> Wordpress Website</li>
<li> <i class="fa-solid fa-chevron-right"></i> Update your old Website </li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 card-bg">
<div class="price-card text-center">
<div class="title">
<i class="fa fa-solid fa-star" aria-hidden="true"></i>
<h2>Standard</h2>
</div>
<div class="price">
<h4><sup>₹</sup>9999</h4>
</div>
<div class="option">
<ul>
<li> <i class="fa-solid fa-chevron-right"></i> Social Media Management
<ul class="sublist">
<li>75 graphics post</li>
<li>15+15 Reels with editing</li>
<li>Paid Ads [500/- per Ad]</li>
</ul>
</li>
<li> <i class="fa-solid fa-chevron-right"></i> Wordpress Website</li>
<li> <i class="fa-solid fa-chevron-right"></i> Update your old Website </li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 card-bg">
<div class="price-card text-center">
<div class="title">
<i class="fa fa-solid fa-crown" aria-hidden="true"></i>
<h2>Premium</h2>
</div>
<div class="price">
<h4><sup>₹</sup>29999</h4>
</div>
<div class="option">
<ul>
<li> <i class="fa-solid fa-chevron-right"></i> Basic + Standard Service </li>
<li> <i class="fa-solid fa-chevron-right"></i> Annual Analytics Report</li>
<li> <i class="fa-solid fa-chevron-right"></i> Google Ads [Paid Ads as per your cost] </li>
<li> <i class="fa-solid fa-chevron-right"></i> Social Media Calender</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section py-5 px-2 px-lg-4" id="portfolio">
<div class="container">
<div class="text-center mb-5 mt-3">
<h2 class="marker marker-center">What We Have Done</h2>
</div>
<div class="grid bp-gallery pb-3" data-aos="zoom-in-up" data-aos-delay="100">
<div class="grid-sizer"></div>
<div class="grid-item"><a href="https://marketingsolver.in">
<figure class="portfolio-item rounded-5"><img src="assets/img/marketingsolver.in.png"
data-bp="images/portfolio/1.jpg" />
<figcaption>
<h4 class="h5 mb-0">Web Design</h4>
<div>marketingsolver.in</div>
</figcaption>
</figure>
</a></div>
<!-- <div class="grid-item"><a href="https://github.com">
<figure class="portfolio-item"><img src="images/portfolio/2-small.png" data-bp="images/portfolio/2.jpg"
data-caption="Example of an optional caption." />
<figcaption>
<h4 class="h5 mb-0">Web Development</h4>
<div>GitHub.com</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://soundcloud.com/">
<figure class="portfolio-item"><img src="images/portfolio/3-small.png" data-bp="images/portfolio/3.jpg"
data-caption="Example of an optional caption." />
<figcaption>
<h4 class="h5 mb-0">Audio Mixing</h4>
<div>Soundcloud.com</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://www.adobe.com/">
<figure class="portfolio-item"><img src="images/portfolio/4-small.png"
data-bp="images/portfolio/4.jpg" />
<figcaption>
<h4 class="h5 mb-0">Video Editing</h4>
<div>Adobe After Effects</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://www.adobe.com/">
<figure class="portfolio-item"><img src="images/portfolio/5-small.png"
data-bp="images/portfolio/5.jpg" />
<figcaption>
<h4 class="h5 mb-0">Photography</h4>
<div>Adobe Photoshop</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://www.android.com/">
<figure class="portfolio-item"><img src="images/portfolio/6-small.png"
data-bp="images/portfolio/6.jpg" />
<figcaption>
<h4 class="h5 mb-0">App Development</h4>
<div>Android</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://flutter.dev/">
<figure class="portfolio-item"><img src="images/portfolio/7-small.png"
data-bp="images/portfolio/7.jpg" />
<figcaption>
<h4 class="h5 mb-0">App Design</h4>
<div>Flutter</div>
</figcaption>
</figure>
</a></div>
<div class="grid-item"><a href="https://flutter.dev/">
<figure class="portfolio-item"><img src="images/portfolio/8-small.png"
data-bp="images/portfolio/8.jpg" />
<figcaption>
<h4 class="h5 mb-0">App Development</h4>
<div>Flutter</div>
</figcaption>
</figure>
</a></div> -->
</div>
</div>
</section>
<section class="section py-5 px-2 px-lg-4" id="portfolio">
<div class="container">
<div class="text-center mb-5 mt-3">
<h2 class="marker marker-center">Our Happy Clients</h2>
</div>
<div class="grid bp-gallery pb-3" data-aos="zoom-in-up" data-aos-delay="100">
<div class="grid-sizer"></div>
<div class="grid-item col-2"><a href="https://marketingsolver.in">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/election.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a></div>
<div class="grid-item col-2"><a target="_blank" href="http://www.rsrsecurity.com/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/fav3.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.mbgohilphysiocollege.com/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/banner1.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.ssischool.net/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/swami narayan school logo.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/dr_shashankpatel/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/thousand smiles care logo.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/glamour_familysalonandacademy/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Galmour Logo 2.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.saaralheartcenter.com/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/saaral-transformed - Edited.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/navsari.360/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/NAVSARI.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/avsar__events9/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Avsar-logo.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/comprehensive_care_centre/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Teal and White Modern Physiotherapy Clinic Instagram Post.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="#">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Green Minimal Steps to Improve Life Instagram Carousel Post.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/newimagepointradiologycenter/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Blue White Modern Computer Service Instagram Post.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/jalaramnamkeen/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/jalaram.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/new_jawahar_restaurant/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/jawahar logo.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/thedentalhousenavsari/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/y (Instagram Profile Picture) (3).jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/jpbiscuitbakery1983/">
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/jp logo.png"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/arts_commerce_college_navsari/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/456605847_122102428610485020_3056857351705748813_n.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/kejal_lifein_hospital/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/456487349_1544921702766683_3746882178480253771_n.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/nilkanth_restaurant_navsari/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Nilkanth.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/kwality_holidays_/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/kwality.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/s.s.medicorp/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/S S Medicorp SEO 2024 (Instagram Post).jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/cmkhabitatcentre/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/Untitled design.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/dr.dhaptes/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/unnamed.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/blush_unisex_salon_/"></a>
<figure class="clients col-8 portfolio-item rounded-5 start-50 translate-middle-x"><img src="assets/img/blush.jpg"
data-bp="images/portfolio/1.jpg" />
</figure>
</a>
</div>
<div class="grid-item col-2"><a target="_blank" href="https://www.instagram.com/dc_salon_/"></a>