Skip to content

Commit d93ff03

Browse files
Merge pull request #50 from vimal-java-dev/feature/home-my-work
Google analytics and visiting massage added at home page
2 parents 4374f91 + 6d60ad4 commit d93ff03

6 files changed

Lines changed: 104 additions & 515 deletions

File tree

css/main.css

Lines changed: 68 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ body.dark .hamburger {
215215

216216
body.dark #experience,
217217
body.dark #skills,
218-
body.dark #projects {
218+
body.dark #projects,
219+
body.dark #cta-section {
219220
background-color: #467db4;
220221
color: #000;
221222
}
@@ -256,8 +257,8 @@ body.dark #darkModeToggle:hover {
256257
background: #3ce8ff;
257258
}
258259

259-
/* Wrapper for centering counter horizontally */
260-
.counter-container {
260+
/* Wrapper for centering card horizontally */
261+
.card-container {
261262
display: flex;
262263
justify-content: center;
263264
width: 100%;
@@ -283,4 +284,68 @@ body.dark #darkModeToggle:hover {
283284
.cta-section a.btn:hover {
284285
background: #ff5722;
285286
transform: scale(1.05);
287+
}
288+
289+
/* Container */
290+
.cta-wrap {
291+
text-align: center;
292+
padding: 4rem 1rem;
293+
background: #e9ecef;
294+
/* Match your site bg */
295+
}
296+
297+
/* The Card */
298+
.cta-card {
299+
max-width: 800px;
300+
margin: 0 auto;
301+
padding: 2.5rem;
302+
border: 1px solid #333;
303+
border-radius: 12px;
304+
background: #1a1a1a;
305+
/* Slightly lighter than bg */
306+
box-shadow: 0 4px 20px rgba(0, 255, 0, 0.05);
307+
/* Subtle neon glow */
308+
}
309+
310+
/* Typography */
311+
.cta-title {
312+
font-size: 2rem;
313+
color: #fff;
314+
margin-bottom: 0.5rem;
315+
}
316+
317+
.cta-subtitle {
318+
color: #aaa;
319+
font-size: 1.1rem;
320+
margin-bottom: 1.5rem;
321+
}
322+
323+
.cta-description {
324+
color: #ccc;
325+
font-size: 1.1rem;
326+
line-height: 1.6;
327+
margin-bottom: 2rem;
328+
}
329+
330+
.cta-description strong {
331+
color: #00ff88;
332+
/* Your neon color */
333+
}
334+
335+
/* The Button */
336+
.cta-button {
337+
display: inline-block;
338+
padding: 12px 30px;
339+
background-color: #00ff88;
340+
/* Your neon green */
341+
color: #000;
342+
font-weight: bold;
343+
text-decoration: none;
344+
border-radius: 5px;
345+
transition: transform 0.2s, box-shadow 0.2s;
346+
}
347+
348+
.cta-button:hover {
349+
transform: translateY(-2px);
350+
box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
286351
}

css/services.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -275,12 +275,12 @@ body.dark #services-offer {
275275
color: #000;
276276
}
277277

278-
/* Wrapper for centering counter horizontally */
279-
.counter-container {
280-
display: flex;
281-
justify-content: center;
282-
width: 100%;
283-
/* margin-top: 10px; */
278+
/* Wrapper for centering card horizontally */
279+
.card-container {
280+
display: flex;
281+
justify-content: center;
282+
width: 100%;
283+
/* margin-top: 10px; */
284284
}
285285

286286
body.dark .hamburger {

0 commit comments

Comments
 (0)