Skip to content

Commit 47785b2

Browse files
Expertise page created
live web page linked and pop-up added Signed-off-by: vimal-tech-starter <varnam2311@gmail.com>
1 parent c83b87e commit 47785b2

9 files changed

Lines changed: 401 additions & 205 deletions

File tree

css/common.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ footer {
165165
color: #fff;
166166
margin-top: 2rem;
167167
font-size: 0.9rem;
168+
letter-spacing: 1px;
168169
}
169170

170171
/* ===================================================
@@ -202,7 +203,7 @@ body.dark #contact {
202203
=================================================== */
203204
#darkModeToggle {
204205
position: fixed;
205-
bottom: 65px;
206+
bottom: 110px;
206207
right: 20px;
207208
width: 55px;
208209
height: 55px;
@@ -225,7 +226,7 @@ body.dark #contact {
225226
/* ===== Scroll to Top Button ===== */
226227
#scrollTopBtn {
227228
position: fixed;
228-
bottom: 65px;
229+
bottom: 110px;
229230
left: 20px;
230231
z-index: 2000;
231232
width: 50px;

css/live-projects.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/* ===================================================
2+
===== Live Projects Section =====
3+
=================================================== */
4+
#live-projects {
5+
text-align: center;
6+
}
7+
8+
.live-projects .btn {
9+
display: inline-block;
10+
padding: 12px 25px;
11+
border-radius: 30px;
12+
background: #ff9800;
13+
color: #fff;
14+
text-decoration: none;
15+
font-weight: bold;
16+
transition: background 0.3s, transform 0.3s;
17+
}
18+
19+
.live-projects .btn:hover {
20+
background: #e68900;
21+
transform: translateY(-3px);
22+
}
23+
24+
.live-projects-card {
25+
background: rgba(179, 105, 105, 0.3);
26+
backdrop-filter: blur(10px);
27+
border-radius: 20px;
28+
padding: 60px;
29+
margin: 20px 0;
30+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
31+
}
32+
33+
body.dark .live-projects-card {
34+
background-color: #467db4;
35+
color: #000;
36+
}

css/main.css

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,25 @@ body.dark #darkModeToggle:hover {
328328
body.dark .visitor-count-card {
329329
background-color: #467db4;
330330
color: #000;
331-
}
331+
}
332+
333+
/* CTA Section */
334+
.cta-section {
335+
text-align: center;
336+
margin-top: 50px;
337+
}
338+
339+
.cta-section a.btn {
340+
background: #ff9800;
341+
color: #fff;
342+
padding: 14px 30px;
343+
border-radius: 30px;
344+
font-weight: bold;
345+
text-decoration: none;
346+
transition: all 0.3s ease;
347+
}
348+
349+
.cta-section a.btn:hover {
350+
background: #ff5722;
351+
transform: scale(1.05);
352+
}

css/services.css

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -261,43 +261,6 @@ body.dark #services-offer {
261261
color: #000;
262262
}
263263

264-
/* ===================================================
265-
===== Live Projects Section =====
266-
=================================================== */
267-
#live-projects {
268-
text-align: center;
269-
}
270-
271-
.live-projects .btn {
272-
display: inline-block;
273-
padding: 12px 25px;
274-
border-radius: 30px;
275-
background: #ff9800;
276-
color: #fff;
277-
text-decoration: none;
278-
font-weight: bold;
279-
transition: background 0.3s, transform 0.3s;
280-
}
281-
282-
.live-projects .btn:hover {
283-
background: #e68900;
284-
transform: translateY(-3px);
285-
}
286-
287-
.live-projects-card {
288-
background: rgba(179, 105, 105, 0.3);
289-
backdrop-filter: blur(10px);
290-
border-radius: 20px;
291-
padding: 60px;
292-
margin: 20px 0;
293-
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
294-
}
295-
296-
body.dark .live-projects-card {
297-
background-color: #467db4;
298-
color: #000;
299-
}
300-
301264
/* Wrapper for centering counter horizontally */
302265
.counter-container {
303266
display: flex;

css/whatsapp-floating.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* ===== WhatsApp Button ===== */
22
.whatsapp-float {
33
position: fixed;
4-
bottom: 130px;
4+
bottom: 171px;
55
right: 20px;
66
z-index: 1000;
77
background-color: #25d366;

0 commit comments

Comments
 (0)