-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1009 lines (947 loc) · 77.4 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>
<title>Prajna Prep: Coaching for CAT GRE IELTS GMAT XAT MAT TOEFL PTE CLAT AILET SAT NIMCET NDA coaching in Bhubaneswar</title>
<!-- Meta -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="PrajnaPrep">
<meta name="theme-color" content="#008080">
<meta name='description' content='#1 coaching for CAT, CLAT, NIMCET, GRE, IELTS, GMAT, XAT, MAT, TOEFL, PTE, AILET, NDA in Bhubaneswar. Enroll in our test prep courses today'>
<meta name='keywords' content='CAT coaching, MBA coaching, GRE coaching, IELTS Coaching, GMAT Coaching, GRE test prep, IELTS prep, MAT coaching, XAT coaching, TOEFL coaching, PTE coaching, CLAT coaching, AILET coaching, LAW Coaching, IPM, BBA, SAT, SNAP, CMAT, MBA Admission, NIMCET, NDA, CRT, PPT, corporate training, Bhubaneswar'>
<!-- Favicon -->
<link rel="icon" href="static/favicon.svg">
<link href="css/dist/style.css" rel="stylesheet">
<!-- Poppins font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Questrial:wght@400;700&display=swap">-->
</head>
<body class="antialiased bg-primary min-w-[320px]">
<!--<div class="w-full text-dark bg-white">-->
<!-- <div class="flex flex-col max-w-screen-xl px-8 mx-auto md:items-center md:justify-between md:flex-row">-->
<!-- <div class="flex flex-row items-center justify-between py-6">-->
<!-- <div class="relative">-->
<!-- navbar -->
<nav class="top-0 z-40 flex flex-wrap items-center justify-between w-full tracking-wide bg-white text-dark shadow-md bg-opacityXXX-90 px-6 md:px-20 lg:px-5 xl:px-16 2xl:px-48 py-2 rounded-lg whitespace-nowrap">
<!-- ... other parts of your nav ... -->
<div class="relative">
<a class="" href="/index.html">
<img id="logo-header" width="200" height="76" src="static/logo.svg" alt="PP Logo">
</a>
</div>
<!-- <span class="mr-1" :class="isPostgraduate0pen ? 'text-teal-900 italic': ''">Postgraduate</span>-->
<!-- Small screen hamburger menu -->
<div class="block text-gray-600 cursor-pointer lg:hidden p-2">
<div id="blivHamburger" class="text-gray-500 w-10 h-10 relative focus:outline-none bg-gray-100">
<span class="sr-only">Open main menu</span>
<div class="menu-icon block w-5 absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2">
<span aria-hidden="true" class="menu-line block absolute h-0.5 w-5 bg-current transform transition duration-500 ease-in-out -top-2"></span>
<span aria-hidden="true" class="menu-line block absolute h-0.5 w-5 bg-current transform transition duration-500 ease-in-out top-0"></span>
<span aria-hidden="true" class="menu-line block absolute h-0.5 w-5 bg-current transform transition duration-500 ease-in-out top-2"></span>
</div>
</div>
</div>
<!-- Small screen menu -->
<div id="menuTab" class="relative w-full overflow-hidden transition-all duration-700 lg:hidden max-h-0">
<div class="flex flex-col my-3 space-y-2 text-lg text-gray-600">
<!-- Postgraduate small screen tab -->
<button class="toggleButton text-left" data-target="postgraduateContent">
<span>Postgraduate</span>
</button>
<div id="postgraduateContent" class="contentDiv relative w-full overflow-hidden transition-all duration-700 lg:hidden max-h-0">
<div class="flex flex-row mb-4">
<div class="w-1/2 px-1 py-1">
<div class="divide-y-4 divide-slate-800/20 px-2">
<div>
<span class="block px-1 py-1 text-gray-400 text-sm font-bold">Study in India</span>
</div>
<div class="flex flex-col">
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">CAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">CMAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">XAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">NIMCET</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">Other Tests</a>
</div>
</div>
</div>
<div class="w-1/2 px-1 py-1">
<div class="divide-y-4 divide-slate-800/20 px-2">
<div>
<span class="block px-1 py-1 text-gray-400 text-sm font-bold">Study Abroad</span>
</div>
<div>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">GMAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">GRE</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">TOEFL</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">IELTS</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">PTE</a>
</div>
</div>
</div>
</div>
</div>
<hr>
<!-- Undergraduate small screen tab -->
<button class="toggleButton text-left" data-target="undergraduateContent">
<span>Undergraduate</span>
</button>
<div id="undergraduateContent" class="contentDiv relative w-full overflow-hidden transition-all duration-700 lg:hidden max-h-0">
<div class="flex flex-row mb-4">
<div class="w-1/2 px-1 py-1">
<div class="divide-y-4 divide-slate-800/20 px-2">
<div>
<span class="block px-1 py-1 text-gray-400 text-sm font-bold">Study in India</span>
</div>
<div class="flex flex-col">
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">CLAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">BBA</a>
</div>
</div>
</div>
<div class="w-1/2 px-1 py-1">
<div class="divide-y-4 divide-slate-800/20 px-2">
<div>
<span class="block px-1 py-1 text-gray-400 text-sm font-bold">Study Abroad</span>
</div>
<div>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">SAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">LSAT</a>
<a href="#" class="block px-2 md:px-6 py-2 font-bold text-gray-600 underline underline-offset-4 decoration-teal-600 decoration-2">ACT</a>
</div>
</div>
</div>
</div>
</div>
<hr>
<button class="text-left"><span>CRT</span></button>
<hr>
<button class="text-left"><span>College Admissions</span></button>
</div>
</div>
<!-- Large screen menu -->
<div class="hidden w-full lg:flex lg:items-center lg:w-auto">
<!-- Large screen menu items -->
<div class="items-center flex-1 justify-center text-lg lg:pt-0 list-reset lg:flex">
<!-- Postgraduate Menu -->
<div class="relative inline-block px-2 menu">
<button bliv-toggle="dropdown" bliv-target="postgraduateDPD" class="flex items-center p-2 rounded-md text-dark">
<span class="mr-1">Postgraduate</span>
<span class="arrow transition-transform duration-500 transform">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"/>
</svg>
</span>
</button>
<div id="postgraduateDPD" class="hidden absolute left-0 py-3 text-dark bg-white rounded-lg shadow-xl min-w-max border-2 border-grey-300 z-40">
<!-- Postgraduate Menu Content -->
<div class="grid grid-cols-2 divide-x">
<div class="divide-y-4 divide-slate-800/25 px-8">
<div>
<span class="block px-4 py-1 text-gray-400 text-sm font-bold">Study in India</span>
</div>
<div>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">CAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">CMAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">XAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">NIMCET</a>
<a href="#" class="block pl-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">Other Tests</a>
</div>
</div>
<div class="divide-y-4 divide-slate-800/25 px-8">
<div>
<span class="block px-4 py-1 text-gray-400 text-sm font-bold">Study Abroad</span>
</div>
<div>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">GMAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">GRE</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">TOEFL</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">IELTS</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">PTE</a>
</div>
</div>
</div>
</div>
</div>
<!-- Undergraduate Menu -->
<div class="relative inline-block px-2 menu">
<button bliv-toggle="dropdown" bliv-target="undergraduateDPD" class="flex items-center p-2 rounded-md text-dark">
<span class="mr-1">Undergraduate</span>
<span class="arrow transition-transform duration-500 transform">
<svg class="w-4 h-4 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"/>
</svg>
</span>
</button>
<div id="undergraduateDPD" class="hidden z-40 absolute left-0 py-3 text-dark bg-white rounded-lg shadow-xl min-w-max border-2 border-grey-300">
<!-- Undergraduate Menu Content -->
<div class="grid grid-cols-2 divide-x">
<div class="divide-y-4 divide-slate-800/25 px-8">
<div>
<span class="block px-4 py-1 text-gray-400 text-sm font-bold">Study in India</span>
</div>
<div>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">CLAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">BBA</a>
</div>
</div>
<div class="divide-y-4 divide-slate-800/25 px-8">
<div>
<span class="block px-4 py-1 text-gray-400 text-sm font-bold">Study Abroad</span>
</div>
<div>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">SAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">LSAT</a>
<a href="#" class="block px-4 py-1 text-gray-800 hover:text-gray-900 hover:font-bold hover:bg-gray-100">ACT</a>
</div>
</div>
</div>
</div>
</div>
<div class="block px-2">
<a href="#" class="relative inline-block transition transform hover:-translate-y-1 text-gray-800 hover:text-teal-900 hover:italic">CRT</a>
</div>
<div class="block px-4">
<a href="#" class="relative inline-block transition transform hover:-translate-y-1 text-gray-800 hover:text-teal-900 hover:italic">College Admissions</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="w-full text-dark bg-white">
<div class="max-w-screen-xl px-8 mx-auto flex flex-col lg:flex-row items-start md:px-20 lg:px-1">
<!--Left Col-->
<div class="flex flex-col w-full lg:w-6/12 justify-center md:pt-10 xl:pt-24 items-start text-center mb-5 md:mb-0">
<h1 class="my-4 text-3xl md:text-5xl leading-10 md:leading-[3.5rem] text-center text-secondary font-bold">
<span class="text-primary">Prepare with us for the big leap in your career!</span>
</h1>
<p class="pt-6 text-sm md:text-2xl mb-8 text-center font-semibold">The <span class="text-primary font-semibold">#1</span> exam Coaching in Bhubaneswar, that gets you all ready to score your best on a test.</p>
</div>
<!--Right Col-->
<div class="w-full px-8 py-8 lg:w-6/12 relative" id="girl">
<!-- Removed from above lg:-mt-10 -->
<img class="mx-auto 2xl:-mb-20 max-w-md py-12" src="static/slide3.svg" />
<!-- Google Rating -->
<div class="absolute -top-4 -left-1 sm:top-12 md:top-20 md:left-16 lg:-left-0 lg:top-52 floating-4 text-dark text-sm font-semibold">
<!-- <img class="bg-white bg-opacity-80 rounded-lg h-12 sm:h-16" src="img/calendar.svg"> -->
<a target="_blank" href="https://www.google.com/maps/place/Prajna+Prep/@20.2943826,85.8438313,21z/data=!4m6!3m5!1s0x3a1909f7be97cf1b:0xbb7d18e383b540e4!8m2!3d20.2943068!4d85.8439379!16s%2Fg%2F11c32kndzb?entry=ttu">
<div>
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
Rated 4.9 stars on
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="30" viewbox="0 0 30 60"><path d="M32.377 26.446h-12.52v3.715h8.88c-.44 5.2-4.773 7.432-8.865 7.432a9.76 9.76 0 0 1-9.802-9.891c0-5.624 4.354-9.954 9.814-9.954 4.212 0 6.694 2.685 6.694 2.685l2.6-2.694s-3.34-3.717-9.43-3.717c-7.755 0-13.754 6.545-13.754 13.614 0 6.927 5.643 13.682 13.95 13.682 7.307 0 12.656-5.006 12.656-12.408 0-1.562-.227-2.464-.227-2.464z" fill="#4885ed"/><use xlink:href="#A" fill="#db3236"/><use xlink:href="#A" x="19.181" fill="#f4c20d"/><path d="M80.628 23.765c-4.716 0-8.422 4.13-8.422 8.766 0 5.28 4.297 8.782 8.34 8.782 2.5 0 3.83-.993 4.8-2.132v1.73c0 3.027-1.838 4.84-4.612 4.84-2.68 0-4.024-1.993-4.5-3.123l-3.372 1.4c1.196 2.53 3.604 5.167 7.9 5.167 4.7 0 8.262-2.953 8.262-9.147V24.292H85.36v1.486c-1.13-1.22-2.678-2.013-4.73-2.013zm.34 3.44c2.312 0 4.686 1.974 4.686 5.345 0 3.427-2.37 5.315-4.737 5.315-2.514 0-4.853-2.04-4.853-5.283 0-3.368 2.43-5.378 4.904-5.378z" fill="#4885ed"/><path d="M105.4 23.744c-4.448 0-8.183 3.54-8.183 8.76 0 5.526 4.163 8.803 8.6 8.803 3.712 0 6-2.03 7.35-3.85l-3.033-2.018c-.787 1.22-2.103 2.415-4.298 2.415-2.466 0-3.6-1.35-4.303-2.66l11.763-4.88-.6-1.43c-1.136-2.8-3.787-5.14-7.295-5.14zm.153 3.374c1.603 0 2.756.852 3.246 1.874l-7.856 3.283c-.34-2.542 2.07-5.157 4.6-5.157z" fill="#db3236"/><path d="M91.6 40.787h3.864V14.93H91.6z" fill="#3cba54"/><defs><path id="A" d="M42.634 23.755c-5.138 0-8.82 4.017-8.82 8.7 0 4.754 3.57 8.845 8.88 8.845 4.806 0 8.743-3.673 8.743-8.743 0-5.8-4.58-8.803-8.803-8.803zm.05 3.446c2.526 0 4.92 2.043 4.92 5.334 0 3.22-2.384 5.322-4.932 5.322-2.8 0-5-2.242-5-5.348 0-3.04 2.18-5.308 5.02-5.308z"/></defs></svg>
</div>
</a>
</div>
<!-- Call -->
<div class="flex flex-row justify-center items-center absolute -top-4 -right-4 sm:top-12 md:top-20 md:right-16 lg:top-20 lg:right-2 lg:right-8 floatingXXX-4">
<svg class="animateXXX-ping animate-bounce" xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path fill="#00AAAB" d="M760-480q0-117-81.5-198.5T480-760v-80q75 0 140.5 28.5t114 77q48.5 48.5 77 114T840-480h-80Zm-160 0q0-50-35-85t-85-35v-80q83 0 141.5 58.5T680-480h-80Zm198 360q-125 0-247-54.5T329-329Q229-429 174.5-551T120-798q0-18 12-30t30-12h162q14 0 25 9.5t13 22.5l26 140q2 16-1 27t-11 19l-97 98q20 37 47.5 71.5T387-386q31 31 65 57.5t72 48.5l94-94q9-9 23.5-13.5T670-390l138 28q14 4 23 14.5t9 23.5v162q0 18-12 30t-30 12ZM241-600l66-66-17-94h-89q5 41 14 81t26 79Zm358 358q39 17 79.5 27t81.5 13v-88l-94-19-67 67ZM241-600Zm358 358Z"/></svg>
<a href="tel:+919337799094" class="pl-1 text-dark text-xl font-bold tracking-wide hover:text-primary">93377 99094</a>
</div>
</div>
</div>
<div class="text-primary -mt-14 sm:-mt-24 lg:-mt-36 relative">
<svg class="xl:h-40 xl:w-full" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M600,112.77C268.63,112.77,0,65.52,0,7.23V120H1200V7.23C1200,65.52,931.37,112.77,600,112.77Z" fill="currentColor"></path>
</svg>
<div class="bg-primary w-full h-20 -mt-px"></div>
</div>
</div>
<!-- Courses -->
<div class="w-full bg-primary text-white font-semibold md:font-bold md:text-lg pb-16">
<!-- <div class="max-w-xl mx-auto mb-8 text-center relative">-->
<!-- <h1 class="font-bold my-3 text-2xl relative">The Most Comprehensive Test Prep in Bhubaneswar</h1>-->
<!-- </div>-->
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div class="container mx-auto">
<div class="flex flex-wrap flex-col md:flex-row text-xl">
<div class="w-full md:w-1/2 pl-12">
<div class="flex flex-wrap">
<div class="w-1/2">
<div class="p-4"><a class="relative">CAT</a></div>
<div class="p-4"><a class="relative">XAT</a></div>
<div class="p-4"><a class="relative">CMAT</a></div>
<div class="p-4"><a class="relative">NMAT</a></div>
</div>
<div class="w-1/2">
<div class="p-4"><a class="relative">GMAT</a></div>
<div class="p-4"><a class="relative">GRE</a></div>
<div class="p-4"><a class="relative">TOEFL</a></div>
<div class="p-4"><a class="relative">IELTS</a></div>
</div>
</div>
</div>
<div class="w-full md:w-1/2 pl-12">
<div class="flex flex-wrap">
<div class="w-1/2">
<div class="p-4"><a class="relative">CLAT</a></div>
<div class="p-4"><a class="relative">AILET</a></div>
<div class="p-4"><a class="relative">IPMAT</a></div>
<div class="p-4"><a class="relative">NIMCET</a></div>
</div>
<div class="w-1/2">
<div class="p-4"><a class="relative">PTE</a></div>
<div class="p-4"><a class="relative">SAT</a></div>
<div class="p-4"><a class="relative">ACT</a></div>
<div class="p-4"><a class="relative">College Admissions</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Best Way -->
<div class="w-full text-dark bg-white pb-16">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div class="max-w-xl mx-auto mt-20 text-center relative">
<h1 class="font-semibold text-dark my-3 text-2xl md:text-4xl relative text-dark">The best way to Prepare</h1>
</div>
<!-- cards -->
<div class="grid grid-cols-3 gap-2 md:gap-16 justify-center mt-4 md:font-medium text-sm md:text-xl text-center text-gray-800 text-xs sm:text-lg font-semibold">
<div>
<div class="flex items-center justify-center mx-auto">
<img src="static/img/svg/bestway/best1.png" class="max-h-12 md:max-h-24">
</div>
<div class="py-2">
<span>Engaging, Flexible & Effective classes</span>
</div>
</div>
<div>
<div class="flex items-center justify-center mx-auto">
<img src="static/img/svg/bestway/best2.png" class="max-h-12 md:max-h-24">
</div>
<div class="py-2">
<span>In-Depth Reviews & Techniques</span>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center mx-auto"><!-- transform -translate-y-6 -->
<img src="static/img/svg/bestway/best3.png" class="max-h-12 md:max-h-24">
</div>
<div class="py-2">
<span>Premium Online Content & Material</span>
</div>
</div>
</div>
</div>
</div>
<!-- Why Prajna Prep -->
<div class="w-full text-dark bg-light pb-32">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div class="max-w-xl mx-auto mt-20 text-center relative">
<div class="flex justify-center">
<h1 class="text-center font-bold text-dark my-3 text-2xl md:text-4xl relative">
<span class="text-primary">Gain admissions to top institutes</span>
</h1>
</div>
<p class="text-secondary-darker my-5 text-md text-xl md:text-2xl font-semibold">Systematic and Interactive coaching for your Highest Possible Score</p>
</div>
<!-- cards -->
<div class="grid md:grid-cols-2 xl:grid-cols-4 gap-14 md:gap-5 mt-8 sm:px-20 md:px-2">
<div class="bg-white shadow-xl p-6 flex flex-col items-center justify-center text-center rounded-xl">
<img src="static/img/svg/whyPrajnaPrep/learn_from_experts.svg" class="rounded-xl max-w-40 max-h-40">
<h1 class="font-medium text-xl mb-3 text-dark text-center">Learn from Experts</h1>
<p class="px-4 text-gray-500">Accomplished, dedicated teachers help students reach their highest potential.</p>
</div>
<div class="bg-white shadow-xl p-6 flex flex-col items-center justify-center text-center rounded-xl">
<img src="static/img/svg/whyPrajnaPrep/comprehensive_content.svg" class="rounded-xl max-w-40 max-h-40">
<h1 class="font-medium text-xl mb-3 text-dark text-center">Comprehensive Content</h1>
<p class="px-4 text-gray-500">Learn every Concept and strategy you need to ace a test plus reviews, tricks and techniques.</p>
</div>
<div class="bg-white shadow-xl p-6 flex flex-col items-center justify-center text-center rounded-xl">
<img src="static/img/svg/whyPrajnaPrep/smart_analytics.svg" class="rounded-xl max-w-40 max-h-40">
<h1 class="font-medium text-xl mb-3 text-dark text-center">Smart Analytics</h1>
<p class="px-4 text-gray-500">Structured sectional tests, FLTs for progress tracking. Home in on weak areas with smart Analytics and turn weaknesses into strengths.</p>
</div>
<div class="bg-white shadow-xl p-6 flex flex-col items-center justify-center text-center rounded-xl">
<img src="static/img/svg/whyPrajnaPrep/personalized_classes.svg" class="rounded-xl max-w-40 max-h-40">
<h1 class="font-medium text-xl mb-3 text-dark text-center">Personalized Classes</h1>
<p class="px-4 text-gray-500">Small, interactive classes to achieve individual attention and active participation.</p>
</div>
</div>
</div>
</div>
<!-- 5 Steps -->
<div class="w-full text-dark bg-white pb-16">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div class="max-w-xl mx-auto mt-20 text-center relative">
<div class="flex justify-center">
<h1 class="text-center text-dark font-bold text-2xl md:text-4xl my-3">
Prepare with us to Ace a Test
</h1>
</div>
<p class="text-secondary my-2 font-medium text-2xl md:text-3xl">We follow the 5 Steps below...</p>
</div>
<!-- cards -->
<div class="my-2">
<div class="bg-white shadow-xl text-center rounded-xl">
<div class="flex flex-col divide-y md:divide-y-0 justify-around pb-8">
<div class="grid md:grid-cols-2 divide-y md:divide-y-0 justify-around mt-8">
<div class="max-w-md mx-auto p-6 text-center">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm md:text-lg rounded-full">Step #1</span>
<!-- <h1 class="font-medium text-lg mb-3 text-primary text-center">Step #1</h1> -->
<h1 class="font-medium text-xl m-3 text-dark text-center">Basic Lessons and concepts</h1>
<p class="text-gray-500 my-5">Systematic and Interactive classroom sessions on Latest Pattern help master Syllabus exhaustively.</p>
</div>
<div class="max-w-md mx-auto p-6 text-center">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm md:text-lg rounded-full">Step #2</span>
<h1 class="font-medium text-xl m-3 text-dark text-center">Comprehensive Advance Review</h1>
<p class="text-gray-500 my-5">Learning precisely shortcuts, tips and tricks from the experts to develop intelligent thinking to solve those tricky and tough questions.</p>
</div>
<div class="max-w-md mx-auto p-6 text-center">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm md:text-lg rounded-full">Step #3</span>
<h1 class="font-medium text-xl m-3 text-dark text-center">Solving Previous Test questions</h1>
<p class="text-gray-500 my-5">Solving actual exam questions gives real insight into sectional measure, difficulty level, topic wise weightage, etc. that builds confidence.</p>
</div>
<div class="max-w-md mx-auto p-6 text-center">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm md:text-lg rounded-full">Step #4</span>
<h1 class="font-medium text-xl m-3 text-dark text-center">Actual exam interface</h1>
<p class="text-gray-500 my-5">Practicing FLTs, replicate the real test taking experience, scoring mechanism and find strengths and weaknesses to be addressed.</p>
</div>
</div>
<!-- <div class="border-t-2"></div> -->
<div class="max-w-md mx-auto p-6 text-center">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm md:text-lg rounded-full">Step #5</span>
<h1 class="font-medium text-xl m-3 text-dark text-center">Personality development Program</h1>
<p class="text-gray-500 my-5">Ace Interview and GD skills, WAT, English Fluency, Personality traits and convert a call to admission.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TESTIMONIAL -->
<div class="w-full text-dark bg-light pb-16">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div class="mt-20 flex flex-col md:flex-row items-start pl-6 md:space-x-10">
<div class="md:w-5/12">
<div class="flex items-center space-x-20 mb-5">
<span class="border border-gray-300 w-14 absolute"></span>
<h1 class="text-primary tracking-widest text-sm">TESTIMONIAL</h1>
</div>
<h1 class="font-semibold text-dark text-2xl lg:pr-40">What They Say?</h1>
<p class="text-gray-500 my-5 lg:pr-36">Prajna Prep has got hundreds of positive ratings from our students.</p>
<p class="text-gray-500 my-5 lg:pr-36">Some of the students and teachers were greatly helped by the Prajna Prep.</p>
<p class="text-gray-500 my-5 lg:pr-36">Are you too? Please give your assessment</p>
<a target="_blank" href="https://www.google.com/maps/place/Prajna+Prep/@20.2943826,85.8438313,21z/data=!4m6!3m5!1s0x3a1909f7be97cf1b:0xbb7d18e383b540e4!8m2!3d20.2943068!4d85.8439379!16s%2Fg%2F11c32kndzb?entry=ttu">
<button class="flex items-center space-x-3 pl-3 border-b border-l border-t border-primary text-primary font-medium my-4 focus:outline-none transform transition hover:scale-110 duration-300 ease-in-out rounded-full">
<span>Write your assessment</span>
<div class="border border-primary h-14 w-14 rounded-full flex items-center justify-center">
<svg class="w-5 h-5" viewBox="0 0 26 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M25.7071 8.70711C26.0976 8.31658 26.0976 7.68342 25.7071 7.2929L19.3431 0.928934C18.9526 0.538409 18.3195 0.538409 17.9289 0.928934C17.5384 1.31946 17.5384 1.95262 17.9289 2.34315L23.5858 8L17.9289 13.6569C17.5384 14.0474 17.5384 14.6805 17.9289 15.0711C18.3195 15.4616 18.9526 15.4616 19.3431 15.0711L25.7071 8.70711ZM-8.74228e-08 9L25 9L25 7L8.74228e-08 7L-8.74228e-08 9Z" fill="#008080"/>
</svg>
</div>
</button>
</a>
</div>
<div class="md:w-7/12">
<!-- Testimonial Action Buttons -->
<div class="flex gap-4 mt-8">
<button id="prevButton"
class="prev-button rounded-full border border-primary p-3 text-primary hover:bg-primary hover:text-white">
<span class="sr-only">Previous Slide</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="h-5 w-5 rtl:rotate-180">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />
</svg>
</button>
<button id="nextButton"
class="next-button rounded-full border border-primary p-3 text-primary hover:bg-primary hover:text-white">
<span class="sr-only">Next Slide</span>
<svg class="h-5 w-5 rtl:rotate-180" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path d="M9 5l7 7-7 7" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
</svg>
</button>
</div>
<div class="testimonial-slide mt-8">
<div id="testimonial-1" class="py-8 px-6 bg-white shadow-xl p-6 rounded-xl border-l-8 border-primary">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-800">Srujani Jena</h4>
<!-- <p class="text-gray-600">CEO, ABC Company</p> -->
</div>
</div>
<div class="text-gray-600 px-8">
<!-- Replace with the date or any other info you want to display -->
<!-- 2 days ago -->
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
</div>
</div>
<p class="text-gray-600 text-sm border-l-2 border-grey-500 pl-3">
ONE of the best CAT coaching, find it here. I love the factuality members are the best, this is the best institute for CAT coaching and other exam prep courses in Bhubaneswar
</p>
</div>
<div id="testimonial-2" class="hidden py-8 px-6 bg-white shadow-xl p-6 rounded-xl border-l-8 border-primary">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-800">Chittaranjan Sahoo</h4>
</div>
</div>
<div class="text-gray-600 px-8">
<!-- Replace with the date or any other info you want to display -->
<!-- 2 days ago -->
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
</div>
</div>
<p class="text-gray-600 text-sm border-l-2 border-grey-500 pl-3">
My experience with prajna prep for CAT coaching was awesome. I enjoyed classes, learned exam strategies, invaluable tips & tricks, simulated practice tests, ready to help staff members. I scored 96%ile in my first attempt. I strongly recommend all in Bhubaneswar who are searching for a reliable institute for CAT coaching.
</p>
</div>
<div id="testimonial-3" class="hidden py-8 px-6 bg-white shadow-xl p-6 rounded-xl border-l-8 border-primary">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-800">Rubina Senapati</h4>
</div>
</div>
<div class="text-gray-600 px-8">
<!-- Replace with the date or any other info you want to display -->
<!-- 2 days ago -->
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
</div>
</div>
<p class="text-gray-600 text-sm border-l-2 border-grey-500 pl-3">
It is a wonderful place for beginners. Teachers are very friendly. You can get a better experience through your CAT classes.
</p>
</div>
<div id="testimonial-4" class="hidden py-8 px-6 bg-white shadow-xl p-6 rounded-xl border-l-8 border-primary">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-800">Anchal Sahoo</h4>
</div>
</div>
<div class="text-gray-600 px-8">
<!-- Replace with the date or any other info you want to display -->
<!-- 2 days ago -->
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
</div>
</div>
<p class="text-gray-600 text-sm border-l-2 border-grey-500 pl-3">
I have a very good experience in prajna prep. And i learned a lot of things from here. It is a good Institute for learning ENGLISH.
</p>
</div>
<div id="testimonial-5" class="hidden py-8 px-6 bg-white shadow-xl p-6 rounded-xl border-l-8 border-primary">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-800">Sneha Suman Sahoo</h4>
</div>
</div>
<div class="text-gray-600 px-8">
<!-- Replace with the date or any other info you want to display -->
<!-- 2 days ago -->
<div class="flex flex-row justify-center pb-2">
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" viewbox="0 0 260 245" fill="rgb(246, 173, 85)"><path d="m56,237 74-228 74,228L10,96h240"/></svg>
</div>
</div>
</div>
<p class="text-gray-600 text-sm border-l-2 border-grey-500 pl-3">
It's very good place for CLAT Coaching in Bhubaneswar. I recommend prajna prep for Law Entrance coaching.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQs -->
<div class="w-full text-dark bg-white pb-16">
<div class="max-w-screen-xl mx-auto px-4 justify-center">
<div class="mx-auto py-12">
<h1 class="text-center text-dark font-medium text-2xl md:text-4xl my-3">
Frequently asked questions
</h1>
</div>
<div class="md:px-20 space-y-4">
<details class="group [&_summary::-webkit-details-marker]:hidden" open>
<summary
class="flex cursor-pointer items-center justify-between gap-1.5 rounded-lg bg-white p-4 text-gray-900"
>
<h2 class="text-dark font-semibold text-lg">
What learning materials will I get?
</h2>
<svg
class="text-primary h-5 w-5 shrink-0 transition duration-300 group-open:-rotate-180"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</summary>
<p class="mt-4 px-4 leading-relaxed text-secondary font-medium text-sm">
At Prajna English, you will receive a wide range of printed materials and English language-related books. These resources include exercises, vocabulary builders, grammar guides, and engaging activities to cater to different proficiency levels and learning preferences. Our carefully curated materials aim to enhance your language skills and provide a rewarding learning experience. Whether you're a beginner or an advanced learner, we have the right resources to support your language journey.
</p>
</details>
<details class="group [&_summary::-webkit-details-marker]:hidden">
<summary
class="flex cursor-pointer items-center justify-between gap-1.5 rounded-lg bg-white p-4 text-gray-900"
>
<h2 class="text-dark font-semibold text-lg">
Concretely, what happens in a class?
</h2>
<svg
class="text-primary h-5 w-5 shrink-0 transition duration-300 group-open:-rotate-180"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</summary>
<p class="mt-4 px-4 leading-relaxed text-secondary font-medium text-sm">
In our classes, students engage in interactive learning sessions led by experienced instructors. They participate in various language activities, discussions, and practical exercises to reinforce their understanding of English concepts. Our classes emphasize real-life scenarios, encouraging students to practice speaking, listening, reading, and writing in English. Additionally, students receive personalized feedback and guidance to track their progress and make continuous improvements in their language skills.
</p>
</details>
<details class="group [&_summary::-webkit-details-marker]:hidden">
<summary
class="flex cursor-pointer items-center justify-between gap-1.5 rounded-lg bg-white p-4 text-gray-900"
>
<h2 class="text-dark font-semibold text-lg">
How long will it take to improve my language skills?
</h2>
<svg
class="text-primary h-5 w-5 shrink-0 transition duration-300 group-open:-rotate-180"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</summary>
<p class="mt-4 px-4 leading-relaxed text-secondary font-medium text-sm">
The time it takes to improve your language skills can vary depending on various factors such as your current proficiency level, your dedication to learning, the amount of time you invest in practice, and your exposure to the language. With consistent effort and practice, many learners experience noticeable improvements within a few months. However, becoming fluent or highly proficient in a language may require several months to a few years of consistent study and immersion in real-life language contexts. Remember, language learning is a journey, and each person's progress is unique. Stay committed and patient, and you will see steady improvement over time.
</p>
</details>
<details class="group [&_summary::-webkit-details-marker]:hidden">
<summary
class="flex cursor-pointer items-center justify-between gap-1.5 rounded-lg bg-white p-4 text-gray-900"
>
<h2 class="text-dark font-semibold text-lg">
Will I really learn English if I choose a Business English course?
</h2>
<svg
class="text-primary h-5 w-5 shrink-0 transition duration-300 group-open:-rotate-180"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</summary>
<p class="mt-4 px-4 leading-relaxed text-secondary font-medium text-sm">
Yes. With our Business English course, you will learn all important aspects of the language including grammar, sentence structure and pronunciation. The only difference is that the vocabulary and topics in our Business courses are specifically designed to help you succeed in your career.
</p>
</details>
<details class="group [&_summary::-webkit-details-marker]:hidden">
<summary
class="flex cursor-pointer items-center justify-between gap-1.5 rounded-lg bg-white p-4 text-gray-900"
>
<h2 class="text-dark font-semibold text-lg">
Will a Business English course really help me in my job/career?
</h2>
<svg
class="text-primary h-5 w-5 shrink-0 transition duration-300 group-open:-rotate-180"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</summary>
<p class="mt-4 px-4 leading-relaxed text-secondary font-medium text-sm">
Yes, it will. If you use English in any aspect of your work, you will be able to speak it more confidently by the end of your course. You will be able to improve your networking, presentation, negotiation and interview skills as well as your writing skills. You’ll also learn how to write job application letters and resumes perfectly.
</p>
</details>
</div>
</div>
</div>
<!-- Blogs -->
<div class="w-full text-dark bg-light pb-16">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center px-8 2xl:px-0">
<div class="mt-20 max-w-xl mx-auto flex flex-wrap justify-center text-center relative">
<h1 class="font-bold text-dark my-3 text-2xl md:text-4xl relative text-dark text-center">Latest <span class="text-primary">Blogs</span></h1>
<!-- <p class="text-gray-500 my-5">See the developments that have occurred to Skillines in the world</p> -->
</div>
<div class="my-14 flex flex-col lg:flex-row lg:space-x-20">
<div class="lg:w-6/12">
<img src="static/img/hand-book.jpg" class="w-full mb-6 max-w-xl">
<span class="bg-primary text-light font-semibold px-4 py-px text-sm rounded-full">BLOGS</span>
<h1 class="text-gray-800 font-semibold my-3 text-xl">IELTS Reading - Skimming and Scanning</h1>
<p class="text-gray-500 mb-3">There are three passages on the reading test and each passage is a page and a half long more or less. It is very important to learn how to scan for information, i.e. how to do skimming. Don't just sit down and read ...</p>
<a href="" class="underline">Read more</a>
</div>
<div class="lg:w-7/12 flex flex-col justify-between mt-12 space-y-5 lg:space-y-0 lg:mt-0">
<div class="flex space-x-5">
<div class="w-4/12">
<div class="relative">
<img src="static/img/office.jpeg" class="rounded-xl w-full">
<!-- <span class="absolute bottom-2 right-2 bg-yellow-300 text-darken font-semibold px-4 py-px text-sm rounded-full hidden sm:block">PRESS RELEASE</span> -->
</div>
</div>
<div class="w-8/12">
<h1 class="text-gray-800 text-sm sm:text-lg font-semibold">Some GMAT myths busted for you</h1>
<p class="text-gray-500 my-2 sm:my-4 text-xs sm:text-md">First thing is: Do you need to get a high percentage of the questions on the test correct in order to get a high score? You have to know,...</p>
</div>
</div>
<div class="flex space-x-5">
<div class="w-4/12">
<div class="relative">
<img src="static/img/lptp-lady.jpg" class="rounded-xl w-full">
<!-- <span class="absolute bottom-2 right-2 bg-yellow-300 text-darken font-semibold px-4 py-px text-sm rounded-full hidden sm:block">NEWS</span> -->
</div>
</div>
<div class="w-8/12">
<h1 class="text-gray-800 text-sm sm:text-lg font-semibold">Common Aptitude Test (CAT) & how to ace it</h1>
<p class="text-gray-500 my-2 sm:my-4 text-xs sm:text-md">The Common Admission Test (CAT) is a computer based test conducted by Indian Institutes of Management (IIMs) as a pre-requisite for admission to various management ...</p>
</div>
</div>
<div class="flex space-x-5">
<div class="w-4/12">
<div class="relative">
<img src="static/img/hand-lptp.jpg" class="rounded-xl w-full">
<!-- <span class="absolute bottom-2 right-2 bg-yellow-300 text-darken font-semibold px-4 py-px text-sm rounded-full hidden sm:block">NEWS</span> -->
</div>
</div>
<div class="w-8/12">
<h1 class="text-gray-800 text-sm sm:text-lg font-semibold">How the GRE Computer-delivered Test is scored</h1>
<p class="text-gray-500 my-2 sm:my-4 text-xs sm:text-md">While it is definitely helpful to know how the test is scaled, what raw score targets you should be aiming for; the most important ...</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CONTACTS -->
<div class="w-full text-dark bg-white pb-32">
<div class="max-w-screen-xl mx-auto px-4 flex flex-col flex-wrap justify-center">
<div id="Contact" class="mt-20 max-w-xl mx-auto text-center relative">
<h1 class="font-semibold text-primary my-3 text-3xl md:text-4xl relative">Contact Us</h1>
</div>
<div class="container mx-auto px-4">
<!-- Contact Information -->
<div class="mt-8 mb-6 flex flex-row justify-center items-center relative floating">
<svg class="animate-ping" xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path fill="teal" d="M760-480q0-117-81.5-198.5T480-760v-80q75 0 140.5 28.5t114 77q48.5 48.5 77 114T840-480h-80Zm-160 0q0-50-35-85t-85-35v-80q83 0 141.5 58.5T680-480h-80Zm198 360q-125 0-247-54.5T329-329Q229-429 174.5-551T120-798q0-18 12-30t30-12h162q14 0 25 9.5t13 22.5l26 140q2 16-1 27t-11 19l-97 98q20 37 47.5 71.5T387-386q31 31 65 57.5t72 48.5l94-94q9-9 23.5-13.5T670-390l138 28q14 4 23 14.5t9 23.5v162q0 18-12 30t-30 12ZM241-600l66-66-17-94h-89q5 41 14 81t26 79Zm358 358q39 17 79.5 27t81.5 13v-88l-94-19-67 67ZM241-600Zm358 358Z"/></svg>
<a href="tel:+919337799094" class="pl-3 text-dark text-2xl font-bold tracking-wide hover:text-primary">93377 99094</a>
</div>
<div class="mt-12 mb-4 flex flex-col items-center">
<p class="text-gray-600 mb-4">Email: <a href="mailto:[email protected]" class="text-primary font-semibold hover:text-teal-700 underline underline-offset-8">[email protected]</a></p>
</div>
<div class="mt-8 mb-4 flex flex-col items-center">
<h1 class="font-semibold">Address:</h1> <p class="text-gray-600 mb-4 text-center">A/141, Saheed Nagar Rd, <br> Saheed Nagar, Bhubaneswar, <br> Odisha 751007, India</p>
</div>
<!-- Google Map -->
<div class="w-full h-96 rounded-lg overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14968.575909816946!2d85.8439379!3d20.2943068!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a1909f7be97cf1b%3A0xbb7d18e383b540e4!2sPrajna%20Prep!5e0!3m2!1sen!2sca!4v1691301021684!5m2!1sen!2sca"
width="100%"
height="100%"
style="border: 0;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</div>
</div>
</div>
<!-- Footer Section -->
<footer style="background-color: rgba(37, 38, 65, 1);">
<div class="max-w-lg mx-auto">
<div class="flex py-12 justify-center text-white items-center px-20 sm:px-36">
<div class="relative pr-3">
<a href="#Home2">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="106.462" viewBox="0 0 400 106.462"><g fill-rule="evenodd"><path d="M51.667 8.946c-1.851.104-4.3.416-6.25.796-1.1.215-2.284.44-2.63.499-6.24 1.078-17.191 7.862-21.537 13.342a44.54 44.54 0 0 1-1.426 1.69c-9.215 10.31-12.014 28.85-6.469 42.86 3.272 8.267 9.166 15.573 16.395 20.324L32 89.936c1.142.751 6.122 2.928 8.538 3.731 13.197 4.389 28.665 1.801 39.527-6.614a99.794 99.794 0 0 1 1.924-1.458c1.219-.885 5.45-5.354 6.643-7.015 2.407-3.353 5.373-8.623 5.892-10.47.107-.381.476-1.556.819-2.61 2.402-7.374 2.711-16.158.828-23.474-1.489-5.782-2.99-9.199-6.03-13.732-.352-.526-.641-1-.641-1.053 0-.091-.81-1.227-1.004-1.408a86.947 86.947 0 0 1-1.363-1.596C82 18.14 74.798 13.342 66.917 10.769c-2.146-.701-6.916-1.532-10.103-1.761-2.3-.164-3.132-.174-5.147-.062m5.416 3.724c6.85.633 12.954 2.712 18.325 6.244 1.188.781 2.205 1.419 2.261 1.419.13 0 2.065 1.733 4.325 3.874 7.891 7.473 12.629 20.009 11.686 30.921-.446 5.161-1.25 8.131-3.922 14.496-.838 1.996-3.031 5.392-5.182 8.025-.784.959-2.963 3.351-3.057 3.355-.098.004-.74.552-2.019 1.723-7.705 7.056-20.863 10.679-32 8.811-1.238-.207-2.513-.42-2.833-.472-6.669-1.09-16.055-7.012-21.502-13.566-.571-.687-1.09-1.288-1.152-1.333-.62-.456-4.047-6.473-4.858-8.529a38.79 38.79 0 0 0-.647-1.541c-.323-.716-.407-1.001-1.081-3.68-3.868-15.377 1.453-31.558 13.5-41.048.727-.574 1.414-1.116 1.524-1.206.111-.09.271-.163.355-.163.084 0 .248-.115.365-.255.116-.141.88-.668 1.696-1.173 7.249-4.485 16.131-6.649 24.216-5.902m-6.166 21.322a121.753 121.753 0 0 1-6.5 1.877c-2.295.585-7.102 2.016-12.75 3.796-1.421.448-2.913.9-3.316 1.004-4.281 1.11-5.716 3.779-2.625 4.883 1.154.412 3.853 1.473 3.923 1.542.036.036-.09.498-.279 1.027a46.185 46.185 0 0 0-.688 2.14c-.216.739-.506 1.328-.779 1.583-1.278 1.194-1.157 3.697.215 4.466.276.154.254.323-.354 2.636C26.649 63.191 26 66.554 26 68.089v.75l4.292-.045 4.291-.044-.05-.948c-.047-.885-.716-4.365-1.798-9.345l-.462-2.126.427-.457c1.175-1.26 1.088-2.848-.216-3.945l-.528-.444.814-1.574c.447-.865.884-1.575.97-1.576.085-.001 1.735.482 3.666 1.072 1.931.591 3.736 1.123 4.011 1.183.739.162 3.921 1.139 7.416 2.279 4.584 1.495 5 1.497 9.667.047a495.378 495.378 0 0 1 5.583-1.701c7.236-2.125 12.772-3.893 17.084-5.457 4.025-1.459 3.038-3.775-2.2-5.158-.486-.128-3.059-.885-5.717-1.681-7.714-2.311-7.904-2.367-9.917-2.892-3.532-.923-5.571-1.49-7.228-2.01-2.107-.662-3.177-.667-5.188-.025m-13 17.216c-.092.264-1.038 8.176-1.07 8.954-.014.318-.135 1.363-.269 2.321-.367 2.614-.448 2.383 1.214 3.458 10.854 7.022 21.015 7.13 32.125.344 2.411-1.473 2.263-.889 1.599-6.295-.275-2.24-.628-5.18-.785-6.532-.173-1.505-.354-2.455-.466-2.451-.1.004-.444.106-.765.226-15.86 5.932-16.747 5.93-30.966-.071-.49-.207-.53-.204-.617.046" fill="#04acac"/><path d="M276.667 59.25v18.583h3.833v-16.95l4.625-.102c6.353-.138 8.074-.441 10.407-1.831 5.285-3.147 6.034-11.083 1.452-15.377-2.663-2.497-4.704-2.902-14.609-2.905l-5.708-.001V59.25M196.89 41.66c-2.055.489-3.321 2.497-2.985 4.734.746 4.976 8.337 4.314 8.337-.727 0-2.889-2.425-4.705-5.352-4.007m-72.993 1.181c-2.127.122-5.017.43-5.605.598-.276.079-.292 1.043-.292 17.239v17.155h8.167V65.728l2.375-.003c9.652-.013 15.174-4.883 14.562-12.843-.602-7.835-6.235-10.78-19.207-10.041m166.186 2.001c3.842.554 5.509 2.347 5.493 5.908-.022 4.788-2.289 6.066-10.784 6.078l-4.292.005V44.667l4.208.003c2.315.002 4.734.079 5.375.172m-159.322 4.339c2.943.539 4.604 2.548 4.35 5.263-.3 3.218-2.883 4.983-7.111 4.858l-1.75-.052-.044-5.032-.044-5.032.711-.064c1.515-.136 2.94-.115 3.888.059m183.549.653c-1.826.461-3.008 1.245-4.521 2.996l-.789.914v-3.411h-3.833v27.5h3.801l.081-8.208c.087-8.975.11-9.221 1.133-12.042 1.073-2.958 3.898-4.794 6.139-3.988.461.166.865.269.898.228.033-.04.488-.77 1.009-1.621l.949-1.549-.954-.437c-1.051-.481-2.833-.655-3.913-.382m17.825.004c-11.204 1.889-15.59 16.038-7.654 24.695 4.226 4.61 12.477 5.496 18.093 1.941 2.854-1.806 5.915-5.745 4.994-6.424-.785-.58-2.775-1.575-2.888-1.444-.069.079-.469.669-.889 1.311-5.802 8.867-17.828 6.045-19.359-4.542l-.103-.708h24.539l-.113-1.375c-.755-9.164-7.876-14.929-16.62-13.454m34.641.087c-2.812.559-4.519 1.472-6.568 3.514l-1.375 1.371v-4.477H355v37.5h3.833V73.741l.989.941c11.43 10.876 29.428-2.653 22.525-16.932-.69-1.426-.814-1.601-2.576-3.618-3.124-3.576-8.087-5.183-12.995-4.207m-207.102 2.09c-1.831.359-3.795 1.827-4.862 3.635-.664 1.124-.805 1.051-.81-.417a21.149 21.149 0 0 0-.109-1.709l-.107-1.024h-6.837l.109 1.776c.06.977.109 6.677.109 12.667v10.89h7.98l.052-7.212.051-7.212.551-1.12c1.044-2.118 3.709-3.159 6.514-2.543l.518.114v-7.815l-.773-.106c-.94-.129-1.418-.113-2.386.076m13.783.002c-2.726.301-7.303 1.797-7.285 2.381.009.284 1.419 4.915 1.53 5.027.054.053.462-.085.906-.307 4.66-2.334 10.392-1.702 10.392 1.145v.519l-1.897.102c-8.836.474-13.94 5.121-12.613 11.486 1.237 5.936 9.396 8.188 14.427 3.982l.833-.696.233 1.088.234 1.089h7.326l-.118-.791c-.065-.436-.175-4.392-.244-8.792-.115-7.388-.152-8.098-.475-9.276-1.454-5.29-6.124-7.742-13.249-6.957m47.796-.016c-2.137.384-3.987 1.371-5.231 2.789l-.817.931-.094-.652a56.208 56.208 0 0 1-.198-1.611l-.104-.958h-7.19l.107 1.024c.059.564.107 6.264.107 12.667v11.642H216v-7.922c0-6.631.04-8.018.248-8.514 1.187-2.842 4.59-3.704 6.415-1.626 1.116 1.271 1.082.977 1.136 9.937l.049 8.125h8.181l-.075-8.541c-.059-6.901-.125-8.827-.343-10.025-.913-5.025-5.385-8.162-10.358-7.266m24.83-.053c-2.716.238-8.083 1.781-8.083 2.323 0 .18 1.491 5.109 1.569 5.187.053.053.677-.176 1.388-.508 4.168-1.947 8.689-1.666 9.719.603.538 1.184.481 1.28-.751 1.28-9.397 0-14.958 5.032-13.285 12.022 1.362 5.691 9.491 7.608 14.327 3.377l.836-.732.197 1.167.197 1.166h3.669c3.332 0 3.66-.025 3.565-.273-.261-.679-.426-4.634-.428-10.254-.003-6.726-.088-7.574-.991-9.916-1.522-3.946-5.951-5.967-11.929-5.442m-51.965 12.76c-.084 13.32-.113 13.735-1.057 15.47-.551 1.013-2.121 1.884-3.936 2.185-1.337.221-1.264-.144-.761 3.785l.371 2.897 1.436-.102c5.134-.364 8.712-2.359 10.38-5.786 1.491-3.063 1.615-4.53 1.616-19.032V52.5h-7.971l-.078 12.208m142.805-11.124c3.707.937 6.752 3.826 7.508 7.124l.105.459h-9.851c-5.419 0-9.852-.025-9.852-.055 0-.137.913-2.28 1.29-3.028 1.754-3.479 6.694-5.537 10.8-4.5m35.41.231c8.857 2.804 10.093 15.055 2.004 19.861-6.98 4.147-15.763-1.112-15.741-9.426.018-7.325 6.944-12.586 13.737-10.435M179.141 68.268l-.058 2.268-.866.797c-2.431 2.235-5.745 1.445-5.771-1.377-.023-2.332 2.321-3.864 6.029-3.941l.724-.015-.058 2.268m72.156-.389c-.108 2.437-.679 3.448-2.472 4.376-2.563 1.325-5.303-.92-4.314-3.536.583-1.543 3.038-2.655 5.971-2.704l.898-.015-.083 1.879" fill="#F3ECEA"/></g></svg>
</a>
</div>
<span class="border-l border-gray-500 text-sm text-center pl-5 py-2 font-semibold">Excel in Test Preparation with Us</span>
</div>
<div class="flex items-center text-gray-400 text-sm justify-center">
<a href="#Home2" class="pr-3">Home</a>
<a href="#Courses" class="border-l border-gray-400 px-3">Courses</a>
<a href="#Contact" class="border-l border-gray-400 pl-3">Contact</a>
</div>
<div class="text-center text-white">
<p class="my-3 text-gray-400 text-sm pb-4">© <a href="https://www.prajnaprep.com">2023 Prajna Tech.</a></p>
<div class="py-3 tracking-wide pb-12 md:pb-0">
</div>
</div>
</div>
</footer>
<!-- Contact Floater -->
<div class="bg-primary flex justify-center fixed p-4 text-white rounded-t-lg md:rounded-lg right-0 md:right-4 bottom-0 md:bottom-16 w-full md:w-64 border border-2 border-light floatingXXX-4">
<div class="flex justify-around w-full max-w-64">
<div id="openPopup" class="cursor-pointer md:animateXXX-bounce">
<img src="static/img/svg/ContactActions/callback.svg" class="max-h-8">
</div>
<div class="pl-4">
<a target="_blank" class="md:hidden whatsapp_icon justify-center text-center" href="https://api.whatsapp.com/send?phone=+919337799094&text=Hello PrajnaPrep, Can you assist me to plan my study abroad preparation?">
<img src="static/img/svg/ContactActions/whatsapp.png" class="max-h-6">
</a>
<a target="_blank" class="hidden md:block whatsapp_icon justify-center text-center" href="https://web.whatsapp.com/send?phone=+919337799094&text=Hello PrajnaPrep, Can you assist me to plan my study abroad preparation?">
<img src="static/img/svg/ContactActions/whatsapp.png" class="max-h-6">
</a>
</div>
<div class="pl-4 animateXXX-ping animate-bounce">
<a href="tel:+919337799094"><img src="static/img/svg/ContactActions/phonetalk.svg" class="max-h-8"></a>
</div>
</div>
</div>
<!-- Callback Request Modal container -->
<div id="popupModal" class="bg-primary modal hidden fixed inset-0 flex items-center justify-center z-50">
<div class="modal-content bg-white w-4/5 md:w-96 h-4/5 p-4 border rounded-lg shadow-lg">
<span id="closePopup" class="modal-close absolute top-0 right-0 mt-4 mr-4 text-white cursor-pointer text-3xl">×</span>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSevOmxAa1PBkkRnICyneYa83jk-reH2QsRyDIPLNlCYoYOWSA/viewform?embedded=true" width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
<script src="js/main.js"></script>
<!-- JavaScript -->
<!-- <script>-->
<!-- //*************************************************************************************************************************************-->
<!-- // HAMBURGER: JavaScript code to handle hamburger menu-->
<!-- // Get the elements-->
<!-- const hamburgerBtn = document.getElementById('hamburger');-->
<!-- const content = document.getElementById('content');-->
<!-- // Initialize a boolean variable to track the menu state-->
<!-- let isMenuOpen = false;-->
<!-- content.classList.remove('h-full');-->
<!-- content.classList.add('scale-y-0', 'h-0', 'transform', 'md:transform-none');-->
<!-- hamburgerBtn.classList.remove('open');-->
<!-- // Add event listener for hamburger click-->
<!-- hamburgerBtn.addEventListener('click', () => {-->
<!-- if (isMenuOpen) {-->
<!-- // content.classList.add('hidden');-->
<!-- content.classList.remove('h-full');-->
<!-- content.classList.add('scale-y-0', 'h-0', 'transform', 'md:transform-none');-->
<!-- hamburgerBtn.classList.remove('open');-->
<!-- } else {-->
<!-- // content.classList.remove('hidden');-->
<!-- content.classList.add('h-full');-->
<!-- content.classList.remove('scale-y-0', 'h-0', 'transform', 'md:transform-none');-->
<!-- hamburgerBtn.classList.add('open');-->
<!-- }-->
<!-- isMenuOpen = !isMenuOpen;-->
<!-- });-->
<!-- //*************************************************************************************************************************************-->
<!-- //*************************************************************************************************************************************-->
<!-- // TESTIMONIAL: JavaScript code to handle slideshow-->
<!-- const testimonials = document.querySelectorAll(".testimonial-slide > div");-->
<!-- const prevButton = document.getElementById("prevButton");-->
<!-- const nextButton = document.getElementById("nextButton");-->
<!-- let currentSlide = 0;-->
<!-- function showSlide(slideIndex) {-->
<!-- testimonials.forEach((testimonial, index) => {-->
<!-- if (index === slideIndex) {-->
<!-- testimonial.classList.remove("hidden");-->
<!-- } else {-->
<!-- testimonial.classList.add("hidden");-->
<!-- }-->
<!-- });-->
<!-- }-->
<!-- prevButton.addEventListener("click", () => {-->
<!-- currentSlide = (currentSlide - 1 + testimonials.length) % testimonials.length;-->
<!-- // alert("Hi 1" + currentSlide);-->
<!-- showSlide(currentSlide);-->
<!-- });-->
<!-- nextButton.addEventListener("click", () => {-->
<!-- currentSlide = (currentSlide + 1) % testimonials.length;-->
<!-- // alert("Hi 2");-->
<!-- showSlide(currentSlide);-->
<!-- });-->
<!-- // Show the first slide initially-->
<!-- showSlide(currentSlide);-->
<!-- //*************************************************************************************************************************************-->
<!-- //*************************************************************************************************************************************-->
<!-- // MODAL: JavaScript code to handle Callback Request Modal-->
<!-- // Get the modal and the image trigger element-->
<!-- var modal = document.getElementById("popupModal");-->
<!-- var img = document.getElementById("openPopup");-->
<!-- // Get the close button element-->
<!-- var closeBtn = document.getElementById("closePopup");-->
<!-- // Function to open the modal-->
<!-- img.onclick = function() {-->
<!-- modal.classList.remove("hidden");-->
<!-- }-->
<!-- // Function to close the modal-->
<!-- closeBtn.onclick = function() {-->
<!-- modal.classList.add("hidden");-->
<!-- }-->
<!-- // Close the modal if the user clicks outside of it-->