From 81c051649ed570c3bc56807c0d7a4d810fadf015 Mon Sep 17 00:00:00 2001 From: notverifiedcode <101034581+Mrunalisa@users.noreply.github.com> Date: Sun, 17 Aug 2025 22:05:29 +0530 Subject: [PATCH] feat(ui): add transition animations & theme color consistency for Hero Section buttons and About Us button --- styles/main.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/styles/main.css b/styles/main.css index 227ead29..65688260 100644 --- a/styles/main.css +++ b/styles/main.css @@ -519,24 +519,26 @@ nav { } .aboutCTA-Btn { + box-shadow: 0 0 18px 0 rgba(19, 117, 216, 0.25); position: relative; display: inline-block; padding: 0.75rem 1.75rem; font-size: 1rem; font-weight: 600; - color: #fff; - background: #0000ff; + color: #1d4ed8; + background-color: #fff; border-radius: 25px; - border: none; + border: 1px solid #0000ff; cursor: pointer; text-decoration: none; overflow: hidden; z-index: 1; transition: color 0.3s ease, transform 0.3s ease; + } .aboutCTA-Btn:hover { - color: #0000ff; + color: #fff; transform: translateY(-2px); border: 1px solid #0000ff; } @@ -548,7 +550,7 @@ nav { left: -100%; width: 100%; height: 100%; - background: #fff; + background: #0000ff; transition: left 0.4s ease; z-index: -1; }