From 945e250f17f55135f98ee06ea1bf0bc6199254b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Sat, 23 May 2026 17:51:35 +0300 Subject: [PATCH] style: add hover and active state styling for tech tabs grid headings and descriptions --- .../templates/services/web-development.blade.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/resources/views/templates/services/web-development.blade.php b/resources/views/templates/services/web-development.blade.php index ab692cf..b77e862 100644 --- a/resources/views/templates/services/web-development.blade.php +++ b/resources/views/templates/services/web-development.blade.php @@ -280,6 +280,22 @@ border-color: #747ed1 !important; box-shadow: 0 0.5rem 2rem rgba(116, 126, 209, 0.15) !important; } + .tech-tabs-grid .nav-link h4 { + color: #343f52 !important; + transition: color 0.3s ease !important; + } + .tech-tabs-grid .nav-link p { + color: #60697b !important; + transition: color 0.3s ease !important; + } + .tech-tabs-grid .nav-link:hover h4, + .tech-tabs-grid .nav-link.active h4 { + color: #747ed1 !important; + } + .tech-tabs-grid .nav-link:hover p, + .tech-tabs-grid .nav-link.active p { + color: #60697b !important; + } @endpush