moseid commited on
Commit
9abe4f7
·
verified ·
1 Parent(s): 6927d9e
Files changed (1) hide show
  1. style.css +55 -2
style.css CHANGED
@@ -8,9 +8,62 @@ body {
8
  .hero-gradient {
9
  background: linear-gradient(135deg, #000428 0%, #004e92 100%);
10
  }
11
-
12
  .service-card:hover {
13
  transform: translateY(-5px);
14
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
15
  transition: all 0.3s ease;
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  .hero-gradient {
9
  background: linear-gradient(135deg, #000428 0%, #004e92 100%);
10
  }
 
11
  .service-card:hover {
12
  transform: translateY(-5px);
13
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
14
  transition: all 0.3s ease;
15
+ }
16
+
17
+ /* New styles */
18
+ .animate-bounce {
19
+ animation: bounce 2s infinite;
20
+ }
21
+
22
+ @keyframes bounce {
23
+ 0%, 20%, 50%, 80%, 100% {
24
+ transform: translateY(0);
25
+ }
26
+ 40% {
27
+ transform: translateY(-20px);
28
+ }
29
+ 60% {
30
+ transform: translateY(-10px);
31
+ }
32
+ }
33
+
34
+ .text-shadow {
35
+ text-shadow: 0 2px 4px rgba(0,0,0,0.3);
36
+ }
37
+
38
+ .hover-scale {
39
+ transition: transform 0.3s ease;
40
+ }
41
+
42
+ .hover-scale:hover {
43
+ transform: scale(1.05);
44
+ }
45
+
46
+ .glass-effect {
47
+ background: rgba(255, 255, 255, 0.1);
48
+ backdrop-filter: blur(10px);
49
+ -webkit-backdrop-filter: blur(10px);
50
+ border: 1px solid rgba(255, 255, 255, 0.2);
51
+ }
52
+
53
+ .custom-scrollbar::-webkit-scrollbar {
54
+ width: 8px;
55
+ height: 8px;
56
+ }
57
+
58
+ .custom-scrollbar::-webkit-scrollbar-track {
59
+ background: #f1f1f1;
60
+ }
61
+
62
+ .custom-scrollbar::-webkit-scrollbar-thumb {
63
+ background: #3b82f6;
64
+ border-radius: 4px;
65
+ }
66
+
67
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
68
+ background: #2563eb;
69
+ }