diff --git a/src/Components/Pages/Services/CardBtn.tsx b/src/Components/Pages/Services/CardBtn.tsx
index 5dab055..6dad54c 100644
--- a/src/Components/Pages/Services/CardBtn.tsx
+++ b/src/Components/Pages/Services/CardBtn.tsx
@@ -6,7 +6,7 @@ interface props {
const CardBtn = ({ title, onClick, isSelected }: props) => {
const buttonClass = isSelected
- ? "w-full font-medium md:px-4 py-1 text-xs lg:text-sm xl:text-lg bg-gradient-to-br from-custom-bglight to-custom-bgdark"
+ ? "w-full font-bold md:px-4 py-1 text-xs lg:text-sm xl:text-lg bg-gradient-to-br from-custom-bglight to-custom-bgdark"
: "w-full font-medium md:px-4 py-1 text-xs lg:text-sm xl:text-lg bg-gradient-to-br from-custom-bglight to-custom-bgdark text-gray-400 shadow-inner";
const divClass = isSelected
diff --git a/src/Components/Pages/Services/MarketingCards.tsx b/src/Components/Pages/Services/MarketingCards.tsx
index f72b3fb..79990c4 100644
--- a/src/Components/Pages/Services/MarketingCards.tsx
+++ b/src/Components/Pages/Services/MarketingCards.tsx
@@ -6,7 +6,7 @@ import ExecuteImg from "../../../assets/imgs/Execute.jpg";
const MarketingCards = () => {
return (
-
+
diff --git a/src/Components/Pages/Services/SocialMedia.tsx b/src/Components/Pages/Services/SocialMedia.tsx
index fd82bba..bdbfd53 100644
--- a/src/Components/Pages/Services/SocialMedia.tsx
+++ b/src/Components/Pages/Services/SocialMedia.tsx
@@ -6,7 +6,7 @@ import ExpandImg from "../../../assets/imgs/Expand.jpg";
const SocialMediaCards = () => {
return (
-
+
diff --git a/src/Components/Pages/Services/WesiteCards.tsx b/src/Components/Pages/Services/WesiteCards.tsx
index 3ffe6af..a4af17b 100644
--- a/src/Components/Pages/Services/WesiteCards.tsx
+++ b/src/Components/Pages/Services/WesiteCards.tsx
@@ -6,7 +6,7 @@ import BuildImg from "../../../assets/imgs/Build.png";
const WesiteCards = () => {
return (
-
+
diff --git a/src/index.css b/src/index.css
index 47010ed..bb429a6 100644
--- a/src/index.css
+++ b/src/index.css
@@ -27,3 +27,16 @@ body {
.gold-text {
@apply bg-clip-text text-transparent bg-gradient-to-br from-gold-light to-gold-dark;
}
+
+.fade-effect {
+ animation: fadeEffect 1s ease-in-out;
+}
+
+@keyframes fadeEffect {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}