summaryrefslogtreecommitdiff
path: root/sh_helpdesk/static/description/index.html
blob: 46bb1ea52ada0dadd14c44e7d6340e00d73392ad (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
<!DOCTYPE html>
<html>
   <head>
      <title></title>
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
      </link>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
      </link>
   </head>
   <body>
      <!-- heading  -->
      <section id="sh_module_heading" style="padding-top: 50px;">
         <div class="container">
            <div class="sh_center text-center">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">Help Desk</h4>
               <img src="shape.png" style="width: 100px;display: block;text-align: center;margin: auto;margin-bottom: 20px;" />
               <p style="color: #777;font-size: 18px;margin: 0;letter-spacing: 1px;"> 
                  Are you looking for fully flexible and customisable helpdesk in odoo? Our this apps almost contain everything you need for Service Desk, Technical Support Team, Issue Ticket System which include service request to be managed in Odoo backend. Support ticket will send by email to customer and admin. Customer can view their ticket from the website portal and easily see stage of the reported ticket. This desk is fully customizable clean and flexible.
               </p>
            </div>
            <div class="alert alert-success" style="margin-top: 30px;">
               <a href="https://apps.odoo.com/apps/modules/14.0/sh_website_helpdesk/"><strong>Help Desk Website</strong> Advance modules.</a>
            </div>
               <div class="alert alert-danger" style="margin-top: 30px;">
         <a href="https://apps.odoo.com/apps/modules/14.0/sh_all_in_one_helpdesk/"><strong>All In One Helpdesk</strong> Advance Module.</a>
      </div>
         </div>
      </section>
      <div class="container">
         <div class="sh_center text-center">
            <h4 style="font-size:30px; font-weight:600; color:#212121; margin-bottom:20px">About Addons</h4>
            <hr style="width:100px; border-width:2px; border-color:#1976d2">
         </div>
         <table class="table" style="border:1px solid black;">
            <thead class="thead-dark">
               <tr>
                  <th scope="col" style="border:1px solid black;">Sr No.</th>
                  <th scope="col" style="border:1px solid black;">Addons</th>
                  <th scope="col" style="border:1px solid black;">Price</th>
               </tr>
            </thead>
            <tbody>
               <tr>
                  <th scope="row" style="border:1px solid black">1</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_crm/"><strong>Manage CRM With Helpdesk
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
               <tr>
                  <th scope="row" style="border:1px solid black">2</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_so/"><strong>Manage Sale Order With Helpdesk
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
               <tr>
                  <th scope="row" style="border:1px solid black">3</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_po/"><strong>Manage Purchase Order With Helpdesk
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
               <tr>
                  <th scope="row" style="border:1px solid black">4</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_invoice/"><strong>Manage Invoice With Helpdesk
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
               <tr>
                  <th scope="row" style="border:1px solid black">5</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_timesheet/"><strong>Helpdesk Timesheet
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
               <tr>
                  <th scope="row" style="border:1px solid black">6</th>
                  <td style="border:1px solid black"> 
                     <a href="https://apps.odoo.com/apps/modules/14.0/sh_helpdesk_task/"><strong>Helpdesk Support Ticket To Task
                     </strong></a>
                  </td>
                  <td style="border:1px solid black">10 Eur</td>
               </tr>
            </tbody>
         </table>
      </div>
      <section id="sh_key_features" style="padding: 50px 0px;">
         <div class="container">
            <div class="sh_center text-center" style="margin-bottom: 40px;">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">Key Features</h4>
               <hr style="width: 100px;border-width: 2px;border-color: #1976d2;" />
            </div>
          
             <div class="row">
               <div class="col-md-6">
                  <a href="https://youtu.be/fgHNH_W69wM?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Update Mass Ticket.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-6">
                  <a href="https://youtu.be/2QfGoSuDQho?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Whatsapp.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-6">
                  <a href="https://youtu.be/OKfhkva1gi4?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk SLA Policy.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-6">
                  <a href="https://youtu.be/OKfhkva1gi4?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Ticket Reminder.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-12">
                  <a href="https://www.youtube.com/watch?v=KHJByCfaGCM&list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W&index=5" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="helpdesk backend new.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-6">
                  <a href="https://youtu.be/c8tg6ibCmu0?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="stages.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-6">
                  <a href="https://youtu.be/TKpTTetT5RI?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="email.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-4">
                  <a href="https://youtu.be/EQ8tPyc-vY4?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Dynamic Dashboard.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-4">
                  <a href="https://youtu.be/JBAJSu0ixjg?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Create Ticket From Inbound Mail.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-4">
                  <a href="https://youtu.be/EZ9sVoIA1CU?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Userwise Helpdesk.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-6">
                  <a href="https://youtu.be/h3CU7u4ThnM?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Portal.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-6">
                  <a href="https://youtu.be/OuDPDrDw2bo?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Portal Customer.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-12">
                  <a href="https://youtu.be/IzfPcQ1yRI0?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Quick Reply.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-6">
                  <a href="https://youtu.be/FGT8dzXtsMc?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Multiple User for Backend.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
               <div class="col-md-6">
                  <a href="https://youtu.be/QCjDno_5ZyU?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Helpdesk Multiple User for Portal.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
            <div class="row">
               <div class="col-md-12">
                  <a href="https://youtu.be/5YtrTn12BfU?list=PL-zDV7_rrd2qrjmF5c5l95nDkYxulAqc_" target="_blank" class="sh_shape_snippet" style="display: block;margin-top: 30px;">
                  <img src="Manage Products.png" style="width: 100%;border: 2px solid #aaaaaa;" />
                  </a>
               </div>
            </div>
         </div>
      </section>
          
      <!-- video -->
      <!-- <section id="sh_video" style="margin-top: 50px;text-align: center;">
         <div class="container">
          <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Videos</h4>
          <hr style="width: 80px; border-width: 2px; border-color: #1976d2;" />
         
          <div class="row" style="margin-top: 30px;">
              
              <div class="col-md-4">           
                 <div class="sh_icon" style="border: 2px solid #aaa;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                    <a href="https://youtu.be/EQ8tPyc-vY4?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;padding: 20px;display: block;text-decoration: none;">
                      Dynamic Dashboard
                    </a>
                 </div>            
           </div>
           <div class="col-md-4">          
                 <div class="sh_icon" style="border: 2px solid #aaa;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                    <a href="https://www.youtube.com/watch?v=N-sNKjDTMtA&feature=youtu.be" target="_blank" style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;padding: 20px;display: block;text-decoration: none;">
                      Help Desk
                    </a>
                 </div>            
           </div>
           <div class="col-md-4">          
                 <div class="sh_icon" style="border: 2px solid #aaa;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                    <a href="https://youtu.be/EZ9sVoIA1CU?list=PL-zDV7_rrd2pdNKurRK-TyKxYjImOJZ_W" target="_blank" style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;padding: 20px;display: block;text-decoration: none;">
                      Userwise Help Desk
                    </a>
                 </div>            
           </div>
         </div>
         </div>
         </section> -->
      <!-- feature -->
      <section id="sh_feature" style="padding-top: 50px;">
         <div class="container">
            <div class="sh_center text-center">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">Hot Features</h4>
               <hr style="width: 100px;border-width: 2px;border-color: #1976d2;" />
            </div>
             <div class="row">
               <div class="col-md-12">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Auto Change Replied Status Based On Customer/Staff Replied.<img src="hot tag.png" style="max-width:80px; padding-left:10px">
                     </span>
                  </div>
               </div>
            </div>
            <div class="row">
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Helpdesk Whatsapp<img src="hot tag.png" style="max-width:25%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Helpdesk SLA Policy<img src="hot tag.png" style="max-width:25%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Helpdesk Ticket Alarm<img src="hot tag.png" style="max-width:25%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Search panel<img src="new tag.png" style="max-width:50%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Manage Products<img src="new tag.png" style="max-width:50%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Helpdesk Multiple User<img src="new tag.png" style="max-width:50%; padding-left:10px">
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Helpdesk Quick Reply
                     </span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <div style="background-color: #1976d2;display: inline-block;border-radius: 50%;">
                        <span class="fa fa-tachometer" style="width: 35px;height: 35px;text-align: center;line-height: 32px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     </div>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Ticket on Portal</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <div class="fa fa-puzzle-piece " style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 32px;border-radius: 50%;color: #fff;font-size: 16px;"></div>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Dynamic Stages</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-address-card-o" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 32px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 8px;">Dynamic Dashboard Table</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-circle" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Dynamic Dashboard Filter</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-check-square " style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Reply via E-Mails</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-eye-slash" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Customer Feedback</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-mobile" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 20px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">PDF Report</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-cog" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Auto Close Ticket</span>
                  </div>
               </div>
               <div class="col-md-4">
                  <div class="sh_icon" style="border: 1px solid #aaa;padding: 20px;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                     <span class="fa fa-pencil-square-o" style="background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;border-radius: 50%;color: #fff;font-size: 16px;"></span>
                     <span style="color: #212121;font-weight: 600;vertical-align: middle;padding-left: 10px;">Readymade Email Template</span>
                  </div>
               </div>
            </div>
         </div>
      </section>
      <section id="sh_features" style="padding: 50px 0px;">
         <div class="container">
            <div class="sh_center text-center" style="margin-bottom: 40px;">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">Features</h4>
               <hr style="width: 100px;border-width: 2px;border-color: #1976d2;" />
            </div>
            <ul style="padding: 0;list-style: none;">
                  <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can update multiple tickets using "Mass-Action". <span class="badge badge-danger" style="background-color: #f44336 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">New</span>
               </li>
                <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Configuration added to send common quick reply. <span class="badge badge-danger" style="background-color: #f44336 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">New</span>
               </li>
                <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  When an inbound email comes then the email subject shows in the form view & kanban view. <span class="badge badge-danger" style="background-color: #f44336 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">New</span>
               </li>
                <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Email notification goes to the assigned user when customers see tickets from the portal. <span class="badge badge-danger" style="background-color: #f44336 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">New</span>
               </li>
                  <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can send helpdesk tickets direct to the customer's WhatsApp. <span class="badge badge-danger" style="background-color: #C62828 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">HOT</span>
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can use the helpdesk SLA policy for good customer support. <span class="badge badge-danger" style="background-color: #C62828 !important;
                     padding: 5px 14px;
                     border-radius: 3px;
                     color: #fff;
                     font-size: 9px;
                     text-transform: uppercase;
                     font-weight: bold;
                     box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">HOT</span>
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can set a helpdesk ticket alarm for different tasks. 
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can edit multiple tickets in the list view.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Easy to use search panel in the list & kanban view. 
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can manage products in tickets as well you can display products in the ticket PDF report. 
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  You can assign a single ticket to more than one user. 
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  In this update you have 'Send Quick Reply Template' feature.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Easy to enable 'Send Quick Reply' features.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Easy to create default reply templates for perticular questions.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Users can see only their own quick replay templates.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Only that user can see 'Quick Reply' menu if 'Send Quick Reply' group is enable.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Access rights for Helpdesk Manager, Helpdesk Team Leader, Helpdesk User.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span> 
                  Easy to create ticket by helpdesk user.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to define stages as per your requirement.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to set access right and email templates for perticular stages.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to set days for auto closing tickets.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Fully customise and dynamic dashboard.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to define dynamic filter for dashboard.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Well organized data in table formate on dashboard.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Well organized data in table formate on dashboard.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Well organized calender, pivot, graph, kanban views.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Customer see ticket status from portal and email links.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Well organized portal for ticket.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to group by, search, and create ticket on portal.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Auto notifies via email to assigned user and customer while the ticket is created.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Auto share feedback link while ticket is closed.
               </li>
               <li style="border: 2px solid #aaa;padding: 20px;margin-bottom: 20px;font-size: 16px;color: #212121;font-weight: 600;letter-spacing: 1px;display: block;"><span class="fa fa-hand-o-right" style="color: #1976d2;font-weight: 600;font-size: 18px;padding-right: 10px;"></span>
                  Easy to chat with customer from chatter.
               </li>
            </ul>
         </div>
      </section>
<section id="sh_tab" style="padding-top: 50px;">
    <div class="container">
        <ul class="nav nav-tabs justify-content-center" role="tablist" style="justify-content: center; padding-bottom: 10px; border-bottom: 2px solid #aaa;">
            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                <a class="nav-link active" data-toggle="tab" href="#Setup" style="color: #333; border: 2px solid #1c76d2;">Setup</a>
            </li>
            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                <a class="nav-link" data-toggle="tab" href="#Release" style="color: #333; border: 2px solid #1c76d2;">Releases</a>
            </li>
            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                <a class="nav-link" data-toggle="tab" href="#FAQ" style="color: #333; border: 2px solid #1c76d2;">FAQs</a>
            </li>
            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                <a class="nav-link" data-toggle="tab" href="#Support" style="color: #333; border: 2px solid #1c76d2;">Support</a>
            </li>
        </ul>
        <div class="tab-content" style="margin-top: 30px;">
            <!-- tab 2 -->
            <div id="Setup" class="tab-pane active">
                <section id="sh_sub_tab" style="padding-top: 15px;">
                    <div class="container">
                        <ul class="nav nav-tabs justify-content-center" role="tablist" style="justify-content: center; padding-bottom: 10px; border-bottom: 2px solid #aaa;">
                            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                                <a class="nav-link active" data-toggle="tab" href="#Backend" style="color: #333; border: 2px solid #1c76d2;">Backend</a>
                            </li>
                            <li class="nav-item" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                                <a class="nav-link" data-toggle="tab" href="#Portal" style="color: #333; border: 2px solid #1c76d2;">Portal</a>
                            </li>
                            <li class="nav-item position-relative" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                                <a class="nav-link" data-toggle="tab" href="#updates" style="color: #333; border: 2px solid #1c76d2;">Latest Updates</a>
                                <img class="position-absolute fixed-top" src="new.png" alt="new_tag_ribbon" style="height: 35px;" />
                            </li>
                            <li class="nav-item position-relative" style="background-color: rgba(25, 118, 210, 0.6); color: #fff; border-radius: 0; font-weight: 600; font-size: 14px; margin: 0 5px;">
                                <a class="nav-link" data-toggle="tab" href="#wp" style="color: #333; border: 2px solid #1c76d2;">Helpdesk Whatsapp</a>
                                <img class="position-absolute fixed-top" src="new.png" alt="new_tag_ribbon" style="height: 35px;" />
                            </li>
                        </ul>
                    </div>
                </section>
                <div class="container tab-content" style="margin-top: 30px;">
                    <div class="tab-pane active" id="Backend">
                      <section id="sh_module_heading" style="padding-top: 50px;">
  <div class="container">
    <div class="sh_center text-center">
      
      
         <h2 align="center">
            <a style="background-color: #1976d2; color: white; border-color: #1976d2; position: relative; overflow: hidden;padding: 1%;text-decoration: none;border-radius: 0px;display: inline-block;" class="btn btn-success btn-lg" href="https://youtu.be/kEpp1eHiPSs" target="_blank"><span class="o_ripple d-block position-absolute rounded-circle" style="height: 398px; width: 398px; top: -164px; left: -147.891px;"></span>Helpdesk - Stages Configuration Flow<img src="neww.png" style="max-width: 100%;padding-left: 10px;height: 20px;width: auto;vertical-align: text-bottom;" /></a>
        </h2>

        
    </div>
  </div>
</section> <br/>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Access group for "Helpdesk Manager", "Helpdesk Team Leader", "Helpdesk User"
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="0.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk Teams menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Teams" form view. Where you can define team member and team leader or set team as default.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Tickets Type" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Subject Types" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Tags" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Stages" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Stages" form view. Where you can define stages and it's access rights, E-Mail template, next stage.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="7.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Categories" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="8.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Sub Categories" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="9.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Priorities" menu and list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="10.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Setting" View.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="11.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" Kanban view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="12.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" List view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="13.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" Pivot view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="14.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" Graph view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="15.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" Calender view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="16.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" Schedule activity view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="17.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" form view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="18.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" form attachment view. Where you can attach document received from customer.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="19.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When ticket is created that time customer will notify via email.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="new request.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When ticket is created that time assign user will notify via email.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="assign user.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When you click on the 'Reply' button on the form, this wizard will appear where you can set an email template as per reply. In Email, there is one link 'View Ticket', Where customer can see the ticket status.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="20.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Replied Date' added after reply and replied status will change 'Staff Replied'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="21.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                While ticket is closed, customer will notify via email with feedback link. click on link.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="22.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                After click on link customer will see this view, where customer give feedback with comment.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="feedback portal.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Thank you message after submit feedback.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="thank.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Customer feedback.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="feedback.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Ticket Close" information will added here.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ticket close.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Chat with customer in chatter.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="24.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Ticket on Portal.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal 1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                List view on portal. You can group by, create and search tickets. You can create a ticket only if you have the
                                <a href="https://apps.odoo.com/apps/modules/14.0/sh_website_helpdesk/">
                                    <strong>Website Help Desk</strong>
                                </a>
                                module installed.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal list options.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk Portal ticket in PDF for backend.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="pdf.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Ticket Dashboard' for Helpdesk Manager. Where you can filter data with various filters and see data in well organized table formate.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Ticket-Dashboard-Odoo.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Ticket Dashboard' for Helpdesk Team Leader. Where leader can see only his team data and filter data with various filters, see data in well organized table formate.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Leader.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Ticket Dashboard' for Helpdesk User. Where user can see only ticket which is assigned, filter data with date filters and see data in well organized table formate.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="user.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <!-- Send Quick Reply -->
                        <div class="sh_center text-center">
                            <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Send Quick Reply</h4>
                            <hr style="width: 100px; border-width: 2px; border-color: #1976d2;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Goto user config setting, Enable 'Send Quick Reply'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                After that you can see the 'Send Quick Reply' menu, sub menu and 'Quick Reply Template' list view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Send Quick Reply Mail Template' Form View, Here you can create quick reply template.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Now go to Setting ==> Technical ==> Template. Open 'Ticket Reply : Send by Email'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In 'Ticket Reply : Send by Email', click on mark point(it will display, if debug mode is on).
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                After that you will see window like code editor, here you have to past '&lt;div class="predefined"&gt; &lt;/div&gt; ' code at mark place in screenshot.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Now goto helpdesk ticket form view and click on 'Reply'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/7.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Here select appropriate quick reply template and you can see the reply message in message box. And click on 'Send' Enjoy...
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="quick_reply/8.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <!-- Send Quick Reply -->
                        <!-- Multi User Backend -->
                        <div class="sh_center text-center">
                            <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Multi User</h4>
                            <hr style="width: 100px; border-width: 2px; border-color: #1976d2;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Goto user config setting, Enable 'Display Multi User'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can select more than one user for each tickets. All assign multi user can see the ticket.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Technical Leader' user can see the ticket.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Technical B' user can see the ticket.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Technical A' user can see the ticket.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                'Technical C' user can not see the ticket because ticket was not assigned.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="Multi_user/MU6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="sh_center text-center">
                            <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Manage Products</h4>
                            <hr style="width: 100px; border-width: 2px; border-color: #1976d2;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Goto user config setting, Enable 'Manage Products'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="helpdesk_1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can select products for each ticket.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="helpdesk_2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Ticket PDF report with the products.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="helpdesk_3.png" style="margin-bottom: 10px;" />
                        </div>
                        <!-- Multi User Backend -->
                        <!-- conf img -->
                    </div>

                    <div class="tab-pane fade" id="Portal">
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In User configuration there is access rights for only portal users.(Only visible when portal user true)
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/3p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Portal Manager"
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/5p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Portal Leader"
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/6p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Portal User"
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/7p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                If you want to set access for the portal customer then, 'Portal Access' leave it blank
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/8p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Login with Portal Support User and click on "Create".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/1p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                This Wizard will popout after click on create. Here Only Portal Manager,Leader, Manager can select partners.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/2p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Login with 'Portal Customer'. Customer can only create ticket for self only.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/9p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Login with 'Portal Support Leader'. If the customer exists then all required fields fill automatically.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/11p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                If any new customer arrived, then create ticket with name and email, it will create new customer in backend.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/12p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                New customer created and it will automatically added to followers.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/13p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Created cutomer form view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal/14p.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In portal you can download ticket in PDF formate also. Just click 'Download'.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="portal pdf 14.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Ticket in PDF formate.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="pdf img.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                    </div>

                    <div class="tab-pane fade" id="updates">
                      <div class="sh_center text-center">
                            <h4 style="font-size: 20px; font-weight: 600; color: #212121; margin-bottom: 20px;">v 14.0.14</h4>
                           
                        </div>
 <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can update multiple tickets using "Mass-Action". You can update assigned to person, stage, assign multi-user & add/remove followers.

                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="mass.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can send common quick reply.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="reply.gif" style="width: 100%; margin-bottom: 10px;" /><br/>
                        </div>
                        
                       

 <hr style="border-width: 2px; border-color: #1976d2;" />

                       <div class="sh_center text-center">
                            <h4 style="font-size: 20px; font-weight: 600; color: #212121; margin-bottom: 20px;">v 14.0.12</h4>
                           
                        </div>
 <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                We were by default adding customers as followers on ticket create, to make this better we have given configuration to on/off these auto-add followers.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="auto_add_follower.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                We have updated the auto-close mechanism based on the last replied date of staff.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="auto_close_ticket.gif" style="width: 100%; margin-bottom: 10px;" /><br/>
                            <img src="resolved_ticket.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Auto Update Replied Status & Replied Date Based On Customer/Staff Replied To Ticket".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="reply_status.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                       
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Default search updated with name, customer,multi-user, assigned to user, email, email subject, mobile number fields.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="search_field.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                We have updated the counter tiles click records list.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="dashboard_counter_click.gif" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                       

 <hr style="border-width: 2px; border-color: #1976d2;" />


                      <div class="sh_center text-center">
                            <h4 style="font-size: 20px; font-weight: 600; color: #212121; margin-bottom: 20px;">v 14.0.11</h4>
                           
                        </div>
 <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                First, choose a timezone.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Based on timezone create date and last update date comes.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                               Create date and last update date at the portal.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When direct/inbound email comes then the email subject shows in the form view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When direct/inbound email comes then the email subject shows in the kanban view.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                               Enable "Get email when customer view ticket?".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                         <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                               When customers see tickets from portal then email notification goes to assigned user.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="ssn7.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>

 <hr style="border-width: 2px; border-color: #1976d2;" />

                        <div class="sh_center text-center">
                            <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Helpdesk SLA</h4>
                            <hr style="width: 100px; border-width: 2px; border-color: #1976d2;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk SLA Policy & Helpdesk Ticket Reminder security groups.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Go to the configuration => "Helpdesk SLA Policies".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                The "Helpdesk SLA Policy" form view looks like this, you can see SLA tickets from the smart button "SLA Tickets".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "SLA Tickets" form view looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can see helpdesk SLA tickets also from the helpdesk ticket types using the smart button "Helpdesk SLA".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "SLA Tickets" form view looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Teams" form view. Where you can define working schedule as well as see helpdesk SLA ticket using the smart button "Helpdesk SLA".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s7.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                The search panel in the helpdesk tickets looks like this, you can filter SLA using different filters.
                                <br />
                                Note: Search panel and multi-edit option available in only v13 & v14.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s8.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can edit multiple records from the helpdesk tickets list view.
                                <br />
                                Note: Search panel and multi-edit option available in only v13 & v14.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s9.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                "Helpdesk Ticket" form view, create a ticket and save it.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s10.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                The "Helpdesk Ticket" form view with SLA policies.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s11.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In the helpdesk ticket form view, you can see SLA deadline, Now we press the "Approve" button.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s12.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When press on the "Approve" button and all policies are approved then stage change to "Done".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s13.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can do helpdesk SLA analysis from the "Reporting" menu.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s14.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="sh_center text-center">
                            <h4 style="font-size: 30px; font-weight: 600; color: #212121; margin-bottom: 20px;">Helpdesk Ticket Alarm</h4>
                            <hr style="width: 100px; border-width: 2px; border-color: #1976d2;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Enable "Ticket Reminder".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s15.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Go to the configuration => "Helpdesk Ticket Alarm".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s16.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk ticket alarm form view looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s17.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>

                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk ticket alarm form view with the ticket reminder.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s20.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk ticket reminders can run using a cron job.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s21.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk ticket reminders popup looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s22.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Helpdesk ticket reminders email looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="s23.png" style="width: 100%; margin-bottom: 10px;" /><br />
                            <br />
                            <img src="s24.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                    </div>

                    <div class="tab-pane fade" id="wp">
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In "User", enable the "Helpdesk Whatsapp Feature" option.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w1.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Whatsapp message description with the configuration setting.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w4.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Set the signature in the message, <br />
                                1) Go to Preferences.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w2.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                2) Add Signature.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w3.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>

                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Click "Send By WhatsApp" Button in helpdesk tickets.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w5.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                Choose recipient, template and edit Message as required and click send by whatsapp.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w6.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                This is the output shown in the WhatsApp messenger.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w7.png" style="width: 100%; margin-bottom: 10px;" /><br />
                            <img src="w8.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>

                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                In helpdesk ticket chatter you can see the message which is sent.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w9.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                You can send a Whatsapp message direct from the dashboard.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w10.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                After that one wizard opens, select details and press "Send".
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w11.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                This is the output shown in the WhatsApp messenger.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w12.png" style="width: 100%; margin-bottom: 10px;" /><br />
                            <img src="w13.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>

                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                When you click "Send By WhatsApp" Button in helpdesk tickets, this wizard opens choose details and if you click send then mail is sent.<br />

                                If you click send by WhatsApp it sends the message on WhatsApp.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w14.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                        <div class="confi_img" style="text-align: center;">
                            <p style="color: #1976d2; font-size: 18px; margin-bottom: 10px; letter-spacing: 1px;">
                                The sent email looks like this.
                            </p>
                            <hr style="width: 100px; border-width: 2px; border-color: #d3d3d3;" />
                            <img src="w15.png" style="width: 100%; margin-bottom: 10px;" /><br />
                            <img src="w16.png" style="width: 100%; margin-bottom: 10px;" />
                        </div>
                    </div>
                </div>
            </div>

            <div id="Release" class="tab-pane fade">
                 <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.14</span> | <span style="color: #1976d2;">Released on : 24 July 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                      
                        <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> Update mass ticket using "Multi Action".
                        </li>
                          <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> Configuration added to send common quick reply.
                        </li>
                         
                    </ul>
                </div>
                <div class="sh_content" style="border:2px solid #aaa; padding:20px; margin-bottom:20px">

                 <h4 style="font-size:16px; margin:0; color:#212121; text-decoration:none; font-weight:600; letter-spacing:1px; display:block"><span class="fa fa-hand-o-right" style="color:#1976d2; font-weight:600; font-size:18px; padding-right:10px"></span> <span>Version 14.0.13</span> | <span style="color:#1976d2">Released on : 20 July 2021</span></h4>
                 <ul style="font-size:16px; padding-left:20px; color:#555; margin:0; padding-top:20px">
                     <li>
                            <span class="badge badge-warning" style="background: #FF9800;
