-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservice.html
More file actions
280 lines (252 loc) · 8.23 KB
/
Copy pathservice.html
File metadata and controls
280 lines (252 loc) · 8.23 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Pricing & Services</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #0d0d0d;
color: #fff;
}
nav {
display: flex;
justify-content: space-around;
align-items: center;
padding: 2rem 3rem;
margin-bottom: 1rem;
width: 100vw;
}
.logo-img {
width: 7rem;
aspect-ratio: auto;
mix-blend-mode: difference;
}
.nav-links {
display: flex;
gap: 3.5rem;
}
.nav-links a {
font-size: 1.1rem;
color: #888;
text-decoration: none;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ff4c00;
}
.talk-btn {
font-size: 1.1rem;
background-color: #333;
color: #fff;
padding: 0.7rem 1.5rem;
border-radius: 1.2rem;
text-decoration: none;
transition: background-color 0.3s;
}
.let-talk-btn:hover {
background-color: #ff4c00;
}
h1 {
font-size: 2.5rem;
text-align: center;
margin: 1.5rem 0;
background: linear-gradient(90deg, #FF6FD8, #FF8E00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Pricing Section */
.pricing-section {
padding: 2rem 1rem;
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.pricing-card {
background: #161616;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
width: 320px;
padding: 1.5rem;
text-align: center;
position: relative;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.pricing-card h2 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
font-weight: 600;
color: #fff;
}
.pricing-card .price {
font-size: 2.5rem;
font-weight: bold;
margin: 0.5rem 0;
color: #ff4c00;
}
.pricing-card .price span {
font-size: 1rem;
color: #bbb;
}
.pricing-card ul {
list-style: none;
padding: 0;
margin: 1rem 0;
text-align: left;
}
.pricing-card ul li {
margin-bottom: 0.8rem;
display: flex;
align-items: center;
}
.pricing-card ul li i {
color: #ff8e00;
margin-right: 0.5rem;
}
.pricing-card .btn {
margin-top: 1rem;
padding: 0.8rem 1.5rem;
border: none;
border-radius: 24px;
background: linear-gradient(90deg, #ff6fd8, #ff8e00);
color: #fff;
font-size: 1rem;
cursor: pointer;
transition: transform 0.3s;
}
.pricing-card .btn:hover {
transform: scale(1.05);
}
/* Services Section */
.services-section {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 1rem;
background: linear-gradient(145deg, #131313, #0e0e0e);
}
.services-content {
max-width: 600px;
flex: 1;
color: #fff;
}
.services-content h2 {
font-size: 2.5rem;
line-height: 1.3;
margin-bottom: 1rem;
background: linear-gradient(90deg, #FF6FD8, #FF8E00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.services-list {
list-style: none;
margin: 0;
padding: 0;
}
.services-list li {
margin-bottom: 1rem;
font-size: 1.2rem;
display: flex;
justify-content: space-between;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding-bottom: 0.5rem;
}
.services-list li i {
color: #ff8e00;
}
.services-image {
flex: 1;
max-width: 500px;
padding: 0 1rem;
}
.services-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
.services-section {
flex-direction: column;
}
.services-image {
margin-top: 1rem;
max-width: 100%;
}
}
</style>
</head>
<body>
<!-- Menu -->
<nav>
<div class="logo">
<img class="logo-img" src="./img/Logo.jpg" />
</div>
<div class="nav-links">
<a href="./home.html">Home</a>
<a href="./about.html">About</a>
<a href="./work.html">Works</a>
<a href="./contact.html">Contact</a>
</div>
<a href="./contact.html" class="talk-btn">Let's talk</a>
</nav>
<!-- Pricing Section -->
<section class="pricing-section">
<div class="pricing-card">
<h2>Pay as you go</h2>
<div class="price">$200 <span>/ Per month</span></div>
<ul>
<li><i class="fas fa-check-circle"></i> Flat rate for design</li>
<li><i class="fas fa-check-circle"></i> Stop and resume anytime</li>
<li><i class="fas fa-check-circle"></i> Share the project scope</li>
<li><i class="fas fa-check-circle"></i> Daily work updates</li>
<li><i class="fas fa-check-circle"></i> Rapid communication</li>
<li><i class="fas fa-check-circle"></i> Project duration less than 1 month</li>
</ul>
<button class="btn">Choose Plan</button>
</div>
<div class="pricing-card">
<h2>Pay as you go</h2>
<div class="price">$300 <span>/ Per month</span></div>
<ul>
<li><i class="fas fa-check-circle"></i> Get a free quote</li>
<li><i class="fas fa-check-circle"></i> Get a fixed budget</li>
<li><i class="fas fa-check-circle"></i> Daily work updates</li>
<li><i class="fas fa-check-circle"></i> Rapid communication</li>
<li><i class="fas fa-check-circle"></i> Start project with 50% upfront</li>
<li><i class="fas fa-check-circle"></i> Project duration 2 months</li>
</ul>
<button class="btn">Choose Plan</button>
</div>
<div class="pricing-card">
<h2>Pay as you go</h2>
<div class="price">$350 <span>/ Per month</span></div>
<ul>
<li><i class="fas fa-check-circle"></i> Unlimited works</li>
<li><i class="fas fa-check-circle"></i> Unlimited meetings</li>
<li><i class="fas fa-check-circle"></i> Dedicated resource</li>
<li><i class="fas fa-check-circle"></i> Project management tool access</li>
<li><i class="fas fa-check-circle"></i> Data-driven approach</li>
<li><i class="fas fa-check-circle"></i> Duration more than 2 months</li>
</ul>
<button class="btn">Choose Plan</button>
</div>
</section>
<!-- Services Section -->
<section class="services-section">
<div class="services-content">
<h2>Services That I Provide</h2>
<ul class="services-list">
<li>Brand Identity Design <i class="fas fa-arrow-right"></i></li>
<li>UI/UX Design <i class="fas fa-arrow-right"></i></li>
<li>App Development <i class="fas fa-arrow-right"></i></li>
<li>Web Development <i class="fas fa-arrow-right"></i></li>
</ul>
</div>
</section>
</body>
</html>