From 97cf0f72d25b272feabc9dd6cdcf4e2a3510f3d3 Mon Sep 17 00:00:00 2001 From: KaviSaparamadu Date: Mon, 10 Aug 2026 12:09:35 +0530 Subject: [PATCH] ui chngs: --- resources/views/welcome.blade.php | 114 ++++++++++++++++++++++-------- 1 file changed, 85 insertions(+), 29 deletions(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index d542c49..240b7c2 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -172,7 +172,7 @@ body { position: absolute; inset: 0; z-index: 1; - background: linear-gradient(rgba(207, 226, 255, 0.88), rgba(0, 9, 15, 0.75)); + background: linear-gradient(135deg, rgba(30, 35, 62, 0.88) 0%, rgba(21, 24, 44, 0.82) 50%, rgba(15, 18, 35, 0.92) 100%); pointer-events: none; } @@ -181,8 +181,8 @@ body { position: absolute; inset: 0; z-index: 2; - background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%), - radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%); + background: radial-gradient(circle at top right, rgba(255, 234, 133, 0.15), transparent 35%), + radial-gradient(circle at bottom left, rgba(130, 36, 36, 0.2), transparent 40%); pointer-events: none; } @@ -205,22 +205,23 @@ body { display: inline-flex; align-items: center; gap: 8px; - background: rgba(255, 255, 255, 0.12); - border: 1px solid rgba(255, 255, 255, 0.25); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); - color: #fff; + background: rgba(255, 234, 133, 0.12); + border: 1px solid rgba(255, 234, 133, 0.3); + backdrop-filter: blur(14px); + -webkit-backdrop-filter: blur(14px); + color: var(--theme-yellow, #FFEA85); font-size: 13px; - font-weight: 600; - letter-spacing: 0.04em; + font-weight: 700; + letter-spacing: 0.05em; text-transform: uppercase; - padding: 8px 18px; + padding: 9px 20px; border-radius: 999px; - margin-bottom: 22px; + margin-bottom: 24px; + box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); } .hero-badge i { - color: #f2e862; + color: #FFEA85; } .hero h1 { @@ -229,14 +230,15 @@ body { margin: 0; line-height: 1.05; letter-spacing: -0.04em; - text-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); + text-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); + color: #ffffff; } .hero p { font-size: clamp(1rem, 1.2vw, 1.4rem); max-width: 760px; margin: 24px auto 0; - color: rgba(255, 255, 255, 0.92); + color: rgba(255, 255, 255, 0.9); letter-spacing: 0.01em; } @@ -253,6 +255,58 @@ body { margin-left: 10px; } +.btn-theme { + background: linear-gradient(135deg, #822424 0%, #df2c3e 100%) !important; + color: #ffffff !important; + padding: 14px 32px; + border-radius: 999px; + font-weight: 700; + border: 1px solid rgba(255, 255, 255, 0.2) !important; + box-shadow: 0 8px 24px rgba(130, 36, 36, 0.4) !important; + transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; +} + +.btn-theme:hover { + transform: translateY(-4px) !important; + box-shadow: 0 12px 30px rgba(130, 36, 36, 0.55) !important; +} + +.btn-outline-theme { + background: rgba(255, 255, 255, 0.12) !important; + color: #ffffff !important; + border: 1px solid rgba(255, 255, 255, 0.35) !important; + padding: 14px 32px; + border-radius: 999px; + font-weight: 700; + backdrop-filter: blur(14px); + transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; +} + +.btn-outline-theme:hover { + background: rgba(255, 255, 255, 0.22) !important; + color: #ffffff !important; + border-color: #ffffff !important; + transform: translateY(-4px) !important; +} + +.btn-outline-light-custom { + background: #FFEA85 !important; + color: #1E233E !important; + border: none !important; + padding: 14px 32px; + border-radius: 999px; + font-weight: 800; + box-shadow: 0 8px 24px rgba(255, 234, 133, 0.35) !important; + transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; +} + +.btn-outline-light-custom:hover { + background: #ffffff !important; + color: #1E233E !important; + transform: translateY(-4px) !important; + box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4) !important; +} + .hero-stats { display: flex; flex-wrap: wrap; @@ -267,31 +321,33 @@ body { display: flex; align-items: center; gap: 10px; - background: rgba(255, 255, 255, 0.1); - border: 1px solid rgba(255, 255, 255, 0.18); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); + background: rgba(255, 255, 255, 0.12); + border: 1px solid rgba(255, 255, 255, 0.22); + backdrop-filter: blur(14px); + -webkit-backdrop-filter: blur(14px); border-radius: 999px; - padding: 10px 20px; + padding: 11px 22px; color: #fff; transition: transform 0.3s ease, background-color 0.3s ease; + box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); } .hero-stat-pill:hover { - transform: translateY(-3px); - background: rgba(255, 255, 255, 0.16); + transform: translateY(-4px); + background: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 234, 133, 0.4); } .hero-stat-pill strong { - font-size: 17px; + font-size: 18px; font-weight: 800; line-height: 1; - font-variant-numeric: tabular-nums; + color: #FFEA85; } .hero-stat-pill span { font-size: 12px; - color: rgba(255, 255, 255, 0.78); + color: rgba(255, 255, 255, 0.88); display: block; letter-spacing: 0.02em; } @@ -831,12 +887,12 @@ body {
- Accredited Automotive Engineering Institute -

Automobile Engineering Academy

-

Driving Innovation Through Education, Research & Technology

+ Accredited Automotive Engineering Institute +

Automobile Engineering Academy

+

Driving Innovation Through Education, Research & Technology