padding: 5px 10px;
border-radius: 3px;
color: #fff;
font-size: 9px;
text-transform: uppercase;
font-weight: bold;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);">Update</span> Close Ticket From Scheduler Updated.
                        </li>               
                 </ul>  
              </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.12</span> | <span style="color: #1976d2;">Released on : 16 July 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                       <li>
                            <span class="badge badge-warning" style="background: #ff9800;padding: 5px 10px;border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">Update</span> Default search updated with name, customer,multi-user, assigned to user,email, email subject, mobile number fields.
                        </li>
                           <li>
                            <span class="badge badge-warning" style="background: #ff9800;padding: 5px 10px;border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">Update</span> Auto add follower configuration is added for a customer when creating a ticket.
                        </li>
                      
                        <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> We have updated the counter tiles click records list.
                        </li>
                           <li>
                            <span class="badge badge-warning" style="background: #ff9800;padding: 5px 10px;border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">Update</span> Auto Change Replied Status Based On Customer/Staff Replied.
                        </li>
                           <li>
                            <span class="badge badge-warning" style="background: #ff9800;padding: 5px 10px;border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">Update</span> Updated auto close mechanism based on last replied date of staff.
                        </li>
                       
                    </ul>
                </div>
               <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.11</span> | <span style="color: #1976d2;">Released on : 5 July 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                      
                        <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> When direct/inbound email comes then the email subject shows in the form view & kanban view.
                        </li>
                         <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> When customers see tickets from portal then email notification goes to assigned user configurations added.
                        </li>
                         <li>
                            <span class="badge badge-success" style="background-color: #43a047 !important; padding: 5px 17px; border-radius: 3px;color: #fff;font-size: 9px;text-transform: uppercase;font-weight: bold;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);">New</span> Timezone wise create date and last update date shows in the portal form.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.10</span> | <span style="color: #1976d2;">Released on : 4 June 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Helpdesk Whatsapp Feature Added.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.9</span> | <span style="color: #1976d2;">Released on : 29 May 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Helpdesk SLA Policy Added.
                        </li>
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Helpdesk Ticket Reminder Added.
                        </li>
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Multiple edit records added in ticket list view.
                        </li>
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Search panel is added in ticket list & kanban view.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.8</span> | <span style="color: #1976d2;">Released on : 4 May 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-info"
                                style="
                                    background: #2196f3;
                                    padding: 5px 15px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                Fixed
                            </span>
                            Minor Bug Fixed.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.7</span> | <span style="color: #1976d2;">Released on : 30 March 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Manage Products Added.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.6</span> |
                        <span style="color: #1976d2;">Released on : 4 February 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-success"
                                style="
                                    background-color: #43a047 !important;
                                    padding: 5px 17px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                New
                            </span>
                            Multi User Added.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.5</span> |
                        <span style="color: #1976d2;">Released on : 1 February 2021</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-warning"
                                style="
                                    background: #ff9800;
                                    padding: 5px 10px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                Update
                            </span>
                            Quick Reply Templates.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.4</span> |
                        <span style="color: #1976d2;">Released on : 1 December 2020</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-warning"
                                style="
                                    background: #ff9800;
                                    padding: 5px 10px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                Update
                            </span>
                            Make Separate Portal Access Rights.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.3</span> |
                        <span style="color: #1976d2;">Released on : 1 December 2020</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>
                            <span
                                class="badge badge-info"
                                style="
                                    background: #2196f3;
                                    padding: 5px 15px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                Fixed
                            </span>
                            Portal Side Domain Related Issue Fixed.
                        </li>
                        <li>
                            <span
                                class="badge badge-warning"
                                style="
                                    background: #ff9800;
                                    padding: 5px 10px;
                                    border-radius: 3px;
                                    color: #fff;
                                    font-size: 9px;
                                    text-transform: uppercase;
                                    font-weight: bold;
                                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                                "
                            >
                                Update
                            </span>
                            Dashboard Responsive View Updated.
                        </li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.2</span> |
                        <span style="color: #1976d2;">Released on : 24 November 2020</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>Mail Template Error Fix.</li>
                    </ul>
                </div>
                <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                    <h4 style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: block;">
                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span> <span>Version 14.0.1</span> |
                        <span style="color: #1976d2;">Released on : 13 October 2020</span>
                    </h4>
                    <ul class="list-unstyled" style="list-style-type: disc; font-size: 16px; padding-left: 20px; color: #555; margin: 0; padding-top: 20px;">
                        <li>Initial Release.</li>
                    </ul>
                </div>
            </div>

            <div id="FAQ" class="tab-pane fade">
                <div class="demo">
                    <div class="panel-group" id="accordion" role="tablist">
                        <div class="panel panel-default" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                            <div class="panel-heading" role="tab" id="headingOne" style="border: 0; padding: 0;">
                                <h4 class="panel-title" style="margin: 0;">
                                    <a
                                        role="button"
                                        data-toggle="collapse"
                                        data-parent="#accordion"
                                        href="#collapseOne"
                                        aria-expanded="true"
                                        aria-controls="collapseOne"
                                        style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: flex;"
                                    >
                                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span>
                                        Is this app compatible with Odoo Community as well as Enterprise?
                                        <!--  <span class="fa fa-plus" style="float: right;background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;color: #fff;border-radius: 50%;margin-top: -8px;"></span> -->
                                    </a>
                                </h4>
                            </div>
                            <div id="collapseOne1" class="panel-collapse collapse show" role="tabpanel" aria-labelledby="headingOne">
                                <div class="panel-body" style="padding-top: 20px;">
                                    <ul style="list-style-type: disc; font-size: 16px; padding-left: 30px; color: #555; margin: 0;">
                                        <li style="margin-bottom: 5px;">Yes, this app works perfectly with Odoo Enterprise as well as Community.</li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <div class="panel panel-default" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                            <div class="panel-heading" role="tab" id="headingThree" style="border: 0; padding: 0;">
                                <h4 class="panel-title" style="margin: 0;">
                                    <a
                                        class="collapsed"
                                        role="button"
                                        data-toggle="collapse"
                                        data-parent="#accordion"
                                        href="#collapseThree"
                                        aria-expanded="false"
                                        aria-controls="collapseThree"
                                        style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: flex;"
                                    >
                                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span>
                                        I want to some customization in this app. How can I request it?
                                        <!-- <span class="fa fa-plus" style="float: right;background-color: #1976d2;width: 35px;height: 35px;text-align: center;line-height: 35px;color: #fff;border-radius: 50%;margin-top: -8px;"></span> -->
                                    </a>
                                </h4>
                            </div>
                            <div id="collapseThree3" class="panel-collapse collapse show" role="tabpanel" aria-labelledby="headingThree">
                                <div class="panel-body" style="padding-top: 20px;">
                                    <ul style="list-style-type: disc; font-size: 16px; padding-left: 30px; color: #555; margin: 0;">
                                        <li style="margin-bottom: 5px;">
                                            Please Contact Us at <a href="mailto:sales@softhealer.com" style="color: #007bff; font-weight: 600; text-decoration: none;">sales@softhealer.com</a>to request customization.
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <div class="panel panel-default" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                            <div class="panel-heading" role="tab" id="headingThree" style="border: 0; padding: 0;">
                                <h4 class="panel-title" style="margin: 0;">
                                    <a
                                        class="collapsed"
                                        role="button"
                                        data-toggle="collapse"
                                        data-parent="#accordion"
                                        href="#collapseThree"
                                        aria-expanded="false"
                                        aria-controls="collapseThree"
                                        style="font-size: 16px; margin: 0; color: #212121; text-decoration: none; font-weight: 600; letter-spacing: 1px; display: flex;"
                                    >
                                        <span class="fa fa-hand-o-right" style="color: #1976d2; font-weight: 600; font-size: 18px; padding-right: 10px;"></span>
                                        Do i get free support?
                                    </a>
                                </h4>
                            </div>
                            <div id="collapseThree3" class="panel-collapse collapse show" role="tabpanel" aria-labelledby="headingThree">
                                <div class="panel-body" style="padding-top: 20px;">
                                    <ul style="list-style-type: disc; font-size: 16px; padding-left: 30px; color: #555; margin: 0;">
                                        <li style="margin-bottom: 5px;">Yes, we provide free support for 90 days.</li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <div id="Support" class="tab-pane fade">
                <div class="row">
                    <div class="col-md">
                        <div class="sh_content" style="border: 2px solid #aaa; padding: 20px; margin-bottom: 20px;">
                            <h4>
                                <a href="mailto:support@softhealer.com" style="text-decoration: none; color: #212121; font-size: 18px; font-weight: 600; letter-spacing: 1px;">
                                    <span class="fa fa-envelope" style="color: #1976d2; padding-right: 10px; font-size: 20px;"></span> Please mail us for support on <b style="color: #1976d2;">support@softhealer.com</b>
                                </a>
                            </h4>
                       
                        </div>
                    </div>
              
                </div>
            </div>
        </div>
    </div>
</section>

      <!--Multi Language -->
      <section id="sh_multi_language" style="margin: 50px 0;">
         <div class="container">
            <div class="sh_center text-center">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">Multi-Languages</h4>
               <hr style="width: 100px;border-width: 2px;border-color: #1976d2;" />
               We have added predefined some languages(English, German / Deutsch, Arabic, Spanish / Español) in module, If you want to add other language you can contact us on <a href="mailto:support@softhealer.com">support@softhealer.com</a>. We use google translator tools for multi-languages so possible translations can be not accurate. we accept suggest to make more accurate translations also on <a href="mailto:support@softhealer.com">support@softhealer.com</a>.
               <br/><br/>
            </div>
            <div class="row">
               <div class="col-lg-12 col-md-12 col-sm-12 col-12">
                  <div class="img" style="text-align: center;">
                     <img src="eng.png" title="English" alt="english" style="object-fit: cover;margin: 10px 10px;" />
                     <img src="german.png" title="Germany" alt="germany" style="object-fit: cover;margin: 10px 10px;" />
                     <img src="aarab.png" title="Arab" alt="arab" style="object-fit: cover;margin: 10px 10px;" />
                     <img src="spanish.jpg" title="Spanish" alt="spanish" style="object-fit: cover;margin: 10px 10px;" />
                  </div>
               </div>
            </div>
         </div>
      </section>
      <section id="sh_like_module" style="margin: 50px 0;">
         <div class="container">
            <div class="sh_center text-center">
               <h4 style="font-size: 30px;font-weight: 600;color: #212121;margin-bottom: 20px;">You May Also Like</h4>
               <hr style="width: 100px;border-width: 2px;border-color: #1976d2;" />
            </div>
            <!-- Indicators -->
            <!-- Content -->
            <div class="carousel-inner">
               <!-- #01 -->
               <div class="row">
                  <div class="col-md-4">
                     <div class="sh_content" style="text-align: center;border: 1px solid #aaa;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                        <div class="sh_img" style="padding: 10px;border-bottom: 1px solid #aaa;">
                           <a href="https://www.odoo.com/apps/modules/13.0/hr_employee_medical/">
                           <img src="image1.png" style="width: 100%;height: 200px;object-fit: contain;"></img>
                           </a>
                        </div>
                        <h4 style="font-size: 20px;font-weight: 600;color: #212121;padding: 10px;margin: 0;"> Employee Medical Examination
                        </h4>
                     </div>
                  </div>
                  <div class="col-md-4">
                     <div class="sh_content" style="text-align: center;border: 1px solid #aaa;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                        <div class="sh_img" style="padding: 10px;border-bottom: 1px solid #aaa;">
                           <a href="https://www.odoo.com/apps/modules/13.0/sh_certificate/">
                           <img src="image2.png" style="width: 100%;height: 200px;object-fit: contain;"></img>
                           </a>
                        </div>
                        <h4 style="font-size: 20px;font-weight: 600;color: #212121;padding: 10px;margin: 0;"> Certificates and Letters
                        </h4>
                     </div>
                  </div>
                  <div class="col-md-4">
                     <div class="sh_content" style="text-align: center;border: 1px solid #aaa;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);">
                        <div class="sh_img" style="padding: 10px;border-bottom: 1px solid #aaa;">
                           <a href="https://www.odoo.com/apps/modules/13.0/sh_event_seat_booking/">
                           <img src="image3.png" style="width: 100%;height: 200px;object-fit: contain;"></img>
                           </a>
                        </div>
                        <h4 style="font-size: 20px;font-weight: 600;color: #212121;padding: 10px;margin: 0;"> Event Seat Booking
                        </h4>
                     </div>
                  </div>
               </div>
               <!-- Controls -->
            </div>
         </div>
      </section>
   </body>
</html>