-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1084 lines (1070 loc) · 78.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="assets/images/logo/paathshala-favicon.png" type="image/x-icon">
<title>Paathshala Education</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800%7CPoppins:300i,400,700,400i,500%7CDosis:300" rel="stylesheet">
<!-- Bootstrap Links -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css">
<!-- FontAwesome Link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover.css" integrity="sha256-JN6PzDiVqV2siZjedqNB10DTVZsdRKY5oW0TTvYpAuQ=" crossorigin="anonymous" />
<!-- Custom style -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!-- Header Navbar -->
<div class="slideDiv bg-light p-3">
<ul class="list-unstyled text-center">
<li><a href="enquiry.html">ADMISSION ENQUIRY</a></li>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="#">CAREERS </a></li>
<li><a href="#">SPARK EXCELLENCE</a></li>
</ul>
</div>
<div class="top-nav text-light" style="text-align: center;z-index:10000;position:relative;">
<ul class="list-inline">
<li class="list-inline-item top-icons" >
<a title="Paathshala Facebook"><i class="fa fa-facebook"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Twitter"><i class="fa fa-twitter"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Pinterest"><i class="fa fa-pinterest-p"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala LinkedIn"><i class="fa fa-linkedin"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Instagram"><i class="fa fa-instagram"></i></a>
</li>
<li class="list-inline-item top-icons">
<a title="Paathshala Youtube"><i class="fa fa-youtube-play"></i></a>
</li>
<li class="list-inline-item top-contact">Call us: 9867998388</li>
<li class="list-inline-item top-links" style="border-right:none;">
<a href="enquiry.html" style="border-right:none;">ADMISSION ENQUIRY</a>
</li>
<li class="list-inline-item top-links">
<a href="resources.html">RESOURCES</a>
</li>
<li class="dropdown top-links">
<a class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
CAREERS
</a>
<div class="dropdown-menu bg-dark animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="#">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="#">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="#">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="#">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="#">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="#">FOUNDATION</a>
</div>
</li>
<li class="list-inline-item top-links"><a href="#">SPARK EXCELLENCE</a></li>
</ul>
<div id="top-toggle"><i class="fa fa-bars"></i></div>
</div>
<div class="navCollapse bg-light">
<ul class="list-unstyled text-center pt-3">
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="why-paathshala.html">Why Paathshala</a></li>
<li class="dropdown ">
<a class="dropdown-toggle" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Exams
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="jee-exam.html">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="bitsat-cet.html">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="neet-aiims-jipmer.html">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="olympiads.html">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="kvpy-iiser.html">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="foundation.html">FOUNDATION</a>
</div>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#" id="Dropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Info
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="Dropdown">
<a class="dropdown-item hvr-forward" href="about-iits.html">EVERYTHING ABOUT IIT,s</a>
<a class="dropdown-item hvr-forward" href="medical-colleges.html">TOP MEDICAL COLLEGES</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="nits-iits.html">WHAT ARE NIT's, IIT's</a>
<a class="dropdown-item hvr-forward" href="bits-pilani.html">BITS PILANI</a>
</div>
</li>
<li>
<a href="results.html">Results</a>
</li>
<li>
<a href="testimonials.html">Testimonials</a>
</li>
<li>
<a href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" >
<img src="assets/images/logo/whitelLogo-Paathshala.png" style="height: 6vh">
</a>
<div id="my-nav" class=" collapse navbar-collapse">
<ul class="bg-dark navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="why-paathshala.html">Why Paathshala</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Exams
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="jee-exam.html">JEE MAIN & ADVANCED</a>
<a class="dropdown-item hvr-forward" href="bitsat-cet.html">BITSAT, CET</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="neet-aiims-jipmer.html">NEET, AIIMS, JIPMER</a>
<a class="dropdown-item hvr-forward" href="olympiads.html">OLYMPIADS</a>
<a class="dropdown-item hvr-forward" href="kvpy-iiser.html">KVPY,IISER</a>
<a class="dropdown-item hvr-forward" href="foundation.html">FOUNDATION</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Info
</a>
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
<a class="dropdown-item hvr-forward" href="about-iits.html">EVERYTHING ABOUT IIT,s</a>
<a class="dropdown-item hvr-forward" href="medical-colleges.html">TOP MEDICAL COLLEGES</a>
<!-- <div class="dropdown-divider"></div> -->
<a class="dropdown-item hvr-forward" href="nits-iits.html">WHAT ARE NIT's, IIT's</a>
<a class="dropdown-item hvr-forward" href="bits-pilani.html">BITS PILANI</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="results.html">Results</a>
</li>
<li class="nav-item">
<a class="nav-link" href="testimonials.html">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
<div id="navCollapsebtn" class="nav-item togglebtn"><i class="fa fa-bars"></i></div>
</nav>
<!-- Header End -->
<!-- Banner/Carousel -->
<div class="container-fluid" style="padding: 0%;background:black;" id="slider">
<div id="my-carousel" class="carousel slide" data-ride="carousel" data-pause="false" style="height: 100vh;">
<ol class="carousel-indicators">
<li class="active" data-target="#my-carousel" data-slide-to="0" aria-current="location"></li>
<li data-target="#my-carousel" data-slide-to="1"></li>
<li data-target="#my-carousel" data-slide-to="2"></li>
<li data-target="#my-carousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100 banner-images" src="assets/images/Banner/bannerBg-1.jpg" alt="">
</div>
<div class="carousel-item">
<img class="d-block w-100 banner-images" src="assets/images/Banner/bannerBg-6.jpg" alt="">
</div>
<div class="carousel-item">
<img class="d-block w-100 banner-images" src="assets/images/Banner/bannerBg-4.png" alt="">
</div>
<div class="carousel-item">
<div class="row" style="background-image: url('assets/images/Banner/bannerBg-5.jpg');background-size: 100vw;background-repeat: no-repeat;text-align: right;">
<img class="banner-images wow slideInUp" src="assets/images/Banner/schoolgirl-711x1024-1.png" alt="" style="margin-left: 60vw;">
</div>
</div>
</div>
<a class="carousel-control-prev" href="#my-carousel" data-slide="prev" role="button">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#my-carousel" data-slide="next" role="button">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Banner/Carousel End -->
<!-- Intro -->
<div style="background: black;">
<div class="container p-4 pb-0">
<h3 class="text-info wow slideInUp">Paathshala Education</h3>
<p class="text-white wow slideInUp">We are a premiere education institute and one of the fastest growing education institutes in India. Founded and managed by IITians, Doctors and Educationists, we are focused on providing quality education with state-of-the-art infrastructure, like nowhere in India and guidance for the students of XI and XII standard science, aspiring to crack competitive entrance exams like the IIT JEE, BITSAT, NEET, JIPMER, AIIMS etc and Boards
</p>
<div class="btn btn-dark border border-light wow slideInUp">View More</div>
<hr class="hrline">
</div>
</div>
<!-- Intro End -->
<!-- Workshop -->
<div style="/*background: linear-gradient(to left, #185a9d, #43cea2);*/background: black;">
<div class="container" id="workshoptabs">
<h3 class="text-info">Success Seminars and Workshops</h3><br>
<style>
/* nav > .nav.nav-tabs{
border: none;
color:#fff;
background:#272e38;
border-radius:0;
} */
/* nav > div a.nav-item.nav-link,
nav > div a.nav-item.nav-link.active
{
border: none;
padding: 18px 25px;
color:#fff;
background:#272e38;
border-radius:0;
} */
nav > div a.nav-item.nav-link.active:after
{
content: "";
position: relative;
bottom: -45px;
left: -14%;
border: 15px solid transparent;
border-top-color: white ;
}
/* .tab-content{
background: #fdfdfd;
line-height: 25px;
border: 1px solid #ddd;
border-top:5px solid #e74c3c;
border-bottom:5px solid #e74c3c;
padding:30px 25px;
}
nav > div a.nav-item.nav-link:hover,
nav > div a.nav-item.nav-link:focus
{
border: none;
background: #e74c3c;
color:#fff;
border-radius:0;
transition: background 0.20s linear;
} */
</style>
<nav>
<div class="nav nav-tabs wow slideInUp" id="nav-tab" role="tablist">
<a class="nav-item nav-link text-info active" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-selected="true">Engineering</a>
<a class="nav-item nav-link text-info" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile" aria-selected="false">Medical</a>
<a class="nav-item nav-link text-info" id="nav-contact-tab" data-toggle="tab" href="#nav-contact" role="tab" aria-controls="nav-contact" aria-selected="false">Other Exams</a>
<a class="nav-item nav-link text-info" id="nav-last-tab" data-toggle="tab" href="#last" role="tab" aria-controls="nav-last" aria-selected="false">VIII, IX, X Foundation</a>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active text-light p-4 wow slideInUp" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<h4>
We are going to give the following information to Engineering aspirants in the success seminar
</h4>
<ul class="list-unstyled listParent ">
<li><i class="fa fa-plus-circle"></i>
Career Guidance about Science and Engineering, including lifestyle, pay packages, placements, opportunities after Science and Engineering etc.
</li>
<li><i class="fa fa-plus-circle"></i>
Paper Pattern, Syllabus, Duration, Marking Scheme, Tentative Dates and other details about JEE[Main], JEE[Advanced], BITSAT and all other Engineering Entrance Exams like State CET, VIT, SRM, MIT
</li>
<li><i class="fa fa-plus-circle"></i>
How is school syllabus and study methodology different from 11th and 12th std
</li>
<li><i class="fa fa-plus-circle"></i>
Study Planning and Methodology of Preparation for entrance exams.
</li>
<li><i class="fa fa-plus-circle"></i>
Discussion on CBSE Board vs State Board
</li>
<li><i class="fa fa-plus-circle"></i>
Discussion of Integrated Approach vs Non-Integrated Approach
</li>
<li><i class="fa fa-plus-circle"></i>
IIT JEE Advanced Vs IIT JEE Main and Other Exams.
</li>
<li><i class="fa fa-plus-circle"></i>
Lifestyle management during entrance exams preparation.
</li>
<li><i class="fa fa-plus-circle"></i>
Queries from students and parents.
</li>
</ul>
</div>
<div class="tab-pane fade text-light p-4" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<h4>
We are going to give the following information to Medical aspirants in the success seminar
</h4>
<ul class="list-unstyled listParent">
<li><i class="fa fa-plus-circle"></i>
Career Guidance about Science and Engineering, including lifestyle, pay packages, placements, opportunities after Medical and MBBS etc.
</li>
<li><i class="fa fa-plus-circle"></i>
Paper Pattern, Syllabus, Duration, Marking Scheme, Tentative Dates and other details about NEET, AIIMS, JIPMER and all Medical Entrance Exams.
</li>
<li><i class="fa fa-plus-circle"></i>
How is school syllabus and study methodology different from 11th and 12th std.
</li>
<li><i class="fa fa-plus-circle"></i>
Study Planning and Methodology of Preparation for NEET and other entrance exams.
</li>
<li><i class="fa fa-plus-circle"></i>
Discussion on CBSE Board vs State Board
</li>
<li><i class="fa fa-plus-circle"></i>
Discussion of Integrated Approach vs Non-Integrated Approach
</li>
<li><i class="fa fa-plus-circle"></i>
IIT JEE Advanced Vs IIT JEE Main and Other Exams.
</li>
<li><i class="fa fa-plus-circle"></i>
Lifestyle management during entrance exams preparation.
</li>
<li><i class="fa fa-plus-circle"></i>
Queries from students and parents.
</li>
</ul>
</div>
<div class="tab-pane fade text-light p-4" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">
<h4>
We are going to give the following information to KVPY, OLYMPIADS and Other Exams aspirants in the success seminar
</h4>
<ul class="list-unstyled listParent">
<li><i class="fa fa-plus-circle"></i>
Career Opportunities in Pure Sciences and the Exams to get there.
</li>
<li><i class="fa fa-plus-circle"></i>
Important details of KVPY.
</li>
<li><i class="fa fa-plus-circle"></i>
Important details of IISER.
</li>
<li><i class="fa fa-plus-circle"></i>
Important details of OLYMPIADS.
</li>
<li><i class="fa fa-plus-circle"></i>
Study methodology for entrance exams.
</li>
<li><i class="fa fa-plus-circle"></i>
Lifestyle management during entrance exams preparation.
</li>
<li><i class="fa fa-plus-circle"></i>
Queries from students and parents.
</li>
</ul>
</div>
<div class="tab-pane fade text-light p-4" id="last" role="tabpanel" aria-labelledby="nav-last-tab">
<h4>
PRAYAAG | Foundation Course for IIT and Medical
</h4>
<p>
Considering the competitive scenario and the dynamics of the same, it is very important for a student to stay ahead of the game and have an edge over the others, in order to secure and pursue stellar careers. It's just not about knowledge anymore. It's about the depth of your thought horizons are, analytical thinking capability, your imagination ability, agility of mind and great memory. If you don't have your hand at these avenues, not only do you miss the opportunity to train and sharpen your brain but also you will have to fight hard to survive the highly competitive space.
<br><br>
With the globalization happening at a swift rate, its not just about your country or region anymore. So, here we are, with our initiative PRAYAAG Logic | Memory | Mind to train your brain to become capable of solving high level analytical and logical problems, improve and broaden your imagination expanse.
</p>
<br>
<h4>For Parents</h4>
<ul class="list-unstyled listParent">
<li><i class="fa fa-star"></i>
Food for thought: What logic does make in teaching XI and XII syllabus in VI, VII, VIII, IX and X standards in the name of IIT and Medical Foundation?
</li>
<li><i class="fa fa-star"></i>
Such a process will lead to a very little improvement in the brain power and besides develops an additional stress.
</li>
<li><i class="fa fa-star"></i>
In the adolescent age, the children are to be taught to think smart, logically and how to have a wide imagination. That is what lays the Mind Foundation for Life!
</li>
<li><i class="fa fa-star"></i>
Because we believe in the fact that watering a plant continuously for a week just to make it grow as tall as possible seems ridiculous; here we are, doing the right things at the right time. Sharpening your child's brain, because every child has a potential of its own and we believe in doing justice to the potential by doing what needs to be done.
</li>
<li><i class="fa fa-star"></i>
PRAYAAG(Sanskrit: पंच-प्रयाग Pañca prayāga) is an expression in Hindu religious ethos, specifically used to connote the five sacred river confluences in the Garhwal Himalayas in the state of Uttarakhand, India.
</li>
<li><i class="fa fa-star"></i>
We believe that the mind is a holy and powerful entity and hence the name. While the Prayaag at Allahabad is the confluence of the holy rivers, The Ganga, The Yamuna and the Saraswati, Prayaag at Paathshala is the confluence of Logic, Memory and Mind
</li>
</ul>
<h4>Summery of the Course</h4>
<ul class="list-unstyled listParent">
<li><i class="fa fa-star"></i>
Solving Puzzles of different types and different levels of difficulty
</li>
<li><i class="fa fa-star"></i>
Brain Gym Workshop
</li>
<li><i class="fa fa-star"></i>
Memory Techniques
</li>
<li><i class="fa fa-star"></i>
Logic Workshop ( 10+ topics)
</li>
<li><i class="fa fa-star"></i>
Data Interpretation Types and Techniques( 5 Topics)
</li>
<li><i class="fa fa-star"></i>
Laying the Mathematics Foundation ( 30+ topics )
</li>
<li><i class="fa fa-star"></i>
Vedic Mathematics
</li>
<li><i class="fa fa-star"></i>
Physics Chemistry Maths Biology [PCMB] Foundations for IIT JEE and NEET
</li>
<li><i class="fa fa-star"></i>
A detailed list of the syllabus will be provided to you at the time of your admission
</li>
</ul>
</div>
</div>
<hr class="hrline">
</div>
</div>
<!-- Workshop End -->
<!-- Features of Pathshala Cards -->
<div style="background-color: black;">
<div id="Features" class="container" style="background:black;overflow:hidden;text-align: center;">
<h3 class="text-light m-4">Why Should You Choose Paathshala Education ?</h3>
<div class="card text-white bg-wine mb-3 wow slideInUp" pos-to="9vw" data-for="1">
<!-- <div class="card-header">One To One Personalised, Across The Table Coaching</div> -->
<img class="card-img-top" src="assets/images/Effective-vocabulary-strategies.jpg" alt="" style=" width:100%;">
<div class="card-body">
<!-- <h5 class="card-title">One To One Personalised, Across The Table Coaching</h5> -->
<p class="card-text">One To One Personalised, Across The Table Coaching</p>
<p class="card-infobox">
Paathshala is unique in its approach of one to one personalized coaching at the institute wherein there are no student batches but the focus is upon across the table one on one tutoring. The student – teacher ratio is very small due to one to one coaching. Student gets personalized attention and can ask doubts or queries without any hesitation. The professor can teach the student based on learning requirement, understanding capability, learning speed, and motivation. With the one-on-one model, professors are committed to listening to the student and actively responding. Teachers can get to know the student fully and keep track of their progress, gauging their success and struggles. The one to one model is the most successful mode of tutoring a student and known to produce the best possible result. Both parents and students are happy in this form of tutoring. The student would be able to achieve maximum potential due to the personalized coaching. Our professors are dedicated to empowering each one of their students to achieve their educational goals and be prepared for a remarkable future. One-on-one interactions assist students in becoming the best versions of themselves and discovering a joy for lifelong learning.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-secondary mb-3 wow slideInUp" pos-to="24vw" data-for="1">
<img class="card-img-top" src="assets/images/accordian-1.jpg" alt="" style="width: 100%;">
<!-- <div class="card-header">Dedicated,Well Qualified And Well Trained Professors</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Secondary card title</h5> -->
<p class="card-text">Dedicated,Well Qualified And Well Trained Professors</p>
<p class="card-infobox">
Paathshala faculties are handpicked by a very esteemed group of PhDs, Educationists and IITians, may of whom have been Ex Faculties themselves at many Nationally and Globally renowned educational institutes. The professors are well qualified, smart, jovial, charismatic individuals who undergo a rigorous teacher training and selection procedure instilling in them Paathshala values like dedication,approachability, approachability,clarity of knowledge and time management efficiency. They are well-known to simplify the topic and concepts for the students who develop interest and start performing better thenceforth. Our Professors derive great pride from their student's ranks and results and the believe in the philosophy that success in competitive exams is not only the student’s but the teachers as well to cherish.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-prussian mb-3 wow slideInUp" pos-to="39.5vw" data-for="1">
<img class="card-img-top" src="assets/images/technology.png" alt="" style="width: 100%;">
<!-- <div class="card-header">Technology Enhanced Learning</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Success card title</h5> -->
<p class="card-text">Technology Enhanced Learning</p>
<p class="card-infobox">
PAATHSHALA classrooms are well equipped with technology enhanced learning and teaching infrastructure, including Televisions, Digital Writing Pads, Models, small experiments, animated videos. Wherever we feel that the animated videos may help students understand the concepts better and swifter, we use this for the enhanced interest levels of the students to a satisfactory and interest generating effect. Curiosity of the students is also increased due to the use of such technology enhanced learning methodologies.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-deepblue mb-3 wow slideInUp" pos-to="55vw" data-for="1">
<img class="card-img-top" src="assets/images/mobile.png" alt="" style="width: 100%;">
<!-- <div class="card-header">Mobile Apps And Communication Portal</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Danger card title</h5> -->
<p class="card-text">Mobile Apps And Communication Portal</p>
<p class="card-infobox">
PAATHSHALA believes in strong dedication and clarity when it comes to communicating with parents about their ward's progress. We believe in honest, timely, punctual communications and clarification of doubts and queries. And our well acclaimed customer support and academics, co-curricular and career guidance has earned a lot of kudos and accolades over time from numerous parents and teachers alike. We use technology enhanced communication systems that we have customized for the learning of our students as well as for the day to day academic related communication with the parents. We use these to the benefit of all and easy for all.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-dark mb-3 wow slideInUp" pos-to="70vw" data-for="1">
<img class="card-img-top" src="assets/images/small-exp.jpg" alt="" style="width: 100%;">
<!-- <div class="card-header">Teaching Using Models And Small Experiments In Class</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Warning card title</h5> -->
<p class="card-text">Teaching Using Models And Small Experiments In Class</p>
<p class="card-infobox">
In Paathshala classrooms, the use of teaching models and demonstrating small experiments in class, especially across a table and while learning topics like solid state chemistry and reaction mechanisms in organic chemistry, optical isomerism etc makes the student understand the concepts involved much better and faster and this leads the student having more knowledge and deeper understanding about such complicated topics involving spatial reasoning.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<!-- Info-Box For top 5 Cards -->
<div class="animated fadeIn arrow1"></div>
<div class="animated fadeIn infobox1 bg-light p-3">
<p></p>
</div>
<!-- Info-Box For top 5 Cards End -->
<div class="card text-white bg-purple mb-3 wow slideInUp" pos-to="9vw" data-for="2">
<img class="card-img-top" src="assets/images/lib-bg.jpg" alt="" style="width: 100%;">
<!-- <div class="card-header">12 X 7, Air Conditioned Library Facility With Comfortable Seating</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Info card title</h5> -->
<p class="card-text">12 X 7, Air Conditioned Library Facility With Comfortable Seating</p>
<p class="card-infobox">
To ensure continued learning and concentration, we have designed our library with comfortable benches,study tables,12*7 air-conditioning facility because the environment in which a student is studying impacts the desire to study and concentration levels. The students can also consult the faculty available in the library premises for doubts clarification when the faculty are free from lectures. The library is open from 9 AM to 9 PM from Sunday to Saturday.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card bg-lilac mb-3 text-light wow slideInUp" pos-to="24.5vw" data-for="2">
<img class="card-img-top" src="assets/images/regular-assesment.jpg" alt="" style="width: 100%;">
<!-- <div class="card-header">Regular Assessments, Using Topic Wise Tests, Full Syllabus Test & Part Syllabus Test</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Light card title</h5> -->
<p class="card-text">Regular Assessments, Using Topic Wise Tests, Full Syllabus Test</p>
<p class="card-infobox">
The students will be regularly assessed through the Topic Wise Tests(TWTs) which would be conducted as soon as a given topic is completed in the class, the marks of which would be communicated to the parents. Once the syllabus is completed, the students will be made to give full syllabus end-of-the course test series which would be of the same pattern as the competitive exams they are preparing for. Intermittently we also provide students with part syllabus tests. Because it is only practice that makes a student perfect.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-petunia mb-3 wow slideInUp" pos-to="39.5vw" data-for="2">
<img class="card-img-top" src="assets/images/special-preparation.jpg" alt="" style="width: 100%;">
<!-- <div class="card-header">Special Preparation For Board Exams</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Dark card title</h5> -->
<p class="card-text">Special Preparation For Board Exams</p>
<p class="card-infobox">
Paathshala conducts Special Preparation for Board Exams of the students towards the second half of the twelfth standard.This special coaching for the board examinations which includes making the students practice the board papers of previous years, evaluation and correction of the board papers, providing the appropriate feedback and suggestions, helps the students feel well prepared and confident. Expert faculties for board exams give tips as to how to write the board papers,how to make them look more presentable with legible handwriting, labelled diagrams and point wise answers in order to score well. This has helped numerous students of Paathshala Education to excel in board exams.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card bg-gleam mb-3 text-light wow slideInUp" pos-to="55vw" data-for="2">
<img class="card-img-top" src="assets/images/welfare.jpg" alt="">
<!-- <div class="card-header">Persistent Student Welfare Activities, Guidance, Motivation And Support</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Light card title</h5> -->
<p class="card-text">Persistent Student Welfare Activities, Guidance, Motivation And Support</p>
<p class="card-infobox">
Student Welfare Activities, conducted by Paathshala Education act as a Continuous Motivation and Support system for students.There is a dedicated team of professionals called the Student Welfare Team, which is driven to provide constant support, guidance and counselling to the students on a regular basis. The students are supposed to report to the Student Welfare Team about what they have studied on a given day as a part of self study as well as classwork, and if they have any impending doubts. The progress of the student will be communicated to the parents on a weekly basis as a weekly study report with appropriate feedback and improvement suggestions. A short surprize viva may also conducted on the topics which have been covered by the student as a part of self study. This helps the student stay on the foot and re-enforces the concept of regular guided studies.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<div class="card text-white bg-coffee mb-3 wow slideInUp" pos-to="70vw" data-for="2">
<img class="card-img-top" src="assets/images/image_2019-06-18_14-42-15.png" alt="" style="width: 100%;">
<!-- <div class="card-header">Post Exam Counselling And Career Guidance</div> -->
<div class="card-body">
<!-- <h5 class="card-title">Dark card title</h5> -->
<p class="card-text">Post Exam Counselling And Career Guidance</p>
<p class="card-infobox">
Post Exam Counselling and feedback is provided to students after they are done with their entrance exams and the results come out. Many a student is in a dilemma as to what institute or branch to choose amongst the several available to them. We explain to them in detail about all branches and try to establish medium term and long term career goals. Our counselors comprise of our faculty and well established industry professionals Thus they are more well informed about what exactly to choose and how to proceed in life.
</p>
</div>
</div>
<!-- responsive view Infobox -->
<div class="responsive-infobox mb-3 p-2 animated fadeIn"></div>
<!-- responsive view Infobox end-->
<!-- Info-Box For bottom 5 Cards -->
<div class="animated fadeIn arrow2"></div>
<div class="infobox2 bg-light p-3 animated fadeIn">
<p></p>
</div>
<!-- Info-Box For bottom 5 Cards End -->
<hr class="hrline">
</div>
</div>
<!-- Features of Pathshala Cards End -->
<!-- Form For Enrollment -->
<div style="background: -webkit-linear-gradient(left, #3931af, #00c6ff);">
<div class="container p-3 wow slideInUp" style="overflow: auto">
<div class="leftDiv float-left text-center">
<img class="wow pulse infinite" src="assets/images/logo/paathshala-favicon.png" alt="" style="width:30%;margin-top:40%;">
</div>
<div class="rightDiv float-right p-4 bg-light">
<h3 class="text-center">Let's Get Started</h3>
<form method="post" name="enquiryForm">
<div class="row m-4">
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-user"></i></span>
</div>
<input class="form-control" type="text" placeholder="Your Name *" name="txtName">
</div>
</div>
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">@</span>
</div>
<input class="form-control" type="email" placeholder="Your Email *" name="txtEmail">
</div>
</div>
</div>
<div class="row m-4">
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-phone"></i></span>
</div>
<input class="form-control" type="number" minlength="10" maxlength="10" placeholder="Your Phone Number *" name="phoneNo">
</div>
</div>
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-university"></i></span>
</div>
<input class="form-control" type="text" placeholder="Your School/College Name *" name="txtCollege">
</div>
</div>
</div>
<div class="row m-4">
<div class="col">
<div class="form-group">
<select id="my-select" class="form-control" data-style="btn" name="ddlClass" title="Select Your Standard *">
<option value="8th">VIII</option>
<option value="9th">IX</option>
<option value="10th">X</option>
<option value="11th">XI</option>
<option value="12th">XII</option>
</select>
</div>
</div>
<div class="col">
<div class="form-group">
<select id="my-select" title="Exams Preparing For *" data-style="btn" class="form-control select" name="ddlExam[]" multiple>
<option value="10th">X Boards</option>
<option value="12th">XII Boards</option>
<option value="JEE-Mains">JEE-Mains</option>
<option value="JEE-Advanced">JEE-Advanced</option>
<option value="Olympiads">Olympiads</option>
</select>
</div>
</div>
</div>
<div class="row m-4 text-center">
<div class="col">
<button type="button" class="btn btn-success btnSend">Send Enquiry</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Form For Enrollment End -->
<!-- Testimonial -->
<div class="text-grey background-overlay background-img "
style="background-image: url('assets/images/Banner/bannerBg-5.jpg');padding-bottom: 0px !important;">
<div class="text-center">
<div class="text-center wow fadeInUp" style="visibility: visible; animation-name: fadeInUp;padding-bottom: 3% !important;padding-top: 3% !important;">
<h1 class="text-info">This is why we do what we do</h1>
<h1 class="text-white">Testimonials</h1>
</div>
<div class="container z-index-2 position-relative" style="padding-bottom: 5%;">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"
style="background-color: #222;"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="2" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="3" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="4" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="5" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="6" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="7" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="8" style="background-color: #222;">
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="9" style="background-color: #222;">
</li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/nihar-mhapankar.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Nihar Mhapankar</h4>
<b>(Secured Admission at Lokmanya Tilak General Medical College for M. B.B.S.)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> To merely explain my experience and emotions
with Paathshala with a few words ? Oh Boy! It's going to be a task between the
Devil and the Deep Blue Sea. My 2 year experience here was an adventure.
Professors here helped me a lot in teaching, doubts, concepts clarification. I
would say they are true experts of their subjects. The professors here are the
best! The environment and ambience of the classrooms was far beyond my
expectation. Good infrastructure, comfortable benches, quality teaching
facilities, you name it! Learning here was fun and the environment maintained by
the teachers was cherry on the cake. Our senior students also gave us the
information about the mighty class in our 11 Std. I was also given the right
guidance about the books to be referred to in addition to the study materials
provided. The periodical tests and practice questions given by Paathshala were
really challenging, not sub-standard as given by other classes. This motivated
me to go deeper into the subject and clear my doubts. The more you practice, the
more skilled you become. For NEET aspirants, I would say never leave your
doubts. Get them clarified with your professors. Keep a tab with whatever is
being taught in class and don't keep any backlog. It is very important to solve
as many previous question papers as possible. I would rest my case on a final
note that, if Paathshala is given the opportunity to compete at the higher
level, it would gain all the honours and respect it truly deserves!! <i
class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/nihar-mhapankar.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Dr. Tushar Mhapankar [Nihar Mhapankar's
Father]</h4>
<b>(His ward Nihar Mhapankar Secured Admission at Lokmanya Tilak General Medical
College for M. B.B.S.)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> My experience with Paathshala is absolutely
fantastic. In the beginning itself, Professor Sagar Sir had given Nihar a view
of the goal and how to reach that goal and how to start. Taking admission here
did wonders for Nihar. The way of teaching by the faculties was very good as
Nihar was very enthusiastic and loved going to Paathshala classes without
missing even a single class. All the credit for Nihar’s success in the exams
goes to the staff and faculty of Paathshala. <i class="fa fa-quote-right"
aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/saurabh-parekh.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Saurabh Parekh</h4>
<b>(Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> My experience at Paathshala is wonderful; the
teachers are very helpful, they provide personalized attention to the student. I
studied for about 5-6 hours daily. I gave more time to the subject I was weak
at. I revised the topics done in the class daily. And this helped me a lot in
improving my scores in the exams. I also learnt how to manage my time and how
not to make silly mistakes. The professors are knowledgeable and I give them a
rating of 10/10. I was also counseled about the opportunities available to me
after successful completion of JEE. I am planning to do Mechanical Engineering
at IIT. <i class="fa fa-quote-right" aria-hidden="true"></i></p>
<hr>
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/saurabh-parekh.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Mr. Jayesh Parekh [Saurabh Parekh's Father]
</h4>
<b>(His ward Saurabh Parekh Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> It is a good thing that Paathshala is
providing personalized attention to students. This helps students to ask their
doubts and also the professor to gauge the understanding of the student. It
helps them to gain confidence when the concepts are cleared and the results will
be definitely good. I will give 100% credit of Saurabh's success to Paathshala
as they are service oriented. <i class="fa fa-quote-right"
aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/sachit-shanbhag.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Sachit Shanbhag</h4>
<b>(Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> My experience at Paatshala was very good. The
one thing I liked here is that they provide great academic support which helped
me excel in all the subjects. The professors are experienced and provide us in
depth knowledge of the subject. My scores improved a lot in all the subjects.
For the future batches of Paathshala, I will say that you should stick to the
portion and the study material that is provided. Whenever you have doubts, get
it cleared with the professors. The study materials, the class notes and the
assignments given at the class are enough for getting good marks in JEE. I also
got to know tips and techniques and time management strategies from the
counselor which were very helpful. My rating of Paathshala is 10/10 as the staff
and faculty are very supportive. <i class="fa fa-quote-right"
aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/sachit-shanbhag.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Mr. Subhash Shanbhag [Alumnus of IIT BHU |
Sachit Shanbhag's Father]</h4>
<b>(His ward Sachit Shanbhag Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> As a parent, I am happy that personalized
attention was given to Sachit and he got the concepts cleared from the
professors. It is important to stay focused on studies in these two years and
after you have mastered the concepts, then move to the next level. <i
class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/devansh-bangad.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Devansh Bangad</h4>
<b>(Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> Irrespective of the exams I was to appear I
was counseled by the professors who taught me how I should crack the exam
without difficulty. They taught me how to manage time effectively while solving
questions. The professors cleared all my conceptual doubts in such a way that I
could put them into application and use them to solve the problems correctly.
For the JEE aspirants, I would like to say that study all the concepts but do a
smart study. Revise whatever you have learnt thoroughly and solve maximum
practice questions. <i class="fa fa-quote-right" aria-hidden="true"></i>
</p>
<hr>
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/devansh-bangad.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Mr. And Mrs. Bangad [Devansh Bangad's
Parents]</h4>
<b>(Their ward Devansh Bangad Secured Admission at IIT Bombay for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> We had a wonderful and happy experience at
Paathshala. All the faculties gave Devansh personalized attention and solved all
his doubts. We used to get the guidance from professors from time to time. All
these have contributed towards Devansh succeeding in JEE Advanced. Before the
exams, the professors explained to us which topic is to be covered, which topic
should be solved and Devansh's success is to be attributed to the fact that he
scored minimum negative marks in both JEE Main and JEE Advanced. To the entrance
exam aspirants, we would say, there has to be regular study by the student for 2
years. The student should be thorough with the concepts, formulas, theory,
definition and clear the doubts immediately with the professors. <i
class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/advait-koparkar.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Mr and Mrs. Koparkar [Parents of Advait
Koparkar]</h4>
<b>(Their ward Advait Koparkar Secured Admission at BITS Pilani, Goa for BE
[Bachelor of Engineering]. Advait went on to pursue his Masters at Georgia
Institute of Technology, Atlanta)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> The most striking thing you experience with
the professors of Paathshala is their passion for teaching and the mastery over
the subject that makes a huge difference from the perspective of a student. They
are very interactive with the students. The professors could clear the
conceptual doubts of each student. They connect well with the students in
solving their doubts. Professors are frank in their feedback without mincing
words. <i class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/ashay-katre.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Ashay Katre</h4>
<b>(Secured Admission at NIT Nagpur for B-Tech)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> I had a really great experience at Paathshala.
Since we were taught in small batches, it was very effective as we could
understand the concepts clearly. Our syllabus was completed twice. That gave us
the edge over our competitors. Our professors were friendly and understanding.
Attending classes was fun. All in all, my experience at Paathshala was thrilling
<i class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/mihir-mahajan.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Mihir Mahajan</h4>
<b>(Secured Admission at BITS Pilani, Goa)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> It is a great feeling to have been a student
of Paathshala, have gotten to learn from all the professors here. Every
professor has taught me valuable life lessons too. [After my 10th Std, I have
joined a different institute but over there, my concepts were not being
clarified] Hence, I have joined Paathshala later. My concept clarity
strengthened with time. My frequency of solving problems without making silly
mistakes has increased. Also, the time taken by me for solving each sum has
reduced. This capability has become an integral part of me. I have also learnt a
lot about life at Paathshala. I can feel the connection between Maths and Life.
'Integration' taught me that if you keep adding up small efforts, you WILL make
it large despite any obstacles of 'what to substitute'. Plus, you will get the
added bonus of '+C' in the end. It's your life, make it large! <i
class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="item margin-lr-15px">
<div class="background-white opacity-9 padding-30px">
<div class="float-left width-100px margin-right-20px">
<img src="assets/images/testimonial/bhakti-savla.jpg" alt="student-img">
</div>
<h4 class="margin-bottom-0px text-black">Bhakti Savla</h4>
<b>(Secured Admission at Secured Admission at Maharashtra Institute of Medical
Education and Research [MIMER] for M. B. B. S)</b>
<p class="text-black text-justify"><i class="fa fa-quote-left"
aria-hidden="true"></i> Her professors are intelligent, knowledgeable
and dedicated. My daughter really benefited from the class as she learnt the
subjects in depth. She was given daily assignments to complete. It really
improved her test scores including MCQs. For the NEET aspirants, I will say one
has to be very focused and planned with studies. Also, indulge in extra
curricular activities like sports or music to relax. <i
class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Footer -->
<footer style="background: black;">
<div class="container">
<div class="row p-4 mb-0 wow slideInUp" style="text-align: center;">
<div class="footer-menu" style="width: 30%;display: inline-block;margin-left: 2vw;">
<ul class="list-unstyled">
<li>JEE [MAIN], JEE [ADVANCED]</li>
<li>BITSAT, CET</li>
<li>NEET, AIIMS, JIPMER</li>
<li>OLYMPIADS</li>
<li>KVPY, IISER</li>