-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
958 lines (948 loc) · 49.5 KB
/
terms.html
File metadata and controls
958 lines (948 loc) · 49.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ISKCON RAJANAGAR</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="fonts/css/fontawesome.min.css" rel="stylesheet" />
<link href="fonts/css/brands.min.css" rel="stylesheet" />
<link href="fonts/css/solid.min.css" rel="stylesheet" />
<link href="css/global.css" rel="stylesheet" />
<link href="css/index.css" rel="stylesheet" />
<link href="css/about.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!--SEO Tags-->
<meta
name="description"
content="ISKCON Rajnagar( Official Website of ISKCON Rajnagar Temple ) is recognized as one of the famous places to visit in Kendrapara, Odisha and best maintained ISKCON temple in the world. The Sri Jagannath Mandir situated in the Rajnagar area of Kendrapara, Odisha, holds a special significance for the devotees of the International Society for Krishna Consciousness. This grand temple represents the fulfilled dream of Srila Prabhupada, Founder Acharya of ISKCON."
/>
<meta
name="abstract"
content="ISKCON Rajnagar( Official Website of ISKCON Rajnagar Temple ) is recognized as one of the famous places to visit in Kendrapara, Odisha and best maintained ISKCON temple in the world. The Sri Jagannath Mandir situated in the Rajnagar area of Kendrapara, Odisha, holds a special significance for the devotees of the International Society for Krishna Consciousness. This grand temple represents the fulfilled dream of Srila Prabhupada, Founder Acharya of ISKCON."
/>
<meta
name="keywords"
content="Religious organization, ISKCON, Niladrinath Mandir, ISKCON Rajnagar, ISKCON Rajnagar Darshan, Rajnagar Deity Darshan, Deities Darshan, Sri Jagannath Mandir, ISKCON Temple, Hare Krishna, Hare Krishna Land, Hare Rama Hare Krishna, Deities, Radha Krishna, Sri Sri Radha Madav, Sita, Ram, Laxman, Hanuman, Rajnagar ISKCON, Hare Krishna Mandir, Hare Krishna Hare Rama Mandir, Rajnagar, Hare Krishna Mandir in Rajnagar, Rajnagar Hare Krishna Mandir, Rajnagar Hare Rama Hare Krishna, Narshimha Temple, Rath Yatra"
/>
<meta name="geo.region" content="IN-OD" />
<meta name="geo.position" content="20.552569696161143;86.76788547116458;" />
<meta
name="geo.placename"
content="ISKCON RAJNAGAR, Niladrinath Mandir, Bramhani Sahi, Rajanagar, Kendrapara, Odisha 754225"
/>
<meta name="icbm" content="20.552569696161143, 86.76788547116458" />
<link rel="shortlink" href="https://iskconrajnagar.org/" />
<link rel="canonical" href="https://iskconrajnagar.org/" />
<meta name="robots" content="index, follow" />
<link rel="image_src" href="https://iskconrajnagar.org/img/logo.png" />
<meta name="author" content="ISKCON Rajnagar" />
<meta name="original-source" content="https://iskconrajnagar.org/" />
<meta name="referrer" content="unsafe-url" />
<meta name="rights" content="ISKCON Rajnagar" />
<meta property="og:site_name" content="ISKCON Rajnagar" />
<meta property="og:type" content="Website" />
<meta property="og:url" content="https://iskconrajnagar.org/" />
<meta property="og:title" content="ISKCON Rajnagar" />
<meta
property="og:description"
content="ISKCON Rajnagar( Official Website of ISKCON Rajnagar Temple ) is recognized as one of the famous places to visit in Kendrapara, Odisha and best maintained ISKCON temple in the world. The Sri Jagannath Mandir situated in the Rajnagar area of Kendrapara, Odisha, holds a special significance for the devotees of the International Society for Krishna Consciousness. This grand temple represents the fulfilled dream of Srila Prabhupada, Founder Acharya of ISKCON."
/>
<meta
property="og:image"
content="https://iskconrajnagar.org/img/logo.png"
/>
<meta
property="og:image:url"
content="https://iskconrajnagar.org/img/logo.png"
/>
<meta
property="og:image:secure_url"
content="https://iskconrajnagar.org/img/logo.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="94" />
<meta property="og:image:height" content="91" />
<meta property="place:location:longitude" content="86.76788547116458" />
<meta property="place:location:latitude" content="20.552569696161143" />
<meta
property="og:street_address"
content="ISKCON RAJNAGAR, Niladrinath Mandir"
/>
<meta property="og:locality" content="Bramhani Sahi" />
<meta property="og:region" content="Rajanagar, Kendrapara, Odisha" />
<meta property="og:postal_code" content="754225" />
<meta property="og:country_name" content="India" />
<meta property="og:email" content="niladrinathjagannath@gmail.com" />
<meta property="og:phone_number" content="+919178262172" />
<meta property="og:locale" content="en_US" />
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="ISKCON Rajnagar" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://iskconrajnagar.org/",
"name": "ISKCON Rajnagar",
"url": "https://iskconrajnagar.org/",
"logo": "https://iskconrajnagar.org/img/logo.png",
"description": "ISKCON Rajnagar( Official Website of ISKCON Rajnagar Temple ) is recognized as one of the famous places to visit in Kendrapara, Odisha and best maintained ISKCON temple in the world. The Sri Jagannath Mandir situated in the Rajnagar area of Kendrapara, Odisha, holds a special significance for the devotees of the International Society for Krishna Consciousness. This grand temple represents the fulfilled dream of Srila Prabhupada, Founder Acharya of ISKCON.",
"sameAs": [
"https://www.youtube.com/@iskconrajnagar",
"https://maps.app.goo.gl/Lcws6K1yQBdcuqScA",
"https://chat.whatsapp.com/FrHHoDgSdbS6jd3qXzbMpz"
],
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+91-9178262172",
"contactType": "primary",
"areaServed": "IN",
"availableLanguage": ["English", "Odia", "Hindi"]
}
]
},
{
"@type": "Place",
"@id": "https://iskconrajnagar.org/contact.html",
"name": "ISKCON RAJNAGAR",
"url": "https://iskconrajnagar.org/",
"address": {
"@type": "PostalAddress",
"streetAddress": "Niladrinath Mandir, Bramhani Sahi",
"addressLocality": "Rajanagar",
"addressRegion": "Kendrapara",
"postalCode": "754225",
"addressCountry": "IN"
},
"telephone": "+91-9178262172",
"geo": {
"@type": "GeoCoordinates",
"latitude": 20.552569696161143,
"longitude": 86.76788547116458
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "04:30",
"closes": "20:30",
"validFrom": "2025-01-01"
}
],
"image": "https://iskconrajnagar.org/img/logo.png",
"logo": "https://iskconrajnagar.org/img/logo.png",
"containedInPlace": {
"@id": "https://iskconrajnagar.org/"
}
},
{
"@type": "PlaceOfWorship",
"@id": "https://iskconrajnagar.org/",
"name": "ISKCON Rajanagar",
"url": "https://iskconrajnagar.org/",
"sameAs": [
"https://www.youtube.com/@iskconrajnagar",
"https://maps.app.goo.gl/Lcws6K1yQBdcuqScA",
"https://chat.whatsapp.com/FrHHoDgSdbS6jd3qXzbMpz"
],
"parentOrganization": { "@id": "https://iskconrajnagar.org/" }
}
]
}
</script>
<!--SEO Tags-->
</head>
<body>
<div class="main position-relative">
<div class="main_1 position-absolute top-0 w-100">
<section id="top" class="pt-3 pb-3">
<div class="container-xl">
<div class="row top_1">
<div class="col-md-4">
<div class="top_1l">
<ul class="mb-0 font_14">
<li class="d-inline-block">
<a class="text-white a_tag" href="tel:+9178262172"
><i class="fa fa-phone me-1 col_oran"></i> (+91) 91782
62172</a
>
</li>
<li class="d-inline-block ms-1">
<a class="text-white a_tag" href="#"
><i class="fa fa-envelope me-1 col_oran"></i>
niladrinathjagannath@gmail.com</a
>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="top_1m text-center">
<ul class="mb-0 font_14">
<li class="d-inline-block">
<a class="text-white a_tag h5 text-uppercase" href="/"
>Niladrinath Mandir</a
>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="top_1r text-end">
<ul class="mb-0 fs-6">
<li class="d-inline-block">
<a
class="text-white fw-bold a_tag"
href="https://www.youtube.com/@iskconrajnagar"
>
<i class="fa-brands fa-youtube"></i>
</a>
</li>
<li class="d-inline-block ms-2">
<a
class="text-white fw-bold a_tag"
href="mailto:niladrinathjagannath@gmail.com"
>
<i class="fa-solid fa-envelope"></i>
</a>
</li>
<li class="d-inline-block ms-2">
<a
class="text-white fw-bold a_tag"
href="https://chat.whatsapp.com/FrHHoDgSdbS6jd3qXzbMpz"
>
<i class="fa-brands fa-whatsapp"></i>
</a>
</li>
<li class="d-inline-block ms-2">
<a
class="text-white fw-bold a_tag"
href="https://maps.app.goo.gl/Lcws6K1yQBdcuqScA"
>
<i class="fa-solid fa-location-dot"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="header">
<nav
class="navbar navbar-expand-md navbar-light p-0 bg-white"
id="navbar_sticky"
>
<div class="container-xl">
<a
class="p-0 navbar-brand fw-bold fs-5 me-0 text-uppercase active"
href="/"
>
<img
src="img/logo.png"
alt="ISKCON RAJNAGAR"
width="ms-auto"
height="60"
/>
</a>
<span
style="color: #bc5c48; text-align: center; font-weight: bold"
>ISKCON RAJNAGAR</span
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse mx-auto"
id="navbarSupportedContent"
>
<ul class="navbar-nav mb-0 mx-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/"
>Home</a
>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Who We Are
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
aria-hidden="true"
data-slot="icon"
>
<path
fill-rule="evenodd"
d="M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06l-7.5 7.5Z"
clip-rule="evenodd"
></path>
</svg>
</a>
<ul
class="dropdown-menu drop_1"
aria-labelledby="navbarDropdown"
>
<li>
<a class="dropdown-item" href="about.html">About Us</a>
</li>
<li>
<a class="dropdown-item" href="mission.html">
Our mission</a
>
</li>
<li>
<a class="dropdown-item" href="founder-acharya.html">
Founder Acharya</a
>
</li>
<li>
<a class="dropdown-item" href="history-of-iskcon.html">
History Of ISKCON
</a>
</li>
<li>
<a class="dropdown-item" href="our-philosophy.html">
Our Philosophy
</a>
</li>
<li>
<a
class="dropdown-item border-0"
href="hare-krishna-movement.html"
>
Hare Krishna Movement
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donation.html">Donation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
<!-- Date and Weather -->
<div
class="d-flex align-items-center ms-md-3 pt-4"
id="navbar-date-weather"
>
<img
src="img/jbs.png"
alt="jbs"
class="img-fluid"
style="height: 50px; margin-top: -11px"
/>
</div>
</div>
</div>
</nav>
</section>
</div>
<div class="main_2">
<section id="center" class="center_about">
<div class="center_om bg_back">
<div class="container-xl">
<div class="row center_o1">
<div class="col-md-9">
<div class="center_o1l">
<h1 class="font_60 text-white">Terms & Conditions</h1>
<p class="text-white p-3 mt-3 mb-0">
“To those who are constantly devoted and who worship Me<br />
with love, I give the understanding by which they can
come<br />
to Me.” — Bhagavad Gita 10.10
</p>
</div>
</div>
<div class="col-md-3">
<div class="center_o1r text-end">
<h6
class="d-inline-block text-muted bg-white mb-0 p-4 fw-bold"
>
<a class="text-muted a_tag" href="/">HOME</a>
<span class="mx-2 fw-normal">|</span>
<span class="col_oran">TERMS</span>
</h6>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<section id="about_pg" class="p_4 bg-light">
<div class="container-xl">
<div class="row about_pg1">
<div class="col-md-12">
<div class="about_pg1l text-justify">
<div class="clearfix text-formatted">
<h3>Overview</h3>
<p>
This website is operated by the <strong
>International Society for Krishna Consciousness</strong
>. Throughout the site, the terms “we,” “us,” and “our” refer
to the International Society for Krishna Consciousness.
International Society for Krishna Consciousness offers this
website, including all information, tools, and services
available to you, the user, conditioned upon your acceptance
of all terms, conditions, policies, and notices stated
here. <br />By visiting our site and/ or purchasing
something from us, you engage in our “Service” and agree to be
bound by the following terms and conditions (“Terms of
Service,” “Terms”), including those additional terms and
conditions and policies referenced herein and/or available by
hyperlink. These Terms of Service apply to all users of the
site, including, without limitation, users who are browsers,
vendors, customers, merchants, and/ or contributors of
content. <br />Please read these Terms of Service
carefully before accessing or using our website. By accessing
or using any part of the site, you agree to be bound by these
Terms of Service. If you do not agree to all the terms and
conditions of this agreement, then you may not access the
website or use any services. If these Terms of Service are
considered an offer, acceptance is expressly limited to these
Terms of Service. <br />Any new features or tools
added to the current store shall also be subject to the Terms
of Service. You can review the most current version of the
Terms of Service at any time on this page. We reserve the
right to update, change or replace any part of these Terms of
Service by posting updates and/or changes to our website. It
is your responsibility to check this page periodically for
changes. Your continued use of or access to the website after
posting any changes constitutes acceptance of those changes.
</p>
<h3>Section 1 – Online Store terms</h3>
<p>
By agreeing to these Terms of Service, you represent that you
are at least the age of majority in your state or province of
residence or that you are the age of majority in your state or
province of residence, and you have given us your consent to
allow any of your minor dependents to use this
site. <br />You may not use our products for any
illegal or unauthorized purpose, nor may you, in the use of
the service, violate any laws in your jurisdiction (including
but not limited to copyright laws). <br />You must
not transmit any worms or viruses or any code of a destructive
nature. <br />A breach or violation of any of the
Terms will result in an immediate termination of your
Services.
</p>
<h3>Section 2 - General Condition</h3>
<p>
We reserve the right to refuse service to anyone for any
reason. <br />You understand that your content (not
including credit card information) may be transferred
unencrypted. This is because you involve (a) transmissions
over various networks and (b) changes to conform and adapt to
the technical requirements of connecting networks or devices.
Credit card information is always encrypted during transfer
over networks. <br />You agree not to reproduce,
duplicate, copy, sell, resell or exploit any portion of the
service, use of the service, or access to the service or any
contact on the website through which the service is provided
without express written permission by us. <br />The
headings in this agreement are included for convenience only
and will not limit or otherwise affect these Terms.
</p>
<h3>
Section 3 - Accuracy, Completeness, And Timeliness of
information
</h3>
<p>
We are not responsible if the information made available on
this site is not accurate, complete, or current. The material
on this site is provided for general information only. It
should not be relied upon or used as the sole basis for making
decisions without consulting primary, more accurate, complete,
or timely sources of information. Any reliance on the material
on this site is at your own risk. <br />This site
may contain certain historical information. Historical
information, necessarily, is not current and is provided for
your reference only. We reserve the right to modify the
contents of this site at any time, but we have no obligation
to update any information on our site. You agree that it is
your responsibility to monitor changes to our site.
</p>
<h3>Section 4 – Modifications To The Service And Prices</h3>
<p>
Prices for our products are subject to change without
notice. <br />We reserve the right at any time to
modify or discontinue the Service (or any part or content
thereof) without notice at any time. <br />We shall
not be liable to you or any third party for any modification,
price change, suspension, or discontinuance of the service.
</p>
<h3>Section 5 – Products Or Services</h3>
<p>
Certain products or services may be available exclusively
online through the website. These products or services may
have limited quantities and are subject to return or exchange
only according to our Return Policy. <br />We have
made every effort to display the colors and images of our
products that appear at the store as accurately as possible.
But, unfortunately, we cannot guarantee that your computer
monitor’s display of any color will be
accurate. <br />We reserve the right but are not
obligated to limit the sales of our products or Services to
any person, geographic region, or jurisdiction. We may
exercise this right on a case-by-case basis. We reserve the
right to limit the quantities of any products or services we
offer. All descriptions of products or product pricing are
subject to change at any time without notice, at our sole
discretion. We reserve the right to discontinue any product at
any time. Any offer for any product or service made on this
site is void where prohibited. <br />We do not
warrant that the quality of any products, services,
information, or other material purchased or obtained by you
will meet your expectations or that any errors in the service
will be corrected.
</p>
<h3>Section 6 – Accuracy Of Billing And Account Information</h3>
<p>
We reserve the right to refuse any order you place with us. In
our sole discretion, we may limit or cancel quantities
purchased per person, household or order. These restrictions
may include orders placed by or under the same customer
account, credit card, and/or orders using the same billing
and/or shipping address. If we change or cancel an order, we
may attempt to notify you by contacting the email and/or
billing address/phone number provided when the order was made.
In addition, we reserve the right to limit or prohibit orders
that, in our sole judgment, appear to be placed by dealers,
resellers, or distributors. <br />You agree to
provide current, complete, and accurate purchase and account
information for all purchases at our store. In addition, you
agree to promptly update your account and other information,
including your email address, credit card numbers, and
expiration dates, so we can complete your transactions and
contact you as needed. <br />For more detail,
please review our Returns Policy.
</p>
<h3>Section 7 – Optional Tools</h3>
<p>
We may provide you access to third-party tools we neither
monitor nor have any control or input. <br />You
acknowledge and agree that we provide access to such tools” as
is” and “as available” without any warranties,
representations, or conditions and any endorsement. We shall
have no liability arising from or relating to your use of
optional third-party tools. <br />Any use by you of
optional tools offered through the site is entirely at your
own risk and discretion. However, you should ensure that you
are familiar with and approve of the terms on which tools are
provided by the relevant third-party
provider(s). <br />We may also, in the future,
offer new services and features through the website (including
the release of new tools and resources). Such new features
and/or services shall also be subject to these Terms of
Service.
</p>
<h3>Section 8 – Third-party Links</h3>
<p>
<br />Certain content, products, and services available via
our Service may include third-party materials. <br />Third-party
links on this site may direct you to third-party websites not
affiliated with us. We are not responsible for examining or
evaluating the content or accuracy, and we do not warrant it.
We will not have any liability or responsibility for any
third-party materials or websites or any other materials,
products, or services of third parties. <br />We
are not liable for any harm or damages related to purchasing
or using goods, services, resources, content, or other
transactions connected with any third-party websites. Please
review the third-party’s policies and practices carefully and
ensure you understand them before engaging in any transaction.
Complaints, claims, concerns, or questions regarding
third-party products should be directed to the third party.
</p>
<h3>
Section 9 – User Comments, Feedback, And Other Submissions
</h3>
<p>
<br />Suppose, at our request, you send certain specific
submissions (for example, contest entries) or without a
recommendation from us, you send creative ideas, suggestions,
proposals, plans, or other materials, whether online, by
email, by postal mail, or otherwise (collectively,
‘comments’). In that case, you agree that we may, at any time,
without restriction, edit, copy, publish, distribute,
translate, and otherwise use any comments you forward to us in
any medium. However, we are and shall be under no obligation
(1) to maintain any comments in confidence; (2) to pay
compensation for any comments; or (3) to respond to any
comments. <br />We may, but have no obligation to,
monitor, edit or remove content that we determine in our sole
discretion are unlawful, offensive, threatening, libelous,
defamatory, pornographic, obscene, or otherwise objectionable
or violates any party’s intellectual property or these Terms
of Service. <br />You agree that your comments will
not violate any third party’s rights, including copyright,
trademark, privacy, personality, or other personal or
proprietary rights. You further agree that your comments will
not contain libelous or otherwise unlawful, abusive, or
obscene material or any computer virus or other malware that
could affect the operation of the service or any related
website. You may not use a false email address, pretend to be
someone other than yourself, or otherwise mislead us or third
parties as to the origin of any comments. You are solely
responsible for any comments you make and their accuracy. We
take no responsibility and assume no liability for any
comments you or any third-party posted.
</p>
<h3>Section 10 – Personal Information</h3>
<p>
<br />Our Privacy Policy governs your submission of personal
information through the store.
</p>
<h3>Section 11 – Errors, Inaccuracies, And Omissions</h3>
<p>
<br />Occasionally there may be information on our site or in
the service that contains typographical errors, inaccuracies,
or omissions that may relate to product descriptions, pricing,
promotions, offers, product shipping charges, transit times,
and availability. We reserve the right to correct any errors,
inaccuracies, or omissions and to change or update information
or cancel orders if any information in the service or on any
related website is inaccurate at any time without prior notice
(including after you have submitted your
order). <br />We undertake no obligation to update,
amend or clarify information in the service or on any related
website, including pricing information, except as required by
law. No specified update or refresh date applied in the
service or on any related website should be taken to indicate
that all information in the service or related website has
been modified or updated.
</p>
<h3>Section 12 – Prohibited Uses</h3>
<p>
<br />In addition to other prohibitions as set forth in the
Terms of Service, you are prohibited from using the site or
its content: (a) for any unlawful purpose; (b) to solicit
others to perform or participate in any unlawful acts; (c) to
violate any international, federal, provincial or state
regulations, rules, laws, or local ordinances; (d) to infringe
upon or violate our intellectual property rights or the
intellectual property rights of others; (e) to harass, abuse,
insult, harm, defame, slander, disparage, intimidate, or
discriminate based on gender, sexual orientation, religion,
ethnicity, race, age, national origin, or disability; (f) to
submit false or misleading information; (g) to upload or
transmit viruses or any other type of malicious code that will
or may be used in any way that will affect the functionality
or operation of the service or of any related website, other
websites, or the Internet; (h) to collect or track the
personal information of others; (i) to spam, phish, pharma,
pretext, spider, crawl, or scrape; (j) for any obscene or
immoral purpose; or (k) to interfere with or circumvent the
security features of the Service or any related website, other
websites, or the Internet. We reserve the right to terminate
your use of the service or any related website for violating
prohibited uses.
</p>
<h3>
Section 13 – Disclaimer Of Warranties; Limitation Of Liability
</h3>
<p>
<br />We do not guarantee, represent or warrant that your use
of our service will be uninterrupted, timely, secure, or
error-free. <br />We do not warrant that the
results that may be obtained from the use of the service will
be accurate or reliable. <br />You agree that from
time to time, we may remove the service for indefinite periods
or cancel the service at any time without
notice. <br />You expressly agree that your use of,
or inability to use, the service is at your sole risk. The
service and all products and services delivered to you through
the service are (except as expressly stated by us) provided
‘as is’ and ‘as available’ for your use, without any
representation, warranties, or conditions of any kind, either
express or implied, including all implied warranties or
conditions of merchantability, merchantable quality, fitness
for a particular purpose, durability, title, and
non-infringement. <br />In no case shall the
<strong
>International Society for Krishna Consciousness</strong
>, our directors, officers, employees, affiliates, agents,
contractors, interns, suppliers, service providers, or
licensor be liable for any injury, loss, claim, or any direct,
indirect, incidental, punitive, special, or consequential
damages of any kind, including, without limitation lost
profits, lost revenue, lost savings, loss of data, replacement
costs, or any similar damages, whether based in contract, tort
(including negligence), strict liability or otherwise, arising
from your use of any of the service or any products procured
using the service, or for any other claim related in any way
to your use of the service or any product, including, but not
limited to, any errors or omissions in any content, or any
loss or damage of any kind incurred as a result of the use of
the service or any content (or product) posted, transmitted,
or otherwise made available via the service, even if advised
of their possibility. Because some states or jurisdictions do
not allow the exclusion or the limitation of liability for
consequential or incidental damages, in such states or
jurisdictions, our liability shall be limited to the maximum
extent permitted by law.
</p>
<h3>Section 14 – Indemnification</h3>
<p>
<br />You agree to indemnify, defend and hold harmless the
<strong
>International Society for Krishna Consciousness</strong
>
and our parent, subsidiaries, affiliates, partners, officers,
directors, agents, contractors, licensor, service providers,
subcontractors, suppliers, interns, and employees harmless
from any claim or demand, including reasonable attorneys’
fees, made by any third party due to or arising out of your
breach of these Terms of Service or the documents they
incorporate by reference or your violation of any law or the
rights of a third party.
</p>
<h3>Section 15 – Severability</h3>
<p>
<br />Suppose any provision of these Terms of Service is
deemed unlawful, void, or unenforceable. In that case, such
provision shall nonetheless be enforceable to the fullest
extent permitted by applicable law. The unenforceable portion
shall be deemed to be severed from these Terms of Service;
such determination shall not affect the validity and
enforce-ability of any other remaining provisions.
</p>
<h3>Section 16 – Termination</h3>
<p>
<br />The obligations and liabilities of the parties incurred
before the termination date shall survive the termination of
this agreement for all purposes. <br />These Terms
of Service are practical unless and until terminated by you or
us. You may terminate these Terms of Service at any time by
notifying us that you no longer wish to use our Services or
when you cease using our site. <br />If in our sole
judgment, you fail, or we suspect that you have been unable,
to comply with any term or provision of these Terms of
Service, we also may terminate this agreement at any time
without notice, and you will remain liable for all amounts due
up to and including the date of termination; and accordingly
may deny you access to our Services (or any part thereof).
</p>
<h3>Section 17 – Entire Agreement</h3>
<p>
<br />The failure of us to exercise or enforce any right or
provision of these Terms of Service shall not constitute a
waiver of such right or provision. <br />These
Terms of Service and any policies or operating rules posted by
us on this site or concerning The Service constitute the
entire agreement and understanding between you and us. They
govern your use of the service, superseding any prior or
contemporaneous agreements, communications, and proposals,
whether oral or written, between you and us (including, but
not limited to, any previous versions of the Terms of
Service). <br />Any ambiguities in interpreting
these Terms of Service shall not be construed against the
drafting party.
</p>
<h3>Section 18 – Governing Law</h3>
<p>
<br />These Terms of Service and any separate agreements
whereby we provide you Services shall be governed by and
construed in accordance with the laws of India and the
jurisdiction of Bangalore, Karnataka.
</p>
<h3>Section 19 – Changes To Terms Of Service</h3>
<p>
<br />You can review the most current version of the Terms of
Service at any time on this page. <br />At our sole
discretion, we reserve the right to update, change or replace
any part of these Terms of Service by posting updates and
changes to our website. Accordingly, it is your responsibility
to check our website periodically for changes. Your continued
use of or access to our website or the Service following the
posting of any changes to these Terms of Service constitutes
acceptance of those changes.
</p>
<h3>Section 20 – Contact Information</h3>
<p>
<br />Questions about the Terms of Service should be sent to
us.
</p>
<p> </p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="footer_m position-relative">
<div class="footer_m1">
<section id="footer" class="p_4 bg_blue">
<div class="container-xl">
<div class="footer_1 row">
<div class="col-md-3">
<div class="footer_1l">
<h4 class="text-white mb-4">Contact Info</h4>
<ul class="mb-0 flex_box">
<li class="d-flex text-light">
<span class="me-3"
><i class="fa fa-phone col_oran"></i
></span>
(+91) 91782 62172
</li>
<li class="d-flex text-light mt-3">
<span class="me-3"
><i class="fa fa-envelope col_oran"></i
></span>
niladrinathjagannath@gmail.com
</li>
<li class="d-flex text-light mt-3">
<span class="me-3"
><i class="fa fa-map-marker col_oran"></i
></span>
Niladrinath Mandir, Bramhani Sahi, Rajnagar, Kendrapara,
Odisha 754225
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="footer_1l">
<img
src="img/footer_logo.png"
class="w-100 mb-4 img-fluid"
alt="The International Society for Krishna Consciousness (ISKCON)"
style="background-color: white"
/>
<p class="small text-white">
Dedicated to: Founder-Acharya His Divine Grace A.C.
Bhaktivedanta Swami Prabhupada
</p>
</div>
</div>
<div class="col-md-3">
<div class="footer_1l">
<h4 class="text-white mb-4">Timings</h4>
<div class="footer_1li row">
<p class="text-white">
Mangala Arati – 05:00AM<br />Shringar Arati – 07:30AM<br />Bhagavatam
– 08:00AM<br />Darshan Open – 08:30AM<br />Raj Bhoga Arati
– 12:30PM<br />Temple Closes – 01: 00PM<br />Darshan Open
– 04: 30PM<br />Tulasi Arati – 06: 15PM<br />Sandhya Arati
– 06: 30PM<br />Bhagavad Gita Class - 7:00PM<br />Shayan
Arati – 08: 15PM<br />Darshan Close – 08:30PM
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="footer_b" class="bg_blue">
<div class="container-xl">
<div class="footer_b1 row">
<div class="col-md-4">
<div class="footer_b1l">
<p>
<a class="text-white" href="/terms.html"
>Terms & Conditions
</a>
|<a class="text-white" href="/privacy-policy.html">
Privacy Policy
</a>
|<a class="text-white" href="/contact.html"> Contact Us</a>
</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="footer_b1m mt-5 text-white">
© <span id="currentYear"></span> ISKCON RAJNAGAR. All
Rights Reserved.
<script>
document.getElementById("currentYear").textContent =
new Date().getFullYear();
</script>
</div>
</div>
<div class="col-md-4">
<div class="footer_b1r text-end">
<div class="footer_b1r text-end">
<ul>
<li class="d-inline-block">
<a
class="d-block text-center"
href="https://www.youtube.com/@iskconrajnagar"
><i class="fa-brands fa-youtube"></i
></a>
</li>
<li class="d-inline-block ms-2">
<a
class="d-block text-center"
href="mailto:niladrinathjagannath@gmail.com"
><i class="fa-solid fa-envelope"></i
></a>
</li>
<li class="d-inline-block ms-2">
<a
class="d-block text-center"
href="https://chat.whatsapp.com/FrHHoDgSdbS6jd3qXzbMpz"
><i class="fa-brands fa-whatsapp"></i
></a>
</li>
<li class="d-inline-block ms-2">
<a
class="d-block text-center"
href="https://maps.app.goo.gl/Lcws6K1yQBdcuqScA"
><i class="fa-solid fa-location-dot"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<script src="js/common.js"></script>
</body>
</html>