-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2178 lines (2053 loc) · 131 KB
/
Copy pathindex.html
File metadata and controls
2178 lines (2053 loc) · 131 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
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Balkrishna Palace | Luxury Hotel in Jeypore, Odisha</title>
<meta name="description" content="Experience royal luxury at The Balkrishna Palace — Jeypore's finest hotel at Parabeda Chowk, NH 26. Spacious rooms, world-class dining, a rooftop restobar and a banquet hall for every occasion." />
<meta name="robots" content="index, follow" />
<meta name="author" content="The Balkrishna Palace" />
<meta name="theme-color" content="#080808" />
<link rel="canonical" href="https://balkrishnapalace.com/" />
<!-- Geo / Local SEO -->
<meta name="geo.region" content="IN-OD" />
<meta name="geo.placename" content="Jeypore, Odisha" />
<meta name="geo.position" content="18.8538;82.5733" />
<meta name="ICBM" content="18.8538, 82.5733" />
<!-- Open Graph -->
<meta property="og:title" content="The Balkrishna Palace | Luxury Hotel in Jeypore, Odisha" />
<meta property="og:description" content="Experience royal luxury at The Balkrishna Palace — Jeypore's finest hotel at Parabeda Chowk, NH 26. Spacious rooms, world-class dining, a rooftop restobar and a banquet hall for every occasion." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://balkrishnapalace.com/" />
<meta property="og:image" content="https://balkrishnapalace.com/assets/og/home.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="The Balkrishna Palace" />
<meta property="og:locale" content="en_IN" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Balkrishna Palace | Luxury Hotel in Jeypore, Odisha" />
<meta name="twitter:description" content="Experience royal luxury at The Balkrishna Palace — Jeypore's finest hotel at Parabeda Chowk, NH 26. Spacious rooms, world-class dining, a rooftop restobar and a banquet hall for every occasion." />
<meta name="twitter:image" content="https://balkrishnapalace.com/assets/og/home.jpg" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32.png" />
<link rel="icon" type="image/png" sizes="512x512" href="assets/favicon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<!-- Preload LCP image -->
<link rel="preload" as="image" href="assets/hero.webp" fetchpriority="high" />
<!-- DNS prefetch for external CDNs -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://cdn.tailwindcss.com" />
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="https://unpkg.com" />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cinzel+Decorative:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap" rel="stylesheet" />
<!-- AOS Animations -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<!-- Lucide Icons -->
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<!-- Site styles -->
<link rel="stylesheet" href="assets/site.css" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://balkrishnapalace.com/#organization",
"name": "The Balkrishna Palace",
"url": "https://balkrishnapalace.com/",
"logo": {
"@type": "ImageObject",
"url": "https://balkrishnapalace.com/assets/logo.webp"
},
"telephone": "+918093261999",
"email": "reservation@balkrishnapalace.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"sameAs": [
"https://www.instagram.com/balkrishna_palace/",
"https://www.facebook.com/p/The-Balkrishna-Palace-100092117221704/"
]
},
{
"@type": "WebSite",
"@id": "https://balkrishnapalace.com/#website",
"url": "https://balkrishnapalace.com/",
"name": "The Balkrishna Palace",
"description": "Experience royal luxury at The Balkrishna Palace — Jeypore's finest hotel at Parabeda Chowk, NH 26. Spacious rooms, world-class dining, and unmatched hospitality.",
"publisher": {
"@id": "https://balkrishnapalace.com/#organization"
},
"inLanguage": "en-IN"
},
{
"@type": [
"Hotel",
"LodgingBusiness"
],
"@id": "https://balkrishnapalace.com/#hotel",
"name": "The Balkrishna Palace",
"alternateName": "Balkrishna Palace",
"url": "https://balkrishnapalace.com/",
"logo": "https://balkrishnapalace.com/assets/logo.webp",
"image": [
"https://balkrishnapalace.com/assets/hero.webp",
"https://balkrishnapalace.com/assets/hotel/gallery-exterior.webp",
"https://balkrishnapalace.com/assets/hotel/hotel-lobby.webp",
"https://balkrishnapalace.com/assets/restaurant/restaurant-1.webp",
"https://balkrishnapalace.com/assets/restobar/restobar-6.webp",
"https://balkrishnapalace.com/assets/banquet-hall/banquet-hall-1.webp"
],
"description": "Experience royal luxury at The Balkrishna Palace — Jeypore's finest hotel at Parabeda Chowk, NH 26. Spacious rooms, world-class dining, and unmatched hospitality.",
"slogan": "Where Royalty Meets Timeless Luxury",
"telephone": "+918093261999",
"email": "reservation@balkrishnapalace.com",
"priceRange": "₹₹",
"currenciesAccepted": "INR",
"paymentAccepted": "Cash, Credit Card, Debit Card, UPI",
"checkinTime": "08:00",
"checkoutTime": "11:00",
"numberOfRooms": 4,
"petsAllowed": false,
"smokingAllowed": false,
"starRating": {
"@type": "Rating",
"ratingValue": "4",
"bestRating": "5"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "2000",
"bestRating": "5",
"worstRating": "1"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 18.8538,
"longitude": 82.5733
},
"hasMap": "https://maps.google.com/?q=The+Balkrishna+Palace+Jeypore+Odisha",
"areaServed": [
{
"@type": "City",
"name": "Jeypore"
},
{
"@type": "AdministrativeArea",
"name": "Koraput"
},
{
"@type": "AdministrativeArea",
"name": "Odisha"
}
],
"sameAs": [
"https://www.instagram.com/balkrishna_palace/",
"https://www.facebook.com/p/The-Balkrishna-Palace-100092117221704/"
],
"parentOrganization": {
"@id": "https://balkrishnapalace.com/#organization"
},
"amenityFeature": [
{
"@type": "LocationFeatureSpecification",
"name": "Free Wi-Fi",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Multi-Cuisine Restaurant",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Free Parking",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "24/7 Room Service",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Complimentary Breakfast",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Banquet & Events",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Power Backup",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Elevator / Lift",
"value": true
}
],
"containsPlace": [
{
"@type": "HotelRoom",
"@id": "https://balkrishnapalace.com/rooms/palace/#room",
"name": "The Palace",
"url": "https://balkrishnapalace.com/rooms/palace/",
"description": "Our most-booked room, and the easiest way into a Balkrishna Palace stay. A comfortable double bed, a private balcony looking out over Jeypore, and every essential — air conditioning, fast Wi-Fi, round-the-clock room service — without the suite price tag. Ideal for a solo traveller, a couple, or a short work trip through Koraput district.",
"image": "https://balkrishnapalace.com/assets/rooms/the-palace/palace-1.jpg",
"bed": {
"@type": "BedDetails",
"typeOfBed": "1 Double"
},
"occupancy": {
"@type": "QuantitativeValue",
"maxValue": 3,
"unitCode": "C62"
},
"floorSize": {
"@type": "QuantitativeValue",
"value": 140,
"unitCode": "FTK"
},
"amenityFeature": [
{
"@type": "LocationFeatureSpecification",
"name": "Private Balcony",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "City View",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Free Wi-Fi",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Air Conditioning",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "24-hr Room Service",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "24-hr Housekeeping",
"value": true
}
],
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
},
"potentialAction": {
"@type": "ReserveAction",
"target": "https://balkrishnapalace.com/rooms/palace/#book"
},
"offers": {
"@type": "Offer",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/palace/"
}
},
{
"@type": "HotelRoom",
"@id": "https://balkrishnapalace.com/rooms/twins/#room",
"name": "The Twins",
"url": "https://balkrishnapalace.com/rooms/twins/",
"description": "Two full single beds, a private balcony, and the hills of the Eastern Ghats framed in the window. The Twins is built for the guests who need their own bed but not their own room — colleagues on a work trip, friends travelling through Koraput, or a parent and child. Room service and in-room dining run all day.",
"image": "https://balkrishnapalace.com/assets/room-twins.webp",
"bed": {
"@type": "BedDetails",
"typeOfBed": "2 Single"
},
"occupancy": {
"@type": "QuantitativeValue",
"maxValue": 2,
"unitCode": "C62"
},
"floorSize": {
"@type": "QuantitativeValue",
"value": 168,
"unitCode": "FTK"
},
"amenityFeature": [
{
"@type": "LocationFeatureSpecification",
"name": "Private Balcony",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Hill View",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Free Wi-Fi",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "24-hr Room Service",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "In-room Dining",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Mineral Water",
"value": true
}
],
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
},
"potentialAction": {
"@type": "ReserveAction",
"target": "https://balkrishnapalace.com/rooms/twins/#book"
},
"offers": {
"@type": "Offer",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/twins/"
}
},
{
"@type": "HotelRoom",
"@id": "https://balkrishnapalace.com/rooms/royals/#room",
"name": "The Royals",
"url": "https://balkrishnapalace.com/rooms/royals/",
"description": "A king bed, 180 square feet of unhurried space, and a balcony that catches the evening light over Jeypore. The Royals adds the details that make a longer stay feel effortless — an air purifier, in-room dining from the Swad Sadan kitchen, and a bathroom finished to the standard the name suggests. Our most requested room for anniversaries and family visits.",
"image": "https://balkrishnapalace.com/assets/rooms/the-royals/royals-1.webp",
"bed": {
"@type": "BedDetails",
"typeOfBed": "1 King"
},
"occupancy": {
"@type": "QuantitativeValue",
"maxValue": 3,
"unitCode": "C62"
},
"floorSize": {
"@type": "QuantitativeValue",
"value": 180,
"unitCode": "FTK"
},
"amenityFeature": [
{
"@type": "LocationFeatureSpecification",
"name": "Private Balcony",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "City View",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Free Wi-Fi",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "24-hr Room Service",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "In-room Dining",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Air Purifier",
"value": true
}
],
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
},
"potentialAction": {
"@type": "ReserveAction",
"target": "https://balkrishnapalace.com/rooms/royals/#book"
},
"offers": {
"@type": "Offer",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/royals/"
}
},
{
"@type": "HotelRoom",
"@id": "https://balkrishnapalace.com/rooms/suite/#room",
"name": "Balkrishna Suite",
"url": "https://balkrishnapalace.com/rooms/suite/",
"description": "The finest room in Jeypore, and the one guests come back for. At 384 square feet the Balkrishna Suite is nearly three times the size of a standard room, with a private bathtub, a king bed, a separate sitting area and a balcony you can choose city-side or hill-side. Daily housekeeping, room service, and the quiet that only the top floor gives you.",
"image": "https://balkrishnapalace.com/assets/rooms/the-suites/suites-2.webp",
"bed": {
"@type": "BedDetails",
"typeOfBed": "1 King"
},
"occupancy": {
"@type": "QuantitativeValue",
"maxValue": 3,
"unitCode": "C62"
},
"floorSize": {
"@type": "QuantitativeValue",
"value": 384,
"unitCode": "FTK"
},
"amenityFeature": [
{
"@type": "LocationFeatureSpecification",
"name": "Private Bathtub",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Private Balcony",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "City / Hill View",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Free Wi-Fi",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Room Service",
"value": true
},
{
"@type": "LocationFeatureSpecification",
"name": "Daily Housekeeping",
"value": true
}
],
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
},
"potentialAction": {
"@type": "ReserveAction",
"target": "https://balkrishnapalace.com/rooms/suite/#book"
},
"offers": {
"@type": "Offer",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/suite/"
}
}
],
"makesOffer": [
{
"@type": "Offer",
"name": "The Palace — per night",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/palace/",
"itemOffered": {
"@id": "https://balkrishnapalace.com/rooms/palace/#room"
}
},
{
"@type": "Offer",
"name": "The Twins — per night",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/twins/",
"itemOffered": {
"@id": "https://balkrishnapalace.com/rooms/twins/#room"
}
},
{
"@type": "Offer",
"name": "The Royals — per night",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/royals/",
"itemOffered": {
"@id": "https://balkrishnapalace.com/rooms/royals/#room"
}
},
{
"@type": "Offer",
"name": "Balkrishna Suite — per night",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://balkrishnapalace.com/rooms/suite/",
"itemOffered": {
"@id": "https://balkrishnapalace.com/rooms/suite/#room"
}
}
],
"department": [
{
"@type": "Restaurant",
"@id": "https://balkrishnapalace.com/#restaurant",
"name": "Swad Sadan Restaurant",
"description": "Multi-cuisine rooftop restaurant at The Balkrishna Palace serving Odia, North Indian and continental dishes. Open to hotel guests and walk-ins.",
"servesCuisine": [
"Odia",
"North Indian",
"Continental",
"Chinese"
],
"priceRange": "₹₹",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/restaurant/restaurant-1.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "07:00",
"closes": "23:00"
},
"acceptsReservations": "True",
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
},
{
"@type": "BarOrPub",
"@id": "https://balkrishnapalace.com/#restobar",
"name": "Chill & Relax Restobar",
"description": "The restobar at The Balkrishna Palace, Jeypore — signature cocktails, premium spirits and bar food in a relaxed evening setting.",
"priceRange": "₹₹",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/restobar/restobar-6.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
},
{
"@type": "EventVenue",
"@id": "https://balkrishnapalace.com/#banquet",
"name": "The Balkrishna Palace Banquet Hall",
"description": "Banquet hall in Jeypore for weddings, receptions, birthdays, conferences and corporate events, with in-house catering.",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/banquet-hall/banquet-hall-1.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
}
]
},
{
"@type": "Restaurant",
"@id": "https://balkrishnapalace.com/#restaurant",
"name": "Swad Sadan Restaurant",
"description": "Multi-cuisine rooftop restaurant at The Balkrishna Palace serving Odia, North Indian and continental dishes. Open to hotel guests and walk-ins.",
"servesCuisine": [
"Odia",
"North Indian",
"Continental",
"Chinese"
],
"priceRange": "₹₹",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/restaurant/restaurant-1.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "07:00",
"closes": "23:00"
},
"acceptsReservations": "True",
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
},
{
"@type": "BarOrPub",
"@id": "https://balkrishnapalace.com/#restobar",
"name": "Chill & Relax Restobar",
"description": "The restobar at The Balkrishna Palace, Jeypore — signature cocktails, premium spirits and bar food in a relaxed evening setting.",
"priceRange": "₹₹",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/restobar/restobar-6.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
},
{
"@type": "EventVenue",
"@id": "https://balkrishnapalace.com/#banquet",
"name": "The Balkrishna Palace Banquet Hall",
"description": "Banquet hall in Jeypore for weddings, receptions, birthdays, conferences and corporate events, with in-house catering.",
"telephone": "+918093261999",
"image": "https://balkrishnapalace.com/assets/banquet-hall/banquet-hall-1.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "Parabeda Chowk, NH 26",
"addressLocality": "Jeypore",
"addressRegion": "Odisha",
"postalCode": "764001",
"addressCountry": "IN"
},
"containedInPlace": {
"@id": "https://balkrishnapalace.com/#hotel"
}
},
{
"@type": "FAQPage",
"@id": "https://balkrishnapalace.com/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "Where exactly is The Balkrishna Palace located in Jeypore?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We are at Parabeda Chowk on NH 26, Jeypore, Odisha 764001 — right on the national highway, so you can reach us directly by road from Koraput, Vizianagaram or Visakhapatnam without navigating the town centre. Jeypore railway station and the main bus stand are both a short drive away."
}
},
{
"@type": "Question",
"name": "What are the check-in and check-out times?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Check-in is from 8:00 AM and check-out is at 11:00 AM. Early check-in and late check-out can usually be arranged subject to availability — call us on +91 80932 61999 before you travel and we will do our best to hold the room for you."
}
},
{
"@type": "Question",
"name": "How much does a room cost per night?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Room rates move with the season and with demand, so we do not publish fixed prices here. For the live rate on your dates, check the room on MakeMyTrip, Goibibo, Agoda or any platform you prefer — or call us on +91 80932 61999, or message us on WhatsApp, and we will quote you our best direct rate."
}
},
{
"@type": "Question",
"name": "How do I book a room?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Pick your room on this site and you will find it listed on MakeMyTrip, Goibibo, Agoda, Cleartrip, EaseMyTrip, Ixigo, Trip.com and Hotels.com — book on whichever you prefer. For the best direct rate, or for group and event bookings, call us on +91 80932 61999 or message us on WhatsApp and we will handle it personally."
}
},
{
"@type": "Question",
"name": "Is there a restaurant and bar at the hotel?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes — two. Swad Sadan is our multi-cuisine rooftop restaurant serving Odia, North Indian and continental dishes daily from 7:00 AM to 11:00 PM, open to hotel guests and walk-ins alike. Chill & Relax, our restobar, serves cocktails and bar food in the evenings. A complimentary breakfast buffet runs from 7:00 to 10:00 AM."
}
},
{
"@type": "Question",
"name": "Do you have a banquet hall for weddings and events?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We do. Our banquet hall hosts weddings, receptions, birthdays, corporate meetings and conferences, with in-house catering from the Swad Sadan kitchen and full event setup. Call +91 80932 61999 to check dates and discuss arrangements."
}
},
{
"@type": "Question",
"name": "Is parking available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, free on-site parking is available for all guests, including space for larger vehicles and tour coaches."
}
},
{
"@type": "Question",
"name": "What is there to see near the hotel?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Jeypore is the natural base for exploring Koraput district. Deomali — the highest peak in Odisha — Duduma Falls, the Gupteswar caves, Kolab Dam and the Jeypore Palace are all within a comfortable day trip. Our front desk can help arrange a car and driver."
}
}
]
}
]
}
</script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
gold: { DEFAULT: '#AD7535', light: '#D09A55', dark: '#7A4F1E' },
cream: '#F5F0E8',
dark: '#080808',
},
fontFamily: {
serif: ['Cinzel', 'Georgia', 'serif'],
display: ['Cinzel Decorative', 'Cinzel', 'serif'],
sans: ['Inter', 'sans-serif'],
garamond: ['Cormorant Garamond', 'serif'],
},
},
},
};
</script>
</head>
<body class="bg-dark text-cream overflow-x-hidden">
<!-- ═══════════════════════════════════ NAVBAR ═══════════════════════════════════ -->
<nav id="navbar" class="fixed top-0 left-0 right-0 z-50 py-5 px-4">
<div class="max-w-7xl mx-auto flex items-center justify-between gap-6">
<a href="#hero" class="flex items-center shrink-0" aria-label="The Balkrishna Palace">
<img src="assets/logo.webp" alt="The Balkrishna Palace" fetchpriority="high" decoding="async" class="h-10 xl:h-12 w-auto object-contain" />
</a>
<div class="hidden lg:flex items-center gap-5 xl:gap-8">
<a href="#about" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">About</a>
<a href="#rooms" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">Rooms</a>
<a href="#reserve-table" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">Dining</a>
<a href="#banquet" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">Banquet</a>
<a href="#gallery" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">Gallery</a>
<a href="#contact" class="text-cream/60 hover:text-gold text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase whitespace-nowrap transition-colors duration-200">Contact</a>
</div>
<div class="hidden lg:flex items-center gap-3 xl:gap-4 shrink-0">
<a href="tel:+918093261999" class="flex items-center gap-2 text-gold hover:text-gold-light text-sm transition-colors duration-200" aria-label="Call +91 80932 61999">
<i data-lucide="phone" class="w-3.5 h-3.5 shrink-0"></i>
<!-- The number is the widest item in the bar — icon-only until xl. -->
<span class="hidden xl:inline whitespace-nowrap">+91 80932 61999</span>
</a>
<a href="#rooms" class="btn-gold px-5 xl:px-6 py-2.5 text-[11px] tracking-[0.15em] xl:tracking-[0.2em] uppercase font-medium whitespace-nowrap">
<span>Book Now</span>
</a>
</div>
<button id="menu-toggle" class="lg:hidden text-cream hover:text-gold transition-colors p-1" aria-label="Toggle menu">
<i data-lucide="menu" class="w-6 h-6" id="menu-icon-svg"></i>
</button>
</div>
<div id="mobile-menu" class="lg:hidden">
<div class="max-w-7xl mx-auto mt-4 pt-4 border-t border-gold/20 space-y-1 pb-2">
<a href="#about" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">About</a>
<a href="#rooms" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Rooms</a>
<a href="#amenities" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Amenities</a>
<a href="#reserve-table" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Dining</a>
<a href="#restobar" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Restobar</a>
<a href="#banquet" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Banquet</a>
<a href="#gallery" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Gallery</a>
<a href="#contact" class="block py-2.5 text-cream/60 hover:text-gold text-[11px] tracking-[0.2em] uppercase transition-colors">Contact</a>
<div class="pt-3 flex flex-col gap-3">
<a href="tel:+918093261999" class="flex items-center gap-2 text-gold text-sm">
<i data-lucide="phone" class="w-4 h-4"></i> +91 80932 61999
</a>
<a href="#rooms" class="btn-gold inline-block text-center px-6 py-3 text-[11px] tracking-[0.2em] uppercase font-medium">
<span>Book Your Stay</span>
</a>
</div>
</div>
</div>
</nav>
<main>
<!-- ═══════════════════════════════════ HERO ═══════════════════════════════════ -->
<section id="hero" class="relative h-screen min-h-[640px] flex items-center justify-center overflow-hidden">
<div class="absolute inset-0">
<img src="assets/hero.webp" fetchpriority="high" decoding="async"
alt="The Balkrishna Palace — Jeypore, Odisha" class="w-full h-full object-cover object-[50%_30%] md:object-center" />
<div class="absolute inset-0 bg-dark/55"></div>
<div class="absolute inset-0 bg-gradient-to-b from-dark/60 via-dark/40 to-dark/75"></div>
<div class="absolute inset-0 bg-gradient-to-r from-dark/30 via-transparent to-dark/30"></div>
</div>
<div class="absolute left-6 top-1/2 -translate-y-1/2 hidden xl:block">
<div class="w-px h-40 bg-gradient-to-b from-transparent via-gold/40 to-transparent"></div>
</div>
<div class="absolute right-6 top-1/2 -translate-y-1/2 hidden xl:block">
<div class="w-px h-40 bg-gradient-to-b from-transparent via-gold/40 to-transparent"></div>
</div>
<div class="relative z-10 text-center px-4 max-w-5xl mx-auto">
<div class="ornament center mb-6" data-aos="fade-down" data-aos-duration="700">
<span class="text-gold text-[10px] tracking-[0.45em] uppercase">Jeypore · Odisha</span>
</div>
<h1 class="hero-title font-serif font-bold leading-[1.05] mb-5" data-aos="fade-up" data-aos-duration="900" data-aos-delay="100">
<span class="hero-line-white block text-cream text-5xl sm:text-6xl md:text-7xl lg:text-[88px] tracking-[0.08em]">The Balkrishna</span>
<span class="block gold-text font-garamond italic font-normal text-6xl sm:text-7xl md:text-8xl lg:text-[100px]" style="text-shadow:none;">Palace</span>
</h1>
<p class="font-garamond text-lg sm:text-xl md:text-2xl text-cream/80 tracking-[0.15em] mb-10" data-aos="fade-up" data-aos-delay="250">
Where Royalty Meets Timeless Luxury
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center" data-aos="fade-up" data-aos-delay="420">
<a href="#rooms"
class="group px-10 py-4 bg-gold text-dark font-semibold text-sm tracking-[0.2em] uppercase relative overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-gold/30">
<span class="relative z-10">Book Your Stay</span>
<div class="absolute inset-0 bg-gold-light scale-x-0 group-hover:scale-x-100 transition-transform duration-300 origin-left z-0"></div>
</a>
<a href="tel:+918093261999"
class="flex items-center gap-3 px-10 py-4 border border-cream/30 text-cream hover:border-gold hover:text-gold text-sm tracking-[0.2em] uppercase transition-all duration-300">
<i data-lucide="phone" class="w-4 h-4"></i>
Call to Book
</a>
</div>
<div class="mt-10 flex items-center justify-center gap-2" data-aos="fade-up" data-aos-delay="600">
<div class="flex gap-0.5"><i data-lucide="star" class="w-4 h-4 text-gold fill-gold"></i><i data-lucide="star" class="w-4 h-4 text-gold fill-gold"></i><i data-lucide="star" class="w-4 h-4 text-gold fill-gold"></i><i data-lucide="star" class="w-4 h-4 text-gold fill-gold"></i><i data-lucide="star" class="w-4 h-4 text-gold fill-gold"></i></div>
<span class="text-cream/60 text-sm">4.5 · 2,000+ Google Reviews</span>
</div>
</div>
<div class="absolute bottom-8 left-1/2 -translate-x-1/2 scroll-indicator text-gold/50">
<i data-lucide="chevrons-down" class="w-6 h-6"></i>
</div>
</section>
<!-- ═══════════════════════════════════ TRUST BAR ═══════════════════════════════════ -->
<div class="border-y border-gold/20 bg-[#080808]/95 backdrop-blur-sm py-6">
<div class="max-w-7xl mx-auto px-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-y-6 gap-x-4">
<div class="flex flex-col items-center text-center" data-aos="fade-up" data-aos-delay="0">
<div class="flex items-baseline gap-1">
<span class="font-serif text-gold text-3xl font-bold">4.5</span>
<i data-lucide="star" class="w-4 h-4 text-gold fill-gold mb-0.5"></i>
</div>
<span class="text-cream/40 text-[10px] tracking-[0.2em] uppercase mt-0.5">Google · 2,000+ Reviews</span>
</div>
<div class="flex flex-col items-center text-center" data-aos="fade-up" data-aos-delay="80">
<div class="flex items-baseline gap-1">
<span class="font-serif text-gold text-3xl font-bold">4.1</span>
<i data-lucide="star" class="w-4 h-4 text-gold fill-gold mb-0.5"></i>
</div>
<span class="text-cream/40 text-[10px] tracking-[0.2em] uppercase mt-0.5">MakeMyTrip · 122 Reviews</span>
</div>
<div class="flex flex-col items-center text-center" data-aos="fade-up" data-aos-delay="160">
<div class="flex items-baseline gap-1">
<span class="font-serif text-gold text-3xl font-bold">4.2</span>
<i data-lucide="star" class="w-4 h-4 text-gold fill-gold mb-0.5"></i>
</div>
<span class="text-cream/40 text-[10px] tracking-[0.2em] uppercase mt-0.5">Goibibo · 23 Reviews</span>
</div>
<div class="flex flex-col items-center text-center" data-aos="fade-up" data-aos-delay="240">
<div class="flex items-baseline gap-1">
<span class="font-serif text-gold text-3xl font-bold">24/7</span>
</div>
<span class="text-cream/40 text-[10px] tracking-[0.2em] uppercase mt-0.5">Front Desk & Room Service</span>
</div>
</div>
</div>
</div>
<!-- ═══════════════════════════════════ ABOUT ═══════════════════════════════════ -->
<section id="about" class="py-24 lg:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid lg:grid-cols-2 gap-16 xl:gap-24 items-center">
<div class="relative" data-aos="fade-right" data-aos-duration="900">
<div class="relative z-10">
<img src="assets/hotel/corridor.webp" loading="lazy" decoding="async"
alt="Balkrishna Palace Lobby" class="w-full h-[480px] sm:h-[520px] object-cover" />
</div>
<div class="absolute top-6 left-6 right-[-20px] bottom-[-20px] border border-gold/25 z-0 pointer-events-none"></div>
</div>
<div data-aos="fade-left" data-aos-duration="900">
<div class="ornament mb-6">
<span class="text-gold text-[10px] tracking-[0.4em] uppercase">Our Story</span>
</div>
<h2 class="font-serif text-4xl md:text-5xl font-bold text-cream leading-tight mb-6">
A Premium Escape<br>in <span class="gold-text italic">Jeypore</span>
</h2>
<p class="font-garamond text-lg text-cream/60 leading-relaxed mb-5">
The Balkrishna Palace has stood as Jeypore's finest hospitality destination for over a decade — blending royal opulence with the genuine warmth of Odia culture.
</p>
<p class="font-garamond text-lg text-cream/60 leading-relaxed mb-10">
From the lush forests of Koraput district to the vibrant heart of Jeypore, our hotel is the gateway to an unforgettable journey. Over 2,000 guests have given us five-star reviews for our immaculate rooms, world-class dining, and an attentive team that truly cares.
</p>
<div class="grid grid-cols-2 gap-6 mb-10">
<div class="border-l-2 border-gold/40 pl-4">
<p class="font-serif text-3xl font-bold text-gold">2,000+</p>
<p class="text-cream/40 text-sm tracking-wide mt-1">Happy Guests</p>
</div>
<div class="border-l-2 border-gold/40 pl-4">
<p class="font-serif text-3xl font-bold text-gold">4.5 ★</p>
<p class="text-cream/40 text-sm tracking-wide mt-1">Google Rating</p>
</div>
</div>
<a href="#rooms" class="btn-gold inline-block px-8 py-3 text-[11px] tracking-[0.2em] uppercase">
<span>Explore Rooms</span>
</a>
</div>
</div>
</div>
</section>