diff --git a/pricing.html b/pricing.html index 46f250e..ea6fc78 100644 --- a/pricing.html +++ b/pricing.html @@ -3,10 +3,7 @@ - + Pricing - Ajivika @@ -378,6 +375,6 @@

Subscribe to Our Newsletter

}); }); - + diff --git a/privacy.html b/privacy.html index 9efab76..166f72b 100644 --- a/privacy.html +++ b/privacy.html @@ -3,10 +3,8 @@ - + + Privacy-Policy - Ajivika @@ -22,8 +20,42 @@ body.dark ul li { color: aqua; /* Aqua text in dark mode */ } + .scroll-btn { + position: fixed; + bottom: 20px; + right: 20px; + width: 50px; + height: 50px; + background-color: #d6a52b; + color: white; + border: none; + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; + font-size: 24px; + cursor: pointer; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + } + .scroll-btn:hover { + background-color: black; + transform: scale(1.1); + } + .scroll-btn.show { + opacity: 1; + visibility: visible; + } + + + +