-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1322 lines (1264 loc) · 52.3 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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>JungleCat - Training and Assesment Strategy Software</title>
<link
rel="icon"
href="./images/homepage/ms-icon-310x310.png"
type="image/png"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="https://www.google.com/recaptcha/api.js"></script>
</head>
<body>
<div class="main container-fluid">
<!-- * * * * * * * * * * * * * * * * * * * * Header * * * * * * * * * * * * * * * * * * * -->
<header>
<nav
class="my-nav navbar navbar-light navbar-expand-lg"
data-offset="500"
>
<div class="heading container">
<a class="navbar-brand">
<img
src="./images/homepage/Group 1494 (6).svg"
alt=""
class="logo1"
/>
<img src="./images/homepage/logo-two.svg" alt="" class="logo2" />
</a>
<button
class="collapsed navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-icon">
<img src="./images/homepage/Frame.svg" />
</span>
<span class="navbar-icon-two">
<img src="./images/homepage/icon-two.svg" />
</span>
<span class="navbar-close"><p>close x</p></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarSupportedContent"
>
<ul class="navbar-nav">
<li class="about nav-item active">
<a class="home-navlink nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="home-navlink nav-link" href="/features">Features</a>
</li>
<!-- <li class="nav-item">
<a class="home-navlink nav-link" href="/pricing">Pricing</a>
</li> -->
<!-- <li class="nav-item">
<a class="home-navlink nav-link" href="#faq">FAQ</a>
</li> -->
<li class="nav-item">
<a
class="home-navlink nav-link"
data-bs-toggle="modal"
data-bs-target="#contact"
onclick="onContactClick()"
id="contact-nav"
>
Contact
</a>
</li>
<li class="login-signup nav-item">
<a href="https://app.junglecat.com/login">
<button
type="button"
class="login-home btn btn-outline-primary"
id="login"
>
Login
</button>
</a>
<a href="https://app.junglecat.com/register">
<button
type="button"
class="signup-home btn btn-primary"
id="signup"
>
Sign Up
</button>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- * * * * * * * * * * * * * * * * * Home main-slides * * * * * * * * * * * * * * * * -->
<div
id="carouselExampleControls"
class="carousel slide carousel-fade color-carousel"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide-to="0"
class="indicators active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide-to="1"
aria-label="Slide 2"
class="indicators"
></button>
<button
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide-to="2"
aria-label="Slide 3"
class="indicators"
></button>
<button
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide-to="3"
aria-label="Slide 4"
class="indicators"
></button>
</div>
<div class="carousel-inner">
<div class="slideOne carousel-item active">
<div class="slide-container container">
<div class="text-class">
<h1 class="textblind">
<span class="complete">
The complete
</span>
<span class="title-middle">
Training &
<br />
Assesment strategy
</span>
<span class="title-last">software</span>
<span>
<button
type="button"
class="btn btn-primary me-3"
id="registerbtn"
data-bs-toggle="modal"
data-bs-target="#contact"
>
Register for Access
</button>
</span>
</h1>
</div>
<div class="image-class">
<img
id="img"
src="./images/homepage/tas-circle.png"
class="d-block images"
alt="..."
/>
</div>
</div>
</div>
<div class="slideTwo carousel-item">
<div class="slide-container container">
<div class="text-class">
<h1 class="textblind" style="margin-top: 350px;">
<span class="complete">
The complete
</span>
<span class="title-middle">
Attendance
</span>
<span class="title-last">software</span>
<span>
<button
type="button"
class="btn btn-primary me-3"
id="registerbtn"
data-bs-toggle="modal"
data-bs-target="#contact"
>
Register for Access
</button>
</span>
</h1>
</div>
<div class="image-class">
<img
id="img-two"
src="./images/homepage/attendance-circle.png"
class="d-block images"
alt="..."
/>
</div>
</div>
</div>
<div class="slideThree carousel-item">
<div class="slide-container container">
<div class="text-class">
<h1 class="textblind" style="margin-top: 350px;">
<span class="complete">
The complete
</span>
<span class="title-middle">
video class
</span>
<span class="title-last">software</span>
<span>
<button
type="button"
class="btn btn-primary me-3"
id="registerbtn"
data-bs-toggle="modal"
data-bs-target="#contact"
>
Register for Access
</button>
</span>
</h1>
</div>
<div class="image-class">
<img
id="img-three"
src="./images/homepage/video-circle.png"
class="d-block images"
alt="..."
/>
</div>
</div>
</div>
<div class="slideFour carousel-item">
<div class="slide-container container">
<div class="text-class">
<h1 class="textblind">
<span class="complete">
The complete
</span>
<span class="title-middle">
End to End
<br />
Management system
</span>
<span class="title-last">software</span>
<span>
<button
type="button"
class="btn btn-primary me-3"
id="registerbtn"
data-bs-toggle="modal"
data-bs-target="#contact"
>
Register for Access
</button>
</span>
</h1>
</div>
<div class="image-class">
<img
id="img-four"
src="./images/homepage/management-circle.png"
class="d-block images"
alt="..."
/>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- * * * * * * * * * * * * * * * * * User experience * * * * * * * * * * * * * * * -->
<div class="total container">
<div class="row">
<div id="about">
<div class="user">
<h6>USER EXPERIENCE</h6>
</div>
<div class="usertitle">
<p>
When Your School
<br />
Runs On JungleCat, Everybody Wins.
</p>
</div>
<hr style="width: 10%; height: 5px; color: #8d94b0;" />
<div>
<p class="descOfuser">
JungleCat is a virtual learning platform bringing virtual
education in the simplest and easiest form. The virtual learning
platform is taken to a whole new level with our complete virtual
academy framework offering a holistic institutional experience to
each user.
</p>
</div>
</div>
</div>
<!-- * * * * * * * * * * * * * * * * * * * Cards * * * * * * * * * * * * * * * * * * * -->
<div class="row row-cols-1 row-cols-md-2 g-4 mt-4">
<div class="col">
<div class="card">
<div class="card-body m-4">
<img src="./images/homepage/management .png" />
<h5 class="card-title mt-5"><strong>Management</strong></h5>
<p class="card-text">
All the hassles of monitoring, managing and tracking can now be
done easily with JungleCat. Administrators can easily access the
platform to see.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body m-4">
<img src="./images/homepage/teachers.png" />
<h5 class="card-title mt-5"><strong>Teachers</strong></h5>
<p class="card-text">
It's all in one platform now. Teachers can schedule meetings,
assign tasks, evaluate and exchange feedbacks, along with the
easiness of being
</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body m-4">
<img src="./images/homepage/student.png" />
<h5 class="card-title mt-5"><strong>Students</strong></h5>
<p class="card-text">
Experiencing school in a new and dynamic way is what this
platform offers for students. With the stream mode of attending
and managing classes
</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body m-4">
<img src="./images/homepage/Compliance.png" />
<h5 class="card-title mt-5"><strong>Compliance</strong></h5>
<p class="card-text">
Auditing the efficiency of the platform is important. JungleCat
allows Line of sight for Management to ensure the compliance of
the organization.
</p>
</div>
</div>
</div>
</div>
<!-- * * * * * * * * * * * * * * * * * Product features * * * * * * * * * * * * * * * * -->
<div class="row">
<div id="features">
<div class="feature">
<p>PRODUCT FEATURES</p>
</div>
<div class="title">
<p>A Virtual edu Era, Future Of Education</p>
</div>
<div class="featureDesc">
<hr style="width: 10%; height: 5px; color: #8d94b0;" />
<p>
Automating Excellence: Streamlining Compliance with JungleCat's TAS Automation Platform
</p>
</div>
</div>
<!-- carousel -->
<div
id="carouselExampleControls-two"
class="for-carousal carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<!-- TAS Automation for RTOs in Australia -->
<div class="carousel-item active">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/TAS.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">TAS Automation for RTOs in Australia</h5>
<p class="descr-carousel-para card-text">
JungleCat's innovative TAS Automation platform is revolutionizing the Australian educational sector by simplifying the TAS creation process for RTOs. Ensuring full ASQA compliance, the platform fetches data from Training.gov autonomously, thoroughly mapping performance criteria, evidence, and knowledge for comprehensive compliance checks. This state-of-the-art automation tool remarkably diminishes the administrative workload, boosts transparency, and enables organizations to exhibit their commitment to excellence. With JungleCat's TAS Automation, compliance becomes systemic and unobtrusive, thereby propelling RTOs to not just meet but exceed industry standards, setting a new benchmark for success.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Qualification & Courses Management -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/qualification.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Qualification & Courses Management</h5>
<p class="descr-carousel-para card-text">
An academy may provide a plethora of courses under
different qualifications, on JungleCat the
Administrators can easily organize and manage different
courses and its respective details with ease. It helps
in listing and arrangement of courses under
qualification levels. Each of these course listings can
further be expanded and shared with teachers and
students, as it may include syllabuses, academic
calendars etc. This makes it easier for the teachers and
the students for quick and easy sync.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Class Room Experience with Unit Wise Feed -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/classroom.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">
Class Room Experience with Unit Wise Feed
</h5>
<p>
The class room experience of the new era is here, The
Unit wise Feed feature of JungleCat provides a
state-of-the-art virtual class room experience. With
each unit/subject having a feed that provides adequate
space for sharing information in any medium with the
respective teacher and classmates, allowing more space
for discussion, collaboration and more importantly the
feeling of companionship of the old classrooms.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Instant & scheduled real time video classes -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/instant-sheduled.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">
Instant & scheduled real time video classes
</h5>
<p class="descr-carousel-para card-text">
The virtual experience is only complete with video
sessions. JungleCat provides the most integral part of
the classroom by enabling the ability to hold clear and
crisp video classes inside the platform itself. This
includes the ability to schedule classes beforehand,
whichever type, recurring or single event they may be
and sync it with the schedules of the students and
teachers involved. This helps to avoid the clutters
caused by various video-sharing applications...
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Recorded video sessions -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/recorded-video.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Recorded video sessions</h5>
<p class="descr-carousel-para card-text">
With the virtual way of learning, recording certain
sessions become necessary, sometimes for the teacher to
evaluate or for the absent students to watch. On
JungleCat, video classes can be recorded and can be
availed from the video library, where it will be
perfectly arranged and be available to watch on
requirement. Recording sessions and archiving them
properly has never been easier.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Time and Schedule Management -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/time-sheduled.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Time and Schedule Management</h5>
<p class="descr-carousel-para card-text">
JungleCat solves the huge task of time management with
the schedule system synced across various participants.
A teacher can view their schedules; video sessions,
meetings, deadlines of various tasks they have assigned,
meanwhile a student can view relevant information by the
teachers on their calendars, like video classes,
assignment deadlines etc. An administrator can over
watch these sessions and schedules, allowing them to
intervene when necessary...
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Attendance management -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/attendance-management.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Attendance management</h5>
<p class="descr-carousel-para card-text">
An academy may provide a plethora of courses under
different qualifications, on JungleCat the
Administrators can easily organize and manage different
courses and its respective details with ease. It helps
in listing and arrangement of courses under
qualification levels. Each of these course listings can
further be expanded and shared with teachers and
students, as it may include syllabuses, academic
calendars etc. This makes it easier for the teachers and
the students for quick and easy sync.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Assessment management with automated audit evidence system -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/assessment-management.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">
Assessment management with automated audit evidence
system
</h5>
<p class="descr-carousel-para card-text">
JungleCat solves the huge task of time management with
the schedule system synced across various participants.
A teacher can view their schedules; video sessions,
meetings, deadlines of various tasks they have assigned,
meanwhile a student can view relevant information by the
teachers on their calendars, like video classes,
assignment deadlines etc. An administrator can over
watch these sessions and schedules, allowing them to
intervene when necessary...
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Student Portfolio -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/student-portfolio.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Student Portfolio</h5>
<p class="descr-carousel-para card-text">
An academy may provide a plethora of courses under
different qualifications, on JungleCat the
Administrators can easily organize and manage different
courses and its respective details with ease. It helps
in listing and arrangement of courses under
qualification levels. Each of these course listings can
further be expanded and shared with teachers and
students, as it may include syllabuses, academic
calendars etc. This makes it easier for the teachers and
the students for quick and easy sync.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Teacher profile -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/teacher-profile.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Teacher profile</h5>
<p class="descr-carousel-para card-text">
Get to know a teacher at a glance. Teacher profiles are
a way to know the teacher handling each unit. Both
students and admins can overview teacher profiles which
display basic details, portfolios, schedule, unit, and
other information you may need to know. For a new
student, the feature is very helpful. They can check who
all are teaching them and take a glance at each
teacher's profile before joining the class. The feature
assist admins to familiarize themselves with the staff
and unit allotted to them. The schedule displayed on the
profile is reliable for the teacher, just before the
class time. .
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Public & Class specific library -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/public-class-library.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Public & Class specific library</h5>
<p class="descr-carousel-para card-text">
An academy may provide a plethora of courses under
different qualifications, on JungleCat the
Administrators can easily organize and manage different
courses and its respective details with ease. It helps
in listing and arrangement of courses under
qualification levels. Each of these course listings can
further be expanded and shared with teachers and
students, as it may include syllabuses, academic
calendars etc. This makes it easier for the teachers and
the students for quick and easy sync.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Management report system -->
<div class="carousel-item">
<div class="carousel-container mt-3">
<div class="row">
<div
class="carousel-picture col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-7"
>
<div class="product">
<div>
<img
class="second-image-home mt-4"
src="./images/featurepage/management-report-system.png"
alt="image2"
/>
</div>
</div>
</div>
<div
class="col-xs-12 col-sm-12 col-md-12 col-lg-6 col-xl-5 mt-5"
>
<div class="boxtwo">
<img src="./images/homepage/blue-rectangle.png" />
<h5 class="mt-5">Management report system</h5>
<p class="descr-carousel-para card-text">
JungleCat has a well-developed management report system
that carries out administration and monitoring. While
providing all data accessible, it keeps all the report
readily available for download purposes. Evaluation and
feedback bring out the best of an institution which
demands the availability of bulk data. Our management
report system helps to do that by managing all these
reports efficiently leaving you with Zero paper work and
headaches.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls-two"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true">
<img src="./images/homepage/previous-icon.svg" />
</span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls-two"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true">
<img src="./images/homepage/next-icon.svg" />
</span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div class="viewAll">
<a href="/features">
View All
<span class="a">
<div class="arrow"><div class="head"></div></div>
</span>
</a>
</div>
<!-- * * * * * * * * * * * * * * * * * FAQ * * * * * * * * * * * * * * * * * * * -->
<div class="container-fluid faq-background-part">
<div class="container">
<!-- <div id="faq">
<div class="faq">
<h6>FAQ</h6>
</div>
<div>
<div class="title" style="margin-top: 24px;">
<p>Hello, How Can We Help?</p>
</div>
<div class="faqdesc">
<hr style="width: 10%; height: 5px; color: #8d94b0;" />
<p>
Everything you need to know about the product and billing.
</p>
</div>
</div>
</div> -->
<!-- * * * * * * * * * * * * * * * * * FAQ boxes * * * * * * * * * * * * * * * * * * * -->
<!-- <div class="accordion accordion-flush mt-5">
<div class="accordion-item">
<h2 class="accordion-header p-1">
<button
class="accordion-button collapsed ps-4 pb-4"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne"
aria-expanded="false"
aria-controls="flush-collapseOne"
>
Is there a free trail available?
</button>
</h2>
<div
id="flush-collapseOne"
class="accordion-collapse collapse"
aria-labelledby="flush-headingOne"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body">
<hr class="horrizondal" style="width: 98%; color: #8d94b0;" />
<p class="mt-4">
All the hassles of monitoring, managing and tracking can now
be done easily with JungleCat. Administrators can easily
access the platform to see what is happening in the classes.
This means high level data control throughout the platform
to edit and audit for maximum efficiency.
</p>
</div>
</div>
</div>
</div> -->
<!-- <div class="accordion accordion-flush mt-5">
<div class="accordion-item">
<h2 class="accordion-header p-1">
<button
class="accordion-button collapsed ps-4 pb-4"
type="button"