-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
965 lines (710 loc) · 36.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<base href="" />
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" type="image/png" href="images/favicon.png">
<title>Ashirbad | Home</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="format-detection" content="telephone=no">
<!-- Web Font
============================================= -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800" rel="stylesheet">
<!-- CSS
================================================== -->
<!-- Theme Color ============================================= -->
<link rel="stylesheet" id="color" href="css/blue.css">
<!-- Medicom Style
============================================= -->
<link rel="stylesheet" href="css/medicom.css">
<!-- This page
============================================= -->
<link href="css/revolution_style.css" rel="stylesheet">
<link href="css/settings.css" rel="stylesheet">
<!-- Bootstrap
============================================= -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Header Scripts
================================================== -->
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body class="fixed-header">
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<!-- Header
============================================= -->
<header id="header" class="medicom-header medical-nav">
<!-- Top Row
============================================= -->
<div class="solid-row"></div>
<div class="container">
<!-- Primary Navigation
============================================= -->
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display
============================================= -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#primary-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"> <img src="images/logo.png" alt="" title=""> </a></a>
</div>
<div class="collapse navbar-collapse navbar-right" id="primary-nav">
<ul class="nav navbar-nav">
<li class="dropdown active">
<a href="index.html" class="" data-toggle=""><i class="fa fa-home"></i>Home</a>
</li>
<li class="dropdown">
<a href="aboutus.html" class="" data-toggle=""><i class="fa fa-info-circle"></i>About Us</a>
</li>
<li class="dropdown">
<a href="services.html" class="" data-toggle=""><i class="fa fa-user-md"></i>SERVICES</a>
</li>
<!-- hide--
<li class="dropdown">
<a href="team.html" class="" data-toggle=""><i class="fa fa-users "></i>Team</a>
</li>
-- ended-->
<!--
<li class="dropdown last">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-plus"></i>Shop</a>
<ul class="dropdown-menu">
<li><a href="shop.html">Shop</a></li>
<li><a href="shop-detail.html">Shop detail</a></li>
<li><a href="shopping-cart.html">Shoping cart</a></li>
</ul>
</li>
--- Ended --->
<li class="dropdown last">
<a href="contact.html" class="" data-toggle=""><i class="fa fa-envelope-o"></i>Contact Us</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div id="content-index">
<!-- Main Banner
============================================= -->
<section id="slider" class="tp-banner-container index-rev-slider clearfix">
<div class="tp-banner" >
<ul>
<!-- Fade
============================================= -->
<li data-transition="fade" data-slotamount="10" data-thumb="">
<img src="images/heart-specialist.jpg" alt="image" />
<div class="caption sft" data-x="0" data-y="180" data-speed="3000" data-start="1300" data-easing="easeOutBack">
<img src="images/heart-icon.png" alt="">
</div>
<div class="caption lfr" data-x="770" data-y="100" data-speed="1500" data-start="900" data-easing="easeOutExpo">
</div>
<div class="caption sft big_white" data-x="0" data-y="265" data-speed="1000" data-start="1700" data-easing="easeOutExpo">
<strong> Addiction is a disease not a mental weakness </strong>
</div>
<!-- hide content--
<div class="caption sfr medium_grey" data-x="0" data-y="340" data-speed="1000" data-start="2500" data-easing="easeOutExpo">If you need a doctor for to consectetuer Lorem ipsum dolor, consectetur<br>
adipiscing elit. Ut volutpat eros adipiscing elit Ut volutpat. </div>
-->
<div class="caption sfb" data-x="0" data-y="410" data-speed="2500" data-start="2500" data-easing="easeOutExpo">
<a href="#" class="btn btn-rounded btn-bordered">say no to addiction</a>
</div>
</li>
<!-- Slide Right
============================================= -->
<li data-transition="slideright" data-slotamount="6" data-thumb="">
<img src="images/emergency-services.jpg" alt="image" />
<div class="caption sft" data-x="500" data-y="180" data-speed="2000" data-start="1300" data-easing="easeOutBack"><img src="images/emergency-services-icon.png" alt=""></div>
<div class="caption sft big_white" data-x="260" data-y="290" data-speed="1500" data-start="1700" data-easing="easeOutExpo"><strong>emergency services</strong></div>
<div class="caption sfb medium_grey text-center" data-x="140" data-y="370" data-speed="1500" data-start="2500" data-easing="easeOutExpo">If you need a drug de-addiction cum psychological rehabilitation Then you are in a right place<br>
T</div>
<div class="caption sfb" data-x="492" data-y="450" data-speed="2000" data-start="3000" data-easing="easeOutExpo"><a href="#" class="btn btn-rounded btn-bordered">say no to addiction</a></div>
</li>
<!-- Slide Up
============================================= -->
<li data-transition="slideup" data-slotamount="15" data-thumb="">
<img src="images/better-technology.jpg" alt="image" />
<div class="caption sfl" data-x="0" data-y="180" data-speed="1500" data-start="1300" data-easing="easeOutBack"><img src="images/better-technology-icon.png" alt=""></div>
<div class="caption sfr" data-x="600" data-y="0" data-speed="900" data-start="1500" data-easing="easeOutExpo">
</div>
<div class="caption sft big_white" data-x="0" data-y="265" data-speed="1500" data-start="1700" data-easing="easeOutExpo"><strong>better technology</strong></div>
<div class="caption sfr medium_grey" data-x="0" data-y="340" data-speed="1500" data-start="2500" data-easing="easeOutExpo">We provide better technlogy to fix yiour things<br>
just kidding</div>
<div class="caption sfb" data-x="0" data-y="410" data-speed="300" data-start="2500" data-easing="easeOutExpo"><a href="#" class="btn btn-rounded btn-bordered">say no to addiction</a></div>
</li>
</ul>
</div>
</section>
<!-- Home Boxes
============================================= -->
<div class="row text-center no-margin">
<div class="col-md-4 bg-default">
<div class="home-box">
<span class="glyphicon glyphicon-tint"></span>
<h3>CARE</h3>
<p>If you need a drug de-addiction cum psychological rehabilitation Then you are in a right place</p>
</div>
</div>
<div class="col-md-4">
<div class="home-box opening-hours clearfix">
<span class="glyphicon glyphicon-time"></span>
<h3>Opening Hours</h3>
<p> </p>
<ul class="list-unstyled">
<li class="clearfix">
<span>
Monday - Friday
</span>
<div class="value">
00.00 - 23.59
</div>
</li>
<li class="clearfix">
<span>
Saturday
</span>
<div class="value">
00.00 - 23.59
</div>
</li>
<li class="clearfix">
<span>
Sunday
</span>
<div class="value">
00.00 - 23.59
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4 bg-default">
<div class="home-box">
<span class="glyphicon glyphicon-tint"></span>
<h3>TREATMENT PLAN</h3>
<p aligh="left"> Identification through peer education.</p>
<p aligh="left"> The motivation of clients, family & members.</p>
<p aligh="left"> Rapport Establishment.</p>
</div>
</div>
</div>
<!-- Appointment
============================================= -->
<section class="appointment-sec text-center">
<div class="container">
<h1>Make an appointment</h1>
<p class="lead"><!--Hide--Text sub heADIMNG CVONTENT--></p>
<div class="row">
<div class="col-md-6">
<figure><img src="images/appointment-img.jpg" alt="image" title="Appointment image" class="img-responsive lady1"></figure>
</div>
<div class="col-md-6">
<div class="appointment-form clearfix">
<div class="success" id="message-app" style="display:none;"></div>
<form name="appoint_form" id="appoint_form" method="post" action="submit.php" onSubmit="return false">
<input type="text" name="app_fname" id="app_fname" placeholder="First Name" onKeyPress="removeChecks();">
<input type="text" name="app_lname" id="app_lname" placeholder="Last Name" onKeyPress="removeChecks();">
<input type="email" name="app_email_address" id="app_email_address" placeholder="Email Address" onKeyPress="removeChecks();">
<input type="text" name="app_phone" id="app_phone" placeholder="Phone No">
<input type="text" name="datepicker" id="datepicker" placeholder="Appointment Date" onClick="removeChecks();">
<select name="gender" id="gender">
<option>Family Member</option>
<option>Relative</option>
<option>Friend</option>
</select>
<textarea placeholder="Message" name="app_msg" id="app_msg"></textarea>
<input type="submit" value="submit" class="btn btn-default btn-rounded" onClick="validateAppoint();">
</form>
</div>
</div>
</div>
</div>
</section>
<!-- About =============================================
<section class="about-sec text-center" data-stellar-background-ratio="0.3">
<div class="container">
<h1>about Ashirbad</h1>
<p class="lead">Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.
Our therapists are trained and experienced who have been treating substance abuse for more than a decade. The center has designed multidisciplinary residential services tailored to the needs the inmates.
</p>
-->
<!-- tarifs -- useless stuff --
<div class="row text-center" id="counters">
<div class="col-md-3 col-xs-6">
<div class="counter">
<span class="quantity-counter1 highlight">0</span>
<h6 class="counter-details">AWARD SHOWS</h6>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="counter">
<span class="quantity-counter2 highlight">0</span>
<h6 class="counter-details">our staff</h6>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="counter">
<span class="quantity-counter3 highlight">0</span>
<h6 class="counter-details">clinic rooms</h6>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="counter">
<span class="quantity-counter4 highlight">0</span>
<h6 class="counter-details">machines</h6>
</div>
</div>
</div>
---- ended -->
</div>
</section>
<!-- Team =============================================
<section class="meet-the-doctors no-bg-img team-carousel">
<div class="container">
<h2 class="light bordered">Our <span>Team</span></h2>
<div id="team-carousel" class="owl-carousel wrapper-padding-none">
<div class="team-member">
<div class="team-thumb">
<img src="images/team-member-img1.jpg" class="img-rounded" alt="">
<div class="links"><a href="#."><i class="fa fa-facebook"></i></a>
<a href="#."><i class="fa fa-twitter"></i></a>
<a href="#."><i class="fa fa-google-plus"></i></a></div>
</div>
<h5><a href="#.">Tanmay Bhai</a><br><span>senior doctor at medicom</span></h5>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders..</p>
<a href="member-detail.html"><em>- View Profile</em></a>
</div>
<div class="team-member">
<div class="team-thumb">
<img src="images/team-member-img2.jpg" class="img-rounded" alt="">
<div class="links"><a href="#."><i class="fa fa-facebook"></i></a>
<a href="#."><i class="fa fa-twitter"></i></a>
<a href="#."><i class="fa fa-google-plus"></i></a></div>
</div>
<h5><a href="#.">Amit Kumar panda</a><br><span>senior doctor at medicom</span></h5>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.</p>
<a href="member-detail.html"><em>- View Profile</em></a>
</div>
<div class="team-member">
<div class="team-thumb">
<img src="images/team-member-img3.jpg" class="img-rounded" alt="">
<div class="links"><a href="#."><i class="fa fa-facebook"></i></a>
<a href="#."><i class="fa fa-twitter"></i></a>
<a href="#."><i class="fa fa-google-plus"></i></a></div>
</div>
<h5><a href="#.">Soumya</a><br><span>senior doctor at medicom</span></h5>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.</p>
<a href="member-detail.html"><em>- View Profile</em></a>
</div>
</div>
</div>
</section>
-- Hide -->
<!-- Latest News =============================================
<section class="latest-news">
<div class="container">
<div class="row">
<div class="col-md-8">
<h2 class="bordered light">Latest <span>News</span></h2>
<div class="row">
<div class="col-md-5">
<article class="blog-item">
<div class="blog-thumbnail">
<img alt="" src="images/latest-news1.jpg">
<div class="blog-date"><p class="day">29</p><p class="monthyear">FEB 2014</p></div>
</div>
<div class="blog-content">
<h4 class="blog-title"><a href="#">Latest Clinic News</a></h4>
<p class="blog-meta">By: <a href="#">admin</a> | Tags: <a href="#">medical</a>, <a href="#">drugs</a>, <a href="#">illigal</a></p>
<p>I'm a paragraph. Click here to add your own text and edit me. Let your users get to know you.</p>
<a href="#." class="btn btn-default btn-mini btn-rounded">READ MORE</a>
</div>
</article>
<article class="blog-item">
<div class="blog-thumbnail">
<img alt="" src="images/latest-news3.jpg">
<div class="blog-date"><p class="day">29</p><p class="monthyear">FEB 2014</p></div>
</div>
<div class="blog-content">
<h4 class="blog-title"><a href="#">Latest Clinic News</a></h4>
<p class="blog-meta">By: <a href="#">admin</a> | Tags: <a href="#">medical</a>, <a href="#">drugs</a>, <a href="#">illigal</a></p>
<p>I'm a paragraph. Click here to add your own text and edit me. Let your users get to know you.</p>
<p>hau hau debini</p>
<a href="#." class="btn btn-default btn-mini btn-rounded">READ MORE</a>
</div>
</article>
</div>
<div class="col-md-7">
<article class="blog-item">
<div class="blog-thumbnail">
<img alt="" src="images/latest-news2.jpg">
<div class="blog-date"><p class="day">29</p><p class="monthyear">FEB 2014</p></div>
</div>
<div class="blog-content">
<h4 class="blog-title"><a href="#">Latest Clinic News</a></h4>
<p class="blog-meta">By: <a href="#">admin</a> | Tags: <a href="#">medical</a>, <a href="#">drugs</a>, <a href="#">illigal</a></p>
<p>I'm a paragraph. Click here to add your own text and edit me. Let your users get to know you.</p>
<a href="#." class="btn btn-default btn-mini btn-rounded">READ MORE</a>
</div>
</article>
<article class="blog-item">
<div class="blog-thumbnail">
<img alt="" src="images/latest-news4.jpg">
<div class="blog-date"><p class="day">29</p><p class="monthyear">FEB 2014</p></div>
</div>
<div class="blog-content">
<h4 class="blog-title"><a href="#">Latest Clinic News</a></h4>
<p class="blog-meta">By: <a href="#">admin</a> | Tags: <a href="#">medical</a>, <a href="#">drugs</a>, <a href="#">illigal</a></p>
<p>I'm a paragraph. Click here to add your own text and edit me. Let your users get to know you.</p>
<a href="#." class="btn btn-default btn-mini btn-rounded">READ MORE</a>
</div>
</article>
</div>
</div>
</div>
--- Hide -->
<!-- Sidebar ============================================= -->
<aside class="col-md-4">
<!-- Doctors =====================================================================-
<h2 class="bordered light">Meet the <span>doctors</span></h2>
<div class="what-doctor-say clearfix">
<div id="meet-doctors-carousel" class="owl-carousel meet-doctors-carousel text-center">
<div class="item">
<img src="images/doctor-img.png" class="img-circle img-thumbnail list-inline" alt="" title="">
<h4>Tanmay Satapathi<br /><span>Anesthesiologist</span></h4>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.</p>
</div>
<div class="item">
<img src="images/doctor-img.png" class="img-circle img-thumbnail" alt="" title="">
<h4>Amit Kumar panda<br /><span>Anesthesiologist</span></h4>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders. </p>
</div>
<div class="item">
<img src="images/doctor-img.png" class="img-circle img-thumbnail" alt="" title="">
<h4>baba ramdev<br /><span>Anesthesiologist</span></h4>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.</p>
</div>
</div>
-- Hide Content -->
</div>
<!-- Servicess =====================================================================
<h2 class="bordered light">Ashirbad <span>CARE</span></h2>
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title active">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
<span><i class="fa fa-plus fa-minus"></i></span>Alcoholism treatment
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
<span><i class="fa fa-plus"></i></span>Drug Addicted
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
<span><i class="fa fa-plus"></i></span>DeToxification
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFour">
<span><i class="fa fa-plus"></i></span>Depression
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFive">
<span><i class="fa fa-plus"></i></span>Mental health treatment
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseSix">
<span><i class="fa fa-plus"></i></span>Psychotherapy
</a>
</h4>
</div>
<div id="collapseSix" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseSeven">
<span><i class="fa fa-plus"></i></span>Family counselling
</a>
</h4>
</div>
<div id="collapseSeven" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Aldus
Page Maker including versions.
</div>
</div>
</div>
</div>
</aside>
</div>
</div>
</section>
<!-- App Store =============================================
<section class="medicom-app" data-stellar-background-ratio="0.3">
<div class="container">
<div class="row">
<div class="col-md-5">
<img src="images/mobile-hand.png" class="app-img" alt="" title="">
</div>
<div class="col-md-7">
<div class="medicom-app-content">
<h1>medicom App Available</h1>
<p class="lead">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
<span>AVAILABLE ON STORES</span>
</p>
<ul class="list-unstyled app-buttons">
<li><a href="#."><img src="images/app-store-btn.png" alt="" title="App Store"></a></li>
<li><a href="#."><img src="images/google-play-btn.png" alt="" title="Google App"></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
-->
<!-- Testimonials ============================================= -->
<section class="testimonials bg-white text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="carousel-testimonials" class="owl-carousel slide testimonials-carousel">
<div class="item">
<h1>What Our patients Say About Us</h1>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.
</p>
<div class="testimonials-patient-detail">
<img src="images/patient-img.png" class="img-circle img-thumbnail" alt="" title="">
<p>iTannu<span>Heart patient</span></p>
</div>
</div>
<div class="item">
<h1>What Our patients Say About Us</h1>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders. </p>
<div class="testimonials-patient-detail">
<img src="images/patient-img.png" class="img-circle img-thumbnail" alt="" title="">
<p>Soumya<span>Heart patient</span></p>
</div>
</div>
<div class="item">
<h1>What Our patients Say About Us</h1>
<p>Ashirbad is a Bhubaneswar based drug de-addiction cum psychological rehabilitation center provides comprehensive treatment for all types of addictive disorders.</p>
<div class="testimonials-patient-detail">
<img src="images/patient-img.png" class="img-circle img-thumbnail" alt="" title="">
<p>Kukun<span>Heart patient</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div><!--end #content-index-->
<hr>
<div class="black-row"></div>
<!-- Footer Section ============================================= -->
<footer id="footer" class="light">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- Footer Widget ============================================= -->
<div class="footer-widget">
<h4><span>Ashirbad</span></h4>
<ul class="footer-nav list-unstyled clearfix">
<li><a href="index.html"><i class="fa fa-long-arrow-right"></i>Home</a></li>
<li><a href="aboutus.html"><i class="fa fa-long-arrow-right"></i>About US</a></li>
<li><a href="services.html"><i class="fa fa-long-arrow-right"></i>Services</a></li>
<li><a href="contact.html"><i class="fa fa-long-arrow-right"></i>Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget ============================================= -->
<div class="footer-widget">
<h4><span>newsletter</span></h4>
<div class="newsletter clearfix">
<i class="fa fa-envelope"></i>
<p class="newsletter-text">Sign up with your name and email to
get updates fresh updates.</p>
<div class="success" id="message-news" style="display:none;">Thank you! You have successfully subscribed.</div>
<form name="newsletter_form" id="newsletter_form" method="post" action="../submit.php" onSubmit="return false">
<input type="text" name="news_name" id="news_name" placeholder="Your Name" onKeyPress="removeChecks();">
<input type="email" name="news_email_address" id="news_email_address" placeholder="Email Address" onKeyPress="removeChecks();">
<input type="submit" value="subscribe" class="btn btn-default btn-rounded" onClick="validateNewsletter();">
</form>
</div>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget ============================================= -->
<div class="footer-widget">
<h4><span>Latest Post</span></h4>
<div class="twitter-widget">
<div class="tweet">
<i class="fa fa-facebook"></i>
<p><a href="https://www.facebook.com/AshirbadDrugDeAddication">@Ashirbad</a> Our address to reach us <a href="https://goo.gl/maps/nQ5X8bVdYRk">https://goo.gl/maps/nQ5X8bVdYRk</a>
<span>1 hour ago</span>
</p>
</div>
<div class="tweet">
<i class="fa fa-facebook"></i>
<p><a href="https://www.facebook.com/AshirbadDrugDeAddication">@Ashirbad</a> Our address to reach us <a href="https://goo.gl/maps/nQ5X8bVdYRk">https://goo.gl/maps/nQ5X8bVdYRk</a>
<span>1 hour ago</span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget ============================================= -->
<div class="footer-widget">
<h4><span>get in touch</span></h4>
<p> </p>
<div class="contact-widget">
<i class="fa fa-home"></i><p>1575, Lane 6, Gandamunda, Bhaktamadhu Nagar, Pokhariput, Bhubaneswar, Odisha 751020</p>
<i class="fa fa-envelope"></i><p><a href="mailto:">ashirbaddrugdeaddction@gmail.com</a></p>
<i class="fa fa-mobile"></i><p class="phone-number">(+91) 89846 65056, 7008729602, 9778749727</p>
</div>
<ul class="social3 clearfix">
<li><a href="https://www.facebook.com/AshirbadDrugDeAddication/"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://plus.google.com/117999724127355546060"><i class="fa fa-google-plus"></i></a></li>
<li><a href="index.html"><i class="fa fa-dribbble"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Copyright ============================================= -->
<p class="copyright text-center">Copyright © 2017 Ashirbad. All right reserved.</p>
<!-- Footer Bottom
============================================= --
<div class="container">
<div class="row">
<div class="col-md-2"><a href="#."><img src="images/footer-logo.jpg" alt="" title="Medicom Logo"></a></div>
<div class="col-md-10">
<p class="footer-bottom-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing.</p>
</div>
</div>
</div>
-->
</footer>
<!-- back to top -->
<a href="contact.html" class="back-to-top" id="back-to-top"><i class="fa fa-angle-up"></i></a>
</div><!--end #wrapper-->
<!-- All Javascript
============================================= -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.stellar.js"></script>
<script src="js/jquery-ui-1.10.3.custom.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/counter.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.uniform.js"></script>
<script src="js/easyResponsiveTabs.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.fancybox-media.js"></script>
<script src="js/jquery.mixitup.js"></script>
<script src="js/forms-validation.js"></script>
<script src="js/jquery.jcarousel.min.js"></script>
<script src="js/jquery.easypiechart.min.js"></script>
<script src="js/scripts.js"></script>
<!-- This page
============================================= -->
<script src="js/jquery.themepunch.plugins.min.js"></script>
<script src="js/jquery.themepunch.revolution.min.js"></script>
<script>
(function () {
// Revolution slider
var revapi;
revapi = jQuery('.tp-banner').revolution(
{
delay:9000,
startwidth:1170,
startheight:682,
hideThumbs:200,
fullWidth:"on",
forceFullWidth:"on"
});
})();
</script>
</body>
</html>