-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
991 lines (978 loc) · 52.5 KB
/
Copy pathindex.html
File metadata and controls
991 lines (978 loc) · 52.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Revolutionary Monument Explorer - Immersive 3D Experience</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Combined font imports for efficiency -->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&family=EB+Garamond:wght@500;700&display=swap" rel="stylesheet">
<!-- Load model-viewer script once -->
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/4.0.0/model-viewer.min.js"></script>
</head>
<body>
<!-- Immersive Loading Screen -->
<div id="loading-screen" class="loading-screen">
<div class="loading-container">
<div class="monument-builder">
<div class="stone-block block-1"></div>
<div class="stone-block block-2"></div>
<div class="stone-block block-3"></div>
<div class="stone-block block-4"></div>
<div class="stone-block block-5"></div>
</div>
<div class="loading-text">
<h2>Building Ancient Wonders...</h2>
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
<p class="loading-status">Initializing 3D Engine</p>
</div>
</div>
<div class="particle-system"></div>
</div>
<!-- Dynamic Navigation -->
<nav id="main-nav" class="floating-nav">
<div class="nav-container">
<div class="nav-logo">
<span class="logo-3d">MONUMENTS</span>
<div class="logo-shadow"></div>
</div>
<div class="nav-links">
<a href="#hero" data-section="hero" class="nav-link active">
<span class="link-text">Explore</span>
<div class="link-glow"></div>
</a>
<a href="#monuments" data-section="monuments" class="nav-link">
<span class="link-text">3D Gallery</span>
<div class="link-glow"></div>
</a>
<a href="#games" data-section="games" class="nav-link">
<span class="link-text">Games</span>
<div class="link-glow"></div>
</a>
<a href="#laboratory" data-section="laboratory" class="nav-link">
<span class="link-text">Lab</span>
<div class="link-glow"></div>
</a>
<a href="#timeline" data-section="timeline" class="nav-link">
<span class="link-text">Time Portal</span>
<div class="link-glow"></div>
</a>
</div>
<div class="nav-controls">
<button id="theme-toggle" class="control-btn" aria-label="Toggle theme">
<div class="sun-moon-icon"></div>
</button>
<button id="audio-toggle" class="control-btn" aria-label="Toggle audio">
<div class="audio-icon"></div>
</button>
</div>
</div>
</nav>
<!-- Cursor Enhancement -->
<div id="custom-cursor">
<div class="cursor-trail"></div>
<div class="cursor-glow"></div>
</div>
<!-- Hero Section - 3D India Map -->
<section id="hero" class="hero-section" role="region" aria-labelledby="hero-title">
<div class="hero-background">
<div class="gradient-orb orb-1"></div>
<div class="gradient-orb orb-2"></div>
<div class="gradient-orb orb-3"></div>
</div>
<div class="hero-content">
<div class="hero-text">
<h1 class="hero-title" id="hero-title">
<span class="title-line line-1">Experience India's</span>
<span class="title-line line-2">Architectural</span>
<span class="title-line line-3 gradient-text">Revolution</span>
</h1>
<p class="hero-subtitle">This map comes alive — hover over states to discover hidden monuments!</p>
<div class="hero-actions">
<button class="btn btn--primary hero-btn" id="start-journey">
<span>Begin Your Journey</span>
<div class="btn-particles"></div>
</button>
<button class="btn btn--outline hero-btn" id="virtual-reality">
<span>VR Experience</span>
<div class="btn-shimmer"></div>
</button>
</div>
</div>
<div class="hero-3d-scene">
<iframe
src="INDIA_.html"
title="Interactive 3D India Map"
style="width:100%; min-height:600px; border:none; display:block;"
>
Your browser does not support iframes.
</iframe>
</div>
</div>
<div class="scroll-indicator">
<div class="scroll-line"></div>
<div class="scroll-text">Scroll to explore</div>
</div>
</section>
<!-- Explore More Section -->
<section class="medieval-modal-section" role="region" aria-labelledby="materials-title">
<button class="modal-header" type="button" aria-expanded="false" aria-controls="materialModal" aria-label="Toggle materials modal">
<span class="header-icon scroll-icon"></span>
<span id="materials-title">Explore the Material across India</span>
<span class="header-icon chevron-icon"></span>
</button>
<div class="modal-content" id="materialModal" aria-hidden="true">
<div class="materials-table">
<!-- Row 1 -->
<div class="material-row">
<div class="material-icon hammer-icon"></div>
<div class="material-info">
<div class="material-name">Limestone</div>
<div class="material-thumb">
<img src="https://sketchfab.com/3d-models/chalk-c6f032e3a7ac4eb7833eff16f7b0c54b" alt="3D Model of Limestone" />
</div>
<div class="material-def">
Widely used in Indian temples and forts for its durability and fine carving.
</div>
<button class="details-btn">Detailed View</button>
</div>
</div>
<!-- Row 2 -->
<div class="material-row">
<div class="material-icon hammer-icon"></div>
<div class="material-info">
<div class="material-name">Bronze</div>
<div class="material-thumb">
<!-- Placeholder; replace with valid URL -->
<img src="https://via.placeholder.com/200?text=Bronze+Model" alt="3D Model of Bronze" />
</div>
<div class="material-def">
Used for sculptures, coins, and ritual objects, especially in South India.
</div>
<button class="details-btn">Detailed View</button>
</div>
</div>
<!-- Row 3 -->
<div class="material-row">
<div class="material-icon hammer-icon"></div>
<div class="material-info">
<div class="material-name">Granite</div>
<div class="material-thumb">
<model-viewer
src="https://modelviewer.dev/assets/glTF-Sample-Models/2.0/DamagedHelmet/glTF/DamagedHelmet.gltf"
alt="3D Model of Granite"
shadow-intensity="1"
camera-controls
style="width: 200px; height: 200px; background: #ede3c6; border-radius: 8px;"
></model-viewer>
</div>
<div class="material-def">
Favored for temple pillars and sculptures, especially in Tamil Nadu.
</div>
<button class="details-btn">Detailed View</button>
</div>
</div>
</div>
</div>
</section>
<!-- Monument Explorer -->
<section id="monuments" class="monuments-section" role="region" aria-labelledby="monuments-title">
<div class="section-header">
<h2 class="section-title" id="monuments-title">3D Monument Gallery</h2>
<p class="section-subtitle">Explore architectural masterpieces with advanced lighting simulation</p>
</div>
<div class="sun-controls">
<div class="sun-slider-container">
<label for="sun-time">Time of Day</label>
<input type="range" id="sun-time" class="sun-slider" min="0" max="24" value="12" step="0.5">
<div class="time-labels">
<span>Dawn</span>
<span>Noon</span>
<span>Dusk</span>
<span>Night</span>
</div>
</div>
<div class="lighting-info">
<div class="sun-position">
<div class="sun-indicator"></div>
</div>
<div class="lighting-stats">
<span class="light-intensity">Intensity: <span id="light-value">100%</span></span>
<span class="shadow-length">Shadow: <span id="shadow-value">Short</span></span>
</div>
</div>
</div>
<div class="monuments-grid" style="display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; padding: 30px 0;">
<!-- Taj Mahal -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Taj Mahal</h3>
<iframe title="Taj Mahal" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/c8eb2e89098746898b94f0b556ecdefe/embed">
</iframe>
</div>
<!-- Charminar -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Charminar</h3>
<iframe title="Charminar" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/bb880d064036496ca14ebac08a243af0/embed">
</iframe>
</div>
<!-- Ellora Caves -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Ellora Caves</h3>
<iframe title="Ellora Caves" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/1a5ec1e212f9451e80dc051e97164d17/embed">
</iframe>
</div>
<!-- Red Fort -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Red Fort</h3>
<iframe title="Red Fort" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/2ad9ae0a1b524a37a2c3ab245b0e5423/embed">
</iframe>
</div>
<!-- Rajgad Fort -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Rajgad Fort</h3>
<iframe title="Rajgad Fort" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/ae06291e8d79463b950c0f71d28ad90f/embed">
</iframe>
</div>
<!-- Indian Fort -->
<div class="monument-card" style="flex: 1 1 320px; max-width: 400px;">
<h3 style="text-align: center;">Indian Fort</h3>
<iframe title="Indian Fort" frameborder="0" allowfullscreen mozallowfullscreen="true"
webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking"
xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered
web-share width="100%" height="300"
src="https://sketchfab.com/models/be4432b8b18b451eb9081e959e348e6e/embed">
</iframe>
</div>
</div>
</section>
<!-- Interactive Games Section -->
<section id="games" class="games-section" role="region" aria-labelledby="games-title">
<div class="section-header">
<h2 class="section-title" id="games-title">Architecture Games</h2>
<p class="section-subtitle">Master the art of monument construction through immersive challenges</p>
</div>
<div class="games-grid">
<div class="game-card architect-game active-game">
<div class="game-preview">
<div class="game-3d-scene">
<div class="building-blocks">
<div class="block block-stone"></div>
<div class="block block-marble"></div>
<div class="block block-granite"></div>
</div>
<div class="construction-grid"></div>
</div>
</div>
<div class="game-info">
<h3>Master Architect Challenge</h3>
<p>Design and build monuments using authentic materials and engineering principles</p>
<div class="game-features">
<span class="feature">Physics Simulation</span>
<span class="feature">Material Properties</span>
<span class="feature">Structural Analysis</span>
</div>
<button class="btn btn--primary play-btn" data-game="architect">
<span>Play Now</span>
</button>
</div>
</div>
<div class="game-card timeline-game">
<div class="game-preview">
<div class="game-3d-scene">
<div class="time-portal">
<div class="portal-rings">
<div class="ring ring-1"></div>
<div class="ring ring-2"></div>
<div class="ring ring-3"></div>
</div>
<div class="historical-scenes">
<div class="scene ancient"></div>
<div class="scene medieval"></div>
<div class="scene modern"></div>
</div>
</div>
</div>
</div>
<div class="game-info">
<h3>Time Portal Quest</h3>
<p>Navigate through centuries of Indian architecture and unlock dynastic secrets</p>
<div class="game-features">
<span class="feature">Historical Accuracy</span>
<span class="feature">Dynasty Exploration</span>
<span class="feature">Cultural Insights</span>
</div>
<button class="btn btn--primary play-btn" data-game="timeline">
<span>Play Now</span>
</button>
</div>
</div>
<div class="game-card physics-game">
<div class="game-preview">
<div class="game-3d-scene">
<div class="physics-demo">
<div class="stress-visualization">
<div class="stress-lines"></div>
<div class="force-arrows"></div>
</div>
<div class="structure-test">
<div class="test-monument"></div>
<div class="load-indicator"></div>
</div>
</div>
</div>
</div>
<div class="game-info">
<h3>Engineering Simulator</h3>
<p>Test monument stability under various conditions using advanced physics</p>
<div class="game-features">
<span class="feature">Stress Analysis</span>
<span class="feature">Load Testing</span>
<span class="feature">Material Science</span>
</div>
<button class="btn btn--primary play-btn" data-game="physics">
<span>Play Now</span>
</button>
</div>
</div>
</div>
<!-- Active Game Interface -->
<div id="game-interface" class="game-interface hidden">
<div class="game-header">
<h3 id="game-title">Master Architect Challenge</h3>
<div class="game-progress">
<div class="progress-bar">
<div class="progress-fill" id="game-progress-fill"></div>
</div>
<span class="progress-text" id="game-progress-text">Level 1 of 5</span>
</div>
<button class="btn btn--outline close-game" id="close-game" aria-label="Close game">×</button>
</div>
<div class="game-content">
<div class="game-viewport">
<div class="construction-area">
<div class="build-grid" id="build-grid"></div>
<div class="placed-blocks" id="placed-blocks"></div>
</div>
<div class="game-controls">
<div class="material-palette">
<div class="material-option active" data-material="stone">
<div class="material-preview stone-material"></div>
<span>Red Sandstone</span>
</div>
<div class="material-option" data-material="marble">
<div class="material-preview marble-material"></div>
<span>White Marble</span>
</div>
<div class="material-option" data-material="granite">
<div class="material-preview granite-material"></div>
<span>Granite</span>
</div>
</div>
<div class="build-tools">
<button class="tool-btn active" data-tool="place">Place</button>
<button class="tool-btn" data-tool="remove">Remove</button>
<button class="tool-btn" data-tool="rotate">Rotate</button>
<button class="tool-btn" data-tool="analyze">Analyze</button>
</div>
</div>
</div>
<div class="game-sidebar">
<div class="challenge-info">
<h4>Current Challenge</h4>
<p id="challenge-description">Build a stable foundation using red sandstone blocks. Ensure proper weight distribution.</p>
</div>
<div class="stability-meter">
<h4>Structural Stability</h4>
<div class="stability-gauge">
<div class="gauge-fill" id="stability-fill"></div>
</div>
<span class="stability-text" id="stability-text">85% Stable</span>
</div>
<div class="game-actions">
<button class="btn btn--primary" id="test-structure">Test Structure</button>
<button class="btn btn--secondary" id="reset-level">Reset Level</button>
</div>
</div>
</div>
</div>
</section>
<!-- Material Laboratory -->
<section id="laboratory" class="laboratory-section" role="region" aria-labelledby="laboratory-title">
<div class="section-header">
<h2 class="section-title" id="laboratory-title">Material Science Laboratory</h2>
<p class="section-subtitle">Explore the properties of ancient building materials</p>
</div>
<div class="lab-interface">
<div class="material-analysis">
<div class="material-selector">
<div class="material-sample active" data-material="red-sandstone">
<div class="sample-cube sandstone-cube"></div>
<span>Red Sandstone</span>
</div>
<div class="material-sample" data-material="white-marble">
<div class="sample-cube marble-cube"></div>
<span>White Marble</span>
</div>
<div class="material-sample" data-material="granite">
<div class="sample-cube granite-cube"></div>
<span>Granite</span>
</div>
<div class="material-sample" data-material="lime-mortar">
<div class="sample-cube lime-mortar-cube"></div>
<span>Lime Mortar</span>
</div>
<div class="material-sample" data-material="egg-white-lime">
<div class="sample-cube egg-white-lime-cube"></div>
<span>Egg White Lime</span>
</div>
<div class="material-sample" data-material="honey-lime">
<div class="sample-cube honey-lime-cube"></div>
<span>Honey Lime</span>
</div>
<div class="material-sample" data-material="coconut-fiber-lime">
<div class="sample-cube coconut-fiber-lime-cube"></div>
<span>Coconut Fiber Lime</span>
</div>
<div class="material-sample" data-material="teak-wood">
<div class="sample-cube teak-wood-cube"></div>
<span>Teak Wood</span>
</div>
</div>
<div class="analysis-display">
<div class="material-3d-view">
<div class="rotating-sample">
<div class="sample-3d sandstone-3d active"></div>
<div class="sample-3d marble-3d"></div>
<div class="sample-3d granite-3d"></div>
<div class="sample-3d lime-mortar-3d"></div>
<div class="sample-3d egg-white-lime-3d"></div>
<div class="sample-3d honey-lime-3d"></div>
<div class="sample-3d coconut-fiber-lime-3d"></div>
<div class="sample-3d teak-wood-3d"></div>
</div>
</div>
<div class="analysis-tools">
<button class="analysis-btn" data-test="hardness">Hardness Test</button>
<button class="analysis-btn" data-test="density">Density Test</button>
<button class="analysis-btn" data-test="weathering">Weathering Test</button>
<button class="analysis-btn" data-test="microscope">Microscopy</button>
<button class="analysis-btn is-code-btn" onclick="runISCodeTest()">IS Code Test</button>
</div>
<div class="is-code-standards">
<h4>IS Code Standards</h4>
<div class="standards-info">
<div class="standard-item">
<span class="standard-label">IS 1121-1:</span>
<span class="standard-desc">Compressive Strength Test</span>
</div>
<div class="standard-item">
<span class="standard-label">IS 1121-2:</span>
<span class="standard-desc">Transverse Strength Test</span>
</div>
<div class="standard-item">
<span class="standard-label">IS 1121-3:</span>
<span class="standard-desc">Tensile Strength Test</span>
</div>
<div class="standard-item">
<span class="standard-label">IS 1124:</span>
<span class="standard-desc">Water Absorption Test</span>
</div>
<div class="standard-item">
<span class="standard-label">IS 9000-6:</span>
<span class="standard-desc">Environmental Testing</span>
</div>
</div>
</div>
<div class="material-description">
<h4>Properties & Uses</h4>
<p id="material-description">Durable, weather-resistant, easy to carve. Iron oxide gives red color, excellent workability. Perfect for forts, palaces, and decorative elements.</p>
</div>
</div>
</div>
<div class="experiment-zone">
<h3>Virtual Testing Laboratory</h3>
<div class="test-environment">
<div class="test-specimen">
<div class="specimen-holder">
<div class="test-sample" id="test-sample"></div>
</div>
<div class="test-apparatus">
<div class="compression-tester"></div>
<div class="weather-chamber"></div>
</div>
</div>
<div class="test-controls">
<div class="test-parameters">
<div class="parameter">
<label for="load-slider">Load (MPa)</label>
<input type="range" id="load-slider" min="0" max="100" value="0">
<span id="load-value">0</span>
</div>
<div class="parameter">
<label for="temp-slider">Temperature (°C)</label>
<input type="range" id="temp-slider" min="-20" max="60" value="25">
<span id="temp-value">25</span>
</div>
<div class="parameter">
<label for="humidity-slider">Humidity (%)</label>
<input type="range" id="humidity-slider" min="0" max="100" value="50">
<span id="humidity-value">50</span>
</div>
</div>
<div class="test-results">
<div class="result-display">
<div class="stress-indicator">
<span class="indicator-label">Stress Level</span>
<div class="stress-gauge">
<div class="gauge-needle" id="stress-needle"></div>
</div>
<span class="stress-status" id="stress-status">Normal</span>
</div>
</div>
<button class="btn btn--primary" id="run-test">Run Analysis</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Time Portal Section -->
<section id="timeline" class="timeline-section" role="region" aria-labelledby="timeline-title">
<div class="section-header">
<h2 class="section-title" id="timeline-title">Historical Time Portal</h2>
<p class="section-subtitle">Journey through architectural evolution across centuries</p>
</div>
<div class="timeline-interface">
<div class="time-navigator">
<div class="timeline-track">
<div class="timeline-line"></div>
<div class="time-periods">
<div class="time-period active" data-period="ancient" data-year="300">
<div class="period-marker"></div>
<span class="period-label">Ancient<br>300-600 CE</span>
</div>
<div class="time-period" data-period="medieval" data-year="1000">
<div class="period-marker"></div>
<span class="period-label">Medieval<br>800-1200 CE</span>
</div>
<div class="time-period" data-period="sultanate" data-year="1300">
<div class="period-marker"></div>
<span class="period-label">Sultanate<br>1200-1500 CE</span>
</div>
<div class="time-period" data-period="mughal" data-year="1600">
<div class="period-marker"></div>
<span class="period-label">Mughal<br>1500-1800 CE</span>
</div>
<div class="time-period" data-period="colonial" data-year="1900">
<div class="period-marker"></div>
<span class="period-label">Colonial<br>1800-1947 CE</span>
</div>
</div>
</div>
</div>
<div class="time-portal-viewer">
<div class="portal-frame">
<div class="portal-rings">
<div class="ring ring-outer"></div>
<div class="ring ring-middle"></div>
<div class="ring ring-inner"></div>
</div>
<div class="historical-scene active" data-scene="ancient">
<div class="scene-3d">
<div class="ancient-temple">
<div class="temple-base"></div>
<div class="temple-pillars">
<div class="pillar pillar-1"></div>
<div class="pillar pillar-2"></div>
<div class="pillar pillar-3"></div>
<div class="pillar pillar-4"></div>
</div>
<div class="temple-roof"></div>
</div>
</div>
<div class="scene-info">
<h3>Ancient Temple Architecture</h3>
<p>Intricate stone carvings and precise geometric designs</p>
</div>
</div>
<div class="historical-scene" data-scene="mughal">
<div class="scene-3d">
<div class="mughal-palace">
<div class="palace-dome"></div>
<div class="palace-walls"></div>
<div class="palace-minarets">
<div class="minaret minaret-left"></div>
<div class="minaret minaret-right"></div>
</div>
</div>
</div>
<div class="scene-info">
<h3>Mughal Palace Complex</h3>
<p>Fusion of Persian, Islamic and Indian architectural styles</p>
</div>
</div>
</div>
<div class="period-details">
<div class="dynasty-info active" data-dynasty="ancient">
<h3>Ancient Period (300-600 CE)</h3>
<div class="dynasty-features">
<div class="feature-item">
<strong>Materials:</strong> Stone, Granite, Sandstone
</div>
<div class="feature-item">
<strong>Techniques:</strong> Precise cutting, Interlocking joints
</div>
<div class="feature-item">
<strong>Innovations:</strong> Mathematical precision, Astronomical alignment
</div>
</div>
<div class="architectural-evolution">
<h4>Key Innovations</h4>
<ul>
<li>Advanced stone-cutting techniques</li>
<li>Complex geometric patterns</li>
<li>Earthquake-resistant construction</li>
<li>Astronomical observatories</li>
</ul>
</div>
</div>
<div class="dynasty-info" data-dynasty="medieval">
<h3>Medieval Indian Architecture (600-1200 CE)</h3>
<div class="dynasty-features">
<div class="feature-item">• Regional temple styles flourished</div>
<div class="feature-item">• Monumental stone temple complexes</div>
<div class="feature-item">• Distinctive Nagara, Dravida, and Vesara styles</div>
<div class="feature-item">• Advanced sculptural ornamentation</div>
</div>
<div class="architectural-evolution">
<h4>Key Innovations</h4>
<ul>
<li>Development of towering shikharas and vimanas</li>
<li>Elaborate mandapa (pillared hall) construction</li>
<li>Sophisticated drainage and ventilation systems</li>
<li>Integration of astronomy in temple orientation</li>
</ul>
</div>
<div class="floating-monument medieval-temple" data-monument="medieval-temple">
<div class="monument-model temple-model">
<div class="temple-base"></div>
<div class="temple-shikhara"></div>
<div class="temple-mandapa"></div>
</div>
<div class="monument-glow"></div>
<div class="monument-label">Medieval Temple</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Achievement Gallery -->
<section id="achievements" class="achievements-section" role="region" aria-labelledby="achievements-title">
<div class="section-header">
<h2 class="section-title" id="achievements-title">Achievement Gallery</h2>
<p class="section-subtitle">Your journey through architectural mastery</p>
</div>
<div class="achievements-grid">
<div class="achievement-card unlocked" data-achievement="explorer">
<div class="achievement-icon">
<div class="trophy-3d">
<div class="trophy-cup"></div>
<div class="trophy-base"></div>
<div class="achievement-glow"></div>
</div>
</div>
<div class="achievement-info">
<h3>Monument Explorer</h3>
<p>Explored all major monuments</p>
<div class="achievement-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 100%"></div>
</div>
<span>3/3 Monuments</span>
</div>
</div>
</div>
<div class="achievement-card locked" data-achievement="architect">
<div class="achievement-icon">
<div class="trophy-3d locked-trophy">
<div class="trophy-cup"></div>
<div class="trophy-base"></div>
<div class="lock-overlay"></div>
</div>
</div>
<div class="achievement-info">
<h3>Master Architect</h3>
<p>Complete all building challenges</p>
<div class="achievement-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 60%"></div>
</div>
<span>3/5 Challenges</span>
</div>
</div>
</div>
<div class="achievement-card locked" data-achievement="scientist">
<div class="achievement-icon">
<div class="trophy-3d locked-trophy">
<div class="trophy-cup"></div>
<div class="trophy-base"></div>
<div class="lock-overlay"></div>
</div>
</div>
<div class="achievement-info">
<h3>Material Scientist</h3>
<p>Master all material properties</p>
<div class="achievement-progress">
<div class="progress-bar">
<div class="progress-fill" style="width: 30%"></div>
</div>
<span>1/3 Materials</span>
</div>
</div>
</div>
</div>
</section>
<!-- Audio Control Panel -->
<div id="audio-panel" class="audio-panel hidden">
<div class="audio-controls">
<div class="volume-control">
<label for="master-volume">Master Volume</label>
<input type="range" id="master-volume" min="0" max="100" value="70">
</div>
<div class="audio-options">
<div class="audio-option">
<input type="checkbox" id="ambient-sounds" checked>
<label for="ambient-sounds">Ambient Sounds</label>
</div>
<div class="audio-option">
<input type="checkbox" id="ui-sounds" checked>
<label for="ui-sounds">UI Sounds</label>
</div>
<div class="audio-option">
<input type="checkbox" id="narration" checked>
<label for="narration">Voice Narration</label>
</div>
</div>
</div>
</div>
<!-- Newsletter Subscription Section -->
<section id="newsletter" class="newsletter-section" role="region" aria-labelledby="newsletter-title">
<div class="newsletter-background">
<div class="newsletter-particles"></div>
<div class="gradient-orb newsletter-orb-1"></div>
<div class="gradient-orb newsletter-orb-2"></div>
<div class="gradient-orb newsletter-orb-3"></div>
</div>
<div class="container">
<div class="section-header">
<h2 class="section-title gradient-text" id="newsletter-title" data-lang="newsletter_title">
<span class="title-line line-1">Join the Heritage</span>
<span class="title-line line-2">Explorer Community</span>
</h2>
<p class="section-subtitle" data-lang="newsletter_subtitle">
Subscribe to receive exclusive updates on new monuments, virtual tours, and archaeological discoveries from across India's rich cultural heritage.
</p>
</div>
<div class="newsletter-container">
<div class="newsletter-form-wrapper">
<div class="form-monument-scene">
<div class="subscription-monument">
<div class="monument-3d subscription-taj">
<div class="dome-main subscription-dome"></div>
<div class="dome-base-3d subscription-base"></div>
<div class="minarets subscription-minarets">
<div class="minaret minaret-1"></div>
<div class="minaret minaret-2"></div>
<div class="minaret minaret-3"></div>
<div class="minaret minaret-4"></div>
</div>
<div class="monument-glow subscription-glow"></div>
</div>
</div>
</div>
<form id="newsletter-form" class="newsletter-form">
<div class="form-group newsletter-input-group">
<div class="input-container">
<input
type="email"
id="subscriber-email"
class="newsletter-input"
placeholder=" "
required
data-lang-placeholder="email_placeholder"
/>
<label for="subscriber-email" class="newsletter-label" data-lang="email_label">
Your Email Address
</label>
<div class="input-glow"></div>
</div>
</div>
<div class="form-group newsletter-preferences">
<h4 data-lang="preferences_title">Subscription Preferences</h4>
<div class="preference-options">
<label class="preference-option">
<input type="checkbox" value="monuments" checked>
<span class="checkmark"></span>
<span data-lang="pref_monuments">New Monument Discoveries</span>
</label>
<label class="preference-option">
<input type="checkbox" value="tours">
<span class="checkmark"></span>
<span data-lang="pref_tours">Virtual Tours & Events</span>
</label>
<label class="preference-option">
<input type="checkbox" value="archaeology">
<span class="checkmark"></span>
<span data-lang="pref_archaeology">Archaeological Updates</span>
</label>
<label class="preference-option">
<input type="checkbox" value="cultural">
<span class="checkmark"></span>
<span data-lang="pref_cultural">Cultural Heritage News</span>
</label>
</div>
</div>
<button type="submit" class="newsletter-btn btn--primary enhanced-heritage-btn">
<div class="btn-icon-container">
<div class="heritage-newsletter-icon">
<div class="monument-outline"></div>
<div class="scroll-element"></div>
<div class="notification-dot"></div>
</div>
<svg class="heritage-newsletter-svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<!-- Monument base -->
<path d="M3 18h18v2H3v-2z" fill="currentColor"/>
<!-- Monument pillars -->
<path d="M5 16h2v-8H5v8zm4 0h2v-8H9v8zm4 0h2v-8h-2v8zm4 0h2v-8h-2v8z" fill="currentColor"/>
<!-- Monument roof -->
<path d="M2 8l10-4 10 4v2H2V8z" fill="currentColor"/>
<!-- Newsletter scroll -->
<path d="M14 12h8v8h-8v-8z" stroke="currentColor" stroke-width="1.5" fill="none" rx="1"/>
<path d="M16 14h4m-4 2h4m-4 2h2" stroke="currentColor" stroke-width="1"/>
<!-- Notification indicator -->
<circle cx="21" cy="13" r="2" fill="#FFD700" stroke="currentColor"/>
</svg>
</div>
<span class="btn-text" data-lang="subscribe_btn">Subscribe to Heritage Updates</span>
<div class="btn-particles"></div>
<div class="btn-shimmer"></div>
</button>
<p class="newsletter-privacy" data-lang="privacy_note">
We respect your privacy. Unsubscribe at any time. No spam, just heritage.
</p>
</form>
</div>
<div class="newsletter-stats">
<div class="stat-card">
<div class="stat-number" data-count="15000">0</div>
<div class="stat-label" data-lang="stat_subscribers">Heritage Explorers</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="250">0</div>
<div class="stat-label" data-lang="stat_monuments">Monuments Covered</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="50">0</div>
<div class="stat-label" data-lang="stat_tours">Virtual Tours</div>
</div>
</div>
</div>
<div class="success-modal" id="subscription-success">
<div class="success-content">
<div class="success-monument">
<div class="success-taj-3d">
<div class="success-dome"></div>
<div class="success-base"></div>
</div>
</div>
<h3 data-lang="success_title">Welcome to the Heritage Family!</h3>
<p data-lang="success_message">
Thank you for subscribing! You'll receive your first heritage update within 24 hours.
</p>
<button class="success-close" data-lang="success_close">Explore More Monuments</button>
</div>
</div>
</div>
</section>
<!-- Team Credits Section -->
<section id="credits" class="credits-section" role="region" aria-labelledby="credits-title">
<div class="section-header">
<h2 class="section-title" id="credits-title">Our Team</h2>
<p class="section-subtitle">This Monument Explorer website was created by a dedicated team of Civil Engineering students under the guidance of Prof. Mahendra Gattu.</p>
</div>
<div class="team-container">
<div class="team-member">
<div class="image-container">
<img src="rahul_tm1.jpg" alt="Portrait of Geddam Rahul">
</div>
<div class="member-details">
<h3 class="member-name">Geddam Rahul</h3>
<p class="member-role">B.Tech in Civil Engineering</p>
<p class="member-institute">NIT Calicut</p>
</div>
</div>
<div class="team-member">
<div class="image-container">
<img src="Archit_tm.jpg" alt="Portrait of Archit Kumar">
</div>
<div class="member-details">
<h3 class="member-name">Archit Kumar</h3>
<p class="member-role">B.Tech in Civil Engineering</p>
<p class="member-institute">CUJ</p>
</div>
</div>
<div class="team-member">
<div class="image-container">
<img src="Lokesh_tm.jpg" alt="Portrait of Lokesh Varma">
</div>
<div class="member-details">
<h3 class="member-name">Lokesh Varma</h3>
<p class="member-role">B.Tech in Civil Engineering</p>
<p class="member-institute">NIT Andhra</p>
</div>
</div>
</div>
<div class="professor-section">
<h3 class="professor-title">Guided and Supervised by</h3>
<div class="professor-card">
<div class="professor-image">
<a href="https://www.nitrkl.ac.in/FacultyStaff/FacultyProfile/gattum">
<img src="https://www.nitrkl.ac.in/docs/Faculty/Photo/1151245.jpg" alt="Portrait of Prof. Mahendra Gattu">
</a>
</div>
<div class="professor-details">
<h3 class="professor-name">Prof. Mahendra Gattu</h3>
<p class="professor-role">Guide & Supervisor</p>
</div>
</div>
</div>
</section>
<script src="app.js"></script>
<script src="INDIA_.js"></script>
</body>
</html>