From 9c4dc0ff11299682f51fc431571100d113750ea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Tue, 2 Jun 2026 06:29:17 +0300 Subject: [PATCH] style: add hover transition effects to glass card headings --- .../views/templates/home/services-cards.blade.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/resources/views/templates/home/services-cards.blade.php b/resources/views/templates/home/services-cards.blade.php index 54191cb..ca3b54a 100644 --- a/resources/views/templates/home/services-cards.blade.php +++ b/resources/views/templates/home/services-cards.blade.php @@ -74,6 +74,19 @@ filter: brightness(1.4); transition: all 0.3s ease-in-out; } + +.glass-card h4 { + color: white; + transition: all 0.3s ease-in-out; + text-shadow: 0px 1px 10px #00000080; +} + +.glass-card:hover h4 { + color: black; + transition: all 0.3s ease-in-out; + text-shadow: none; +} + .glass-card:hover svg { filter: brightness(0.8); }