diff --git a/dedicated-destinations/machu-picchu-peru/Machu_start.html b/dedicated-destinations/machu-picchu-peru/Machu_start.html
index 3741dae2..d4d4e4c3 100644
--- a/dedicated-destinations/machu-picchu-peru/Machu_start.html
+++ b/dedicated-destinations/machu-picchu-peru/Machu_start.html
@@ -10,6 +10,7 @@
diff --git a/dedicated-destinations/machu-picchu-peru/Machu_tour.css b/dedicated-destinations/machu-picchu-peru/Machu_tour.css
index 414345f6..8065b601 100644
--- a/dedicated-destinations/machu-picchu-peru/Machu_tour.css
+++ b/dedicated-destinations/machu-picchu-peru/Machu_tour.css
@@ -442,6 +442,129 @@
border-radius: 2px;
}
+ /* Toggle button styling */
+
+ .toggle-container {
+ --size: 2rem;
+ position: relative;
+ width: var(--size);
+ height: var(--size);
+ }
+
+ .toggle {
+ appearance: none;
+ outline: none;
+ cursor: pointer;
+ width: 100%;
+ height: 100%;
+ box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
+ border-radius: 999px;
+ color: hsl(240, 100%, 95%);
+ transition: all 500ms;
+ position: absolute;
+ top: 0;
+ left: 0;
+
+ &:checked {
+ --ray-size: calc(var(--size) * -0.4);
+ --offset-orthogonal: calc(var(--size) * 0.65);
+ --offset-diagonal: calc(var(--size) * 0.45);
+ transform: scale(0.75);
+ color: hsl(40, 100%, 50%);
+ box-shadow: inset 0 0 0 var(--size),
+ calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size),
+ var(--offset-orthogonal) 0 0 var(--ray-size),
+ 0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size),
+ 0 var(--offset-orthogonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0
+ var(--ray-size),
+ var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size),
+ var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
+ }
+ }
+
+ /* Dark mode styling */
+ body.dark-theme{
+ background-color: #0e1525;
+ color: #ffffff;
+ }
+
+ body.dark-theme .img-box img {
+ border-color: #888888;
+ box-shadow: 5px 5px 60px #888888;
+ }
+
+ body.dark-theme .bttn {
+ background: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .bttn:hover {
+ background: #081529 !important ;
+ }
+
+ body.dark-theme .menu {
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .menu p {
+ color: #c9c9c9 !important;
+ }
+
+ body.dark-theme #btn-style {
+ border-color: #888888;
+ color: #888888;
+ }
+
+ body.dark-theme .map {
+ box-shadow: 5px 5px 20px #888888;
+ }
+
+ body.dark-theme .bttnn {
+ background-color: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .features {
+ background-color: #0d213f;
+ border-color: #888888;
+ color: #ffffff;
+ }
+
+ body.dark-theme .features h3 {
+ color: #ff6b6b;
+ }
+
+
+ body.dark-theme #chk-design {
+ border-color: #888888;
+ color: #ffffff;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .single-list-topics-content {
+ background: #0d213f;
+ box-shadow: 0 0px 10px rgba(200, 200, 200, .2);
+ border-color: #888888;
+ }
+
+ body.dark-theme .description {
+ border-color: #888888;
+ background-color: #0d213f;
+ box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
+ }
+
+ body.dark-theme #weatherInfo {
+ border-color: #888888;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .bttnn:hover {
+ background-color: #04AA6D;
+ color: white;
+ }
+
@media screen and (max-width : 1220px) {
.hamburger {
display: flex;
diff --git a/dedicated-destinations/new-york/NewYork.css b/dedicated-destinations/new-york/NewYork.css
index 414345f6..b8a65894 100644
--- a/dedicated-destinations/new-york/NewYork.css
+++ b/dedicated-destinations/new-york/NewYork.css
@@ -442,6 +442,129 @@
border-radius: 2px;
}
+ /* Toggle button styling */
+
+ .toggle-container {
+ --size: 2rem;
+ position: relative;
+ width: var(--size);
+ height: var(--size);
+ }
+
+ .toggle {
+ appearance: none;
+ outline: none;
+ cursor: pointer;
+ width: 100%;
+ height: 100%;
+ box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
+ border-radius: 999px;
+ color: hsl(240, 100%, 95%);
+ transition: all 500ms;
+ position: absolute;
+ top: 0;
+ left: 0;
+
+ &:checked {
+ --ray-size: calc(var(--size) * -0.4);
+ --offset-orthogonal: calc(var(--size) * 0.65);
+ --offset-diagonal: calc(var(--size) * 0.45);
+ transform: scale(0.75);
+ color: hsl(40, 100%, 50%);
+ box-shadow: inset 0 0 0 var(--size),
+ calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size),
+ var(--offset-orthogonal) 0 0 var(--ray-size),
+ 0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size),
+ 0 var(--offset-orthogonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0
+ var(--ray-size),
+ var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size),
+ var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
+ }
+ }
+
+ /* Dark mode styling */
+ body.dark-theme{
+ background-color: #0e1525;
+ color: #ffffff;
+ }
+
+ body.dark-theme .img-box img {
+ border-color: #888888;
+ box-shadow: 5px 5px 60px #888888;
+ }
+
+ body.dark-theme .bttn {
+ background: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .bttn:hover {
+ background: #081529 !important ;
+ }
+
+ body.dark-theme .menu {
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .menu p {
+ color: #c9c9c9 !important;
+ }
+
+ body.dark-theme #btn-style {
+ border-color: #888888;
+ color: #888888;
+ }
+
+ body.dark-theme .map {
+ box-shadow: 5px 5px 20px #888888;
+ }
+
+ body.dark-theme .bttnn {
+ background-color: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .features {
+ background-color: #0d213f;
+ border-color: #888888;
+ color: #ffffff;
+ }
+
+ body.dark-theme .features h3 {
+ color: #ff6b6b;
+ }
+
+
+ body.dark-theme #chk-design {
+ border-color: #888888;
+ color: #ffffff;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .single-list-topics-content {
+ background: #0d213f;
+ box-shadow: 0 0px 10px rgba(200, 200, 200, .2);
+ border-color: #888888;
+ }
+
+ body.dark-theme .description {
+ border-color: #888888;
+ background-color: #0d213f;
+ box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
+ }
+
+ body.dark-theme #weatherInfo {
+ border-color: #888888;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .bttnn:hover {
+ background-color: #04AA6D;
+ color: white;
+ }
+
@media screen and (max-width : 1220px) {
.hamburger {
display: flex;
diff --git a/dedicated-destinations/new-york/start.html b/dedicated-destinations/new-york/start.html
index d11065f9..224c14bf 100644
--- a/dedicated-destinations/new-york/start.html
+++ b/dedicated-destinations/new-york/start.html
@@ -10,6 +10,7 @@
+
@@ -45,6 +46,9 @@
+
+
+
diff --git a/dedicated-destinations/santorini-aegean-sea/start.html b/dedicated-destinations/santorini-aegean-sea/start.html
index 4134449d..79cf2c2c 100644
--- a/dedicated-destinations/santorini-aegean-sea/start.html
+++ b/dedicated-destinations/santorini-aegean-sea/start.html
@@ -10,6 +10,7 @@
+
@@ -45,6 +46,9 @@
+
+
+
diff --git a/dedicated-destinations/santorini-aegean-sea/tour.css b/dedicated-destinations/santorini-aegean-sea/tour.css
index 414345f6..8065b601 100644
--- a/dedicated-destinations/santorini-aegean-sea/tour.css
+++ b/dedicated-destinations/santorini-aegean-sea/tour.css
@@ -442,6 +442,129 @@
border-radius: 2px;
}
+ /* Toggle button styling */
+
+ .toggle-container {
+ --size: 2rem;
+ position: relative;
+ width: var(--size);
+ height: var(--size);
+ }
+
+ .toggle {
+ appearance: none;
+ outline: none;
+ cursor: pointer;
+ width: 100%;
+ height: 100%;
+ box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
+ border-radius: 999px;
+ color: hsl(240, 100%, 95%);
+ transition: all 500ms;
+ position: absolute;
+ top: 0;
+ left: 0;
+
+ &:checked {
+ --ray-size: calc(var(--size) * -0.4);
+ --offset-orthogonal: calc(var(--size) * 0.65);
+ --offset-diagonal: calc(var(--size) * 0.45);
+ transform: scale(0.75);
+ color: hsl(40, 100%, 50%);
+ box-shadow: inset 0 0 0 var(--size),
+ calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size),
+ var(--offset-orthogonal) 0 0 var(--ray-size),
+ 0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size),
+ 0 var(--offset-orthogonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0
+ var(--ray-size),
+ var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size),
+ calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size),
+ var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
+ }
+ }
+
+ /* Dark mode styling */
+ body.dark-theme{
+ background-color: #0e1525;
+ color: #ffffff;
+ }
+
+ body.dark-theme .img-box img {
+ border-color: #888888;
+ box-shadow: 5px 5px 60px #888888;
+ }
+
+ body.dark-theme .bttn {
+ background: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .bttn:hover {
+ background: #081529 !important ;
+ }
+
+ body.dark-theme .menu {
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .menu p {
+ color: #c9c9c9 !important;
+ }
+
+ body.dark-theme #btn-style {
+ border-color: #888888;
+ color: #888888;
+ }
+
+ body.dark-theme .map {
+ box-shadow: 5px 5px 20px #888888;
+ }
+
+ body.dark-theme .bttnn {
+ background-color: #222f4b;
+ color: #fff;
+ }
+
+ body.dark-theme .features {
+ background-color: #0d213f;
+ border-color: #888888;
+ color: #ffffff;
+ }
+
+ body.dark-theme .features h3 {
+ color: #ff6b6b;
+ }
+
+
+ body.dark-theme #chk-design {
+ border-color: #888888;
+ color: #ffffff;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .single-list-topics-content {
+ background: #0d213f;
+ box-shadow: 0 0px 10px rgba(200, 200, 200, .2);
+ border-color: #888888;
+ }
+
+ body.dark-theme .description {
+ border-color: #888888;
+ background-color: #0d213f;
+ box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
+ }
+
+ body.dark-theme #weatherInfo {
+ border-color: #888888;
+ background-color: #0d213f;
+ }
+
+ body.dark-theme .bttnn:hover {
+ background-color: #04AA6D;
+ color: white;
+ }
+
@media screen and (max-width : 1220px) {
.hamburger {
display: flex;
diff --git a/img/Abhisek Tamang.jpg b/img/testimonial3.jpg
similarity index 100%
rename from img/Abhisek Tamang.jpg
rename to img/testimonial3.jpg
diff --git a/index.html b/index.html
index cefcb13f..f34574cd 100644
--- a/index.html
+++ b/index.html
@@ -509,6 +509,7 @@
TourGuide . . .
Hotel & Resort
+
Packages
Testimonial
Rate Us?
Contact Us
@@ -1276,12 +1277,10 @@
H
-
+
@@ -1488,7 +1474,7 @@
Katie
"
>
Subscribe to get special prize
Subscription successful! 🎉
@@ -1858,7 +1844,7 @@
Subscribe to get special prize