-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathservices.css
More file actions
135 lines (123 loc) · 2.35 KB
/
Copy pathservices.css
File metadata and controls
135 lines (123 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* ---- Services Page ---- */
.services-hero {
background: var(--blue-900);
color: var(--white);
padding: 140px 0 60px;
text-align: center;
}
.services-hero h1 {
font-size: 2.8rem;
margin-bottom: 16px;
}
.services-hero .section-label {
color: var(--blue-400);
}
.services-hero-sub {
max-width: 600px;
margin: 0 auto;
font-size: 1.15rem;
color: var(--blue-100);
}
.nav-active {
color: var(--white) !important;
font-weight: 600;
}
/* ---- Service Blocks ---- */
.services-section {
padding: 80px 0;
}
.service-block {
margin-bottom: 56px;
}
.service-block:last-child {
margin-bottom: 0;
}
.service-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 2px solid var(--gray-200);
}
.service-title {
text-align: left;
font-size: 1.6rem;
margin-bottom: 0;
color: var(--blue-800);
}
.service-icon-wrap {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
min-width: 48px;
border-radius: 12px;
background: var(--blue-900);
}
.service-icon-wrap svg {
stroke: var(--white);
}
.service-items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}
.service-item {
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: 12px;
padding: 28px 24px;
transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-item:hover {
box-shadow: var(--shadow-md);
transform: translateY(-3px);
border-color: var(--blue-400);
}
.service-item h3 {
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--gray-800);
}
.service-item p {
font-size: 0.93rem;
line-height: 1.7;
color: var(--gray-600);
margin: 0;
}
/* ---- Service Block Intro ---- */
.service-block-intro {
font-size: 1rem;
line-height: 1.7;
color: var(--gray-600);
margin-bottom: 20px;
}
.service-block-intro .card-link {
font-weight: 600;
}
/* ---- CTA Section ---- */
.services-cta {
background: var(--gray-50);
}
/* ---- Responsive ---- */
@media (max-width: 768px) {
.services-hero {
padding: 120px 0 48px;
}
.services-hero h1 {
font-size: 2rem;
}
.service-header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.service-title {
font-size: 1.35rem;
}
.service-items {
grid-template-columns: 1fr;
}
}