diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 34327f2..89c9579 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -27,6 +27,13 @@ export function Home() { background-size: 300% 300%; /* Makes the gradient larger for animation */ animation: gradientAnimation 15s ease infinite; /* Animates the gradient */ } + + /* Card hover effect */ + .card:hover { + transform: scale(1.05); /* Slight zoom-in effect */ + transition: transform 0.3s ease-in-out; /* Smooth transition */ + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Adding subtle shadow */ + } `} @@ -268,7 +275,7 @@ export function Home() { } const FeatureCard = ({ icon, title, description }: { icon: React.ReactNode; title: string; description: string }) => ( -
{description}
@@ -291,7 +298,7 @@ const ReasonCard = ({ title: string; description: string; }) => ( -{description}