Discover how OurVerse uniquely addresses challenges and fosters innovation in education, healthcare, environmental conservation,
@@ -26,8 +31,15 @@ export default function Usecases() {
>>>>>> 4f67c29af8c9f32c55f43ef5bf9813c49a5735cd
>
Join OurVerse
diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css
index 608ee3d..64f9e28 100644
--- a/src/styles/tailwind.css
+++ b/src/styles/tailwind.css
@@ -309,3 +309,128 @@
color: rgb(116, 0, 204); /* equivalent to 'text-cyan-700' */
}
+<<<<<<< HEAD
+=======
+/* NEW STYLES */
+
+/* For text on a dark background */
+.text-light {
+ background-color: #f0e3f9; /* Light purple */
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+/* For text on a light background */
+.text-dark {
+ background-color: #4e2c7e; /* Dark purple */
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+
+
+.text-gradient-new {
+ background-image: linear-gradient(45deg, #5e4589 0%, #341a55 100%); /* Gradient dark purple */
+ background-color: #341a55;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+.text-gradient-new2 {
+ background-image: linear-gradient(45deg, #ceb1ff 0%, #fcfcfc 50%, #ceb1ff 100%); /* Gradient dark purple */
+ background-color: #341a55;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+ /* H3 Section title */
+
+ .h3-title-new {
+ font-weight: 600; /* Equivalent to font-semibold */
+ letter-spacing: -0.01em; /* Equivalent to tracking-tight */
+ line-height: 1.2; /* Equivalent to leading-normal */
+ font-size: 1.25rem; /* Equivalent to text-xl */
+ background-color: #5e4589;
+ background-image: linear-gradient(45deg, #684c97 0%, #341a55 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+ }
+
+ @media (min-width: 1024px) {
+ .h3-title-new {
+ font-size: 2.25rem; /* Equivalent to lg:text-4xl */
+ }
+ }
+
+/* Button styles */
+
+/* Button gradient for dark backgrounds */
+.btn-light {
+ background: radial-gradient(circle, #eee1ff 0%, #9971e0 100%); /* Radial gradient with #eee1ff in the center */
+ color: #341a55;
+ padding: 8px 15px;
+ border: none;
+ cursor: pointer;
+ transition: background 0.3s ease;
+}
+
+.btn-light:hover {
+ background: radial-gradient(circle, #9971e0 0%, #341a55 100%); /* Reverse radial gradient on hover */
+ color: #eee1ff;
+}
+
+
+
+/* Button gradient for light backgrounds */
+.btn-dark {
+ background: radial-gradient(circle, #5e4589 0%, #341a55 100%); /* Radial gradient dark purple */
+ color: white;
+ padding: 10px 18px;
+ border: none;
+ cursor: pointer;
+ transition: background 0.3s ease;
+}
+
+.btn-dark:hover {
+ background: radial-gradient(circle, #341a55 0%, #5e4589 100%); /* Reverse radial gradient on hover */
+}
+
+.text-link {
+ background-color: #703db7; /* Dark purple */
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+.text-link:hover {
+ background-color: #4e2c7e; /* Dark purple */
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ text-fill-color: transparent;
+}
+
+.btn-new {
+ background: radial-gradient(circle, #7152a6 0%, #755bb2 0%, #5e4589 50%, #341a55 100%); /* Light purple gradient similar to the bird */
+ color: #ffffff; /* Dark purple color similar to the text */
+ padding: 8px 15px;
+ border: none;
+ cursor: pointer;
+ border-radius: 1rem /* 16px */;
+}
+
+.btn-new:hover {
+ background: radial-gradient(circle, #341a55 0%, #5e4589 100%); /* Reverse gradient on hover */
+}
+>>>>>>> 4f67c29af8c9f32c55f43ef5bf9813c49a5735cd