diff --git a/bihar-culture-landing/assets/images/dark_mode.png b/bihar-culture-landing/assets/images/dark_mode.png
new file mode 100644
index 0000000..9b4c1b0
Binary files /dev/null and b/bihar-culture-landing/assets/images/dark_mode.png differ
diff --git a/bihar-culture-landing/assets/images/light_mode.png b/bihar-culture-landing/assets/images/light_mode.png
new file mode 100644
index 0000000..15e1ae8
Binary files /dev/null and b/bihar-culture-landing/assets/images/light_mode.png differ
diff --git a/bihar-culture-landing/culture.html b/bihar-culture-landing/culture.html
index 8a8da57..bfef2a5 100644
--- a/bihar-culture-landing/culture.html
+++ b/bihar-culture-landing/culture.html
@@ -4,6 +4,7 @@
Bihar Culture & Arts
+
@@ -12,6 +13,11 @@
diff --git a/bihar-culture-landing/darkmode.js b/bihar-culture-landing/darkmode.js
new file mode 100644
index 0000000..0b82b60
--- /dev/null
+++ b/bihar-culture-landing/darkmode.js
@@ -0,0 +1,31 @@
+let darkmode = localStorage.getItem('darkmode')
+const themeSwitch = document.getElementById('theme-switch')
+
+const enableDarkmode = () => {
+ document.body.classList.add('darkmode')
+ localStorage.setItem('darkmode', 'active')
+}
+
+const disableDarkmode = () => {
+ document.body.classList.remove('darkmode')
+ localStorage.setItem('darkmode', null)
+}
+
+themeSwitch.addEventListener("click", () => {
+ darkmode = localStorage.getItem('darkmode')
+ if (darkmode === "active") {
+ enableDarkmode()
+ }
+ else{
+ disableDarkmode()
+ }
+})
+themeSwitch.addEventListener("click", () => {
+ darkmode = localStorage.getItem('darkmode')
+ if (darkmode !== "active") {
+ enableDarkmode()
+ }
+ else{
+ disableDarkmode()
+ }
+})
diff --git a/bihar-culture-landing/festivals.html b/bihar-culture-landing/festivals.html
index 5b4bf2f..855b1b6 100644
--- a/bihar-culture-landing/festivals.html
+++ b/bihar-culture-landing/festivals.html
@@ -4,12 +4,18 @@
Bihar Festivals
+
+
Festivals of Bihar
Rythm of Devotion, Soul of a State
diff --git a/bihar-culture-landing/history.html b/bihar-culture-landing/history.html
index e49a2ba..aad78f6 100644
--- a/bihar-culture-landing/history.html
+++ b/bihar-culture-landing/history.html
@@ -4,9 +4,15 @@
Bihar History
+
+
History & Heritage
Weaving the tapestry of Bihar
diff --git a/bihar-culture-landing/index.html b/bihar-culture-landing/index.html
index 16451cd..63d2a14 100644
--- a/bihar-culture-landing/index.html
+++ b/bihar-culture-landing/index.html
@@ -6,10 +6,16 @@
Bihar Culture - Discover the Rich Heritage of Bihar
+