📍
align-items: center;
position: relative;
padding: 8rem 4rem 4rem;
overflow: hidden;
}
.hero-glow {
position: absolute;
width: 600px; height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(109,255,180,0.12) 0%, transparent 70%);
top: -100px; right: -100px;
pointer-events: none;
animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow2 {
position: absolute;
width: 400px; height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(79,140,255,0.1) 0%, transparent 70%);
bottom: 50px; left: -50px;
pointer-events: none;
animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
0%, 100% { transform: translate(0,0); }
50% { transform: translate(20px, -30px); }
}
.hero-inner {
max-width: 1200px;
width: 100%;
margin: 0 auto;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(109,255,180,0.08);
border: 1px solid rgba(109,255,180,0.2);
color: var(--accent);
padding: 0.35rem 1rem;
border-radius: 100px;
font-size: 0.78rem;
letter-spacing: 0.08em;
font-weight: 500;
margin-bottom: 2rem;
animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
content: '';
width: 7px; height: 7px;
border-radius: 50%;
background: var(--accent);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
font-family: var(--heading);
font-size: clamp(3rem, 7vw, 6.5rem);
font-weight: 800;
line-height: 0.95;
letter-spacing: -0.03em;
margin-bottom: 1.5rem;
animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .line2 {
display: block;
color: transparent;
-webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.hero-title .highlight {
color: var(--accent);
}
.hero-sub {
font-size: 1.1rem;
color: var(--muted);
max-width: 480px;
margin-bottom: 2.5rem;
font-weight: 300;
line-height: 1.7;
animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
display: flex;
align-items: center;
gap: 1.25rem;
animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
background: var(--accent);
color: #0a0a0f;
padding: 0.85rem 2rem;
border-radius: 8px;
font-family: var(--heading);
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.04em;
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.btn-primary:hover {
background: #fff;
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(109,255,180,0.25);
}
.btn-ghost {
color: var(--muted);
text-decoration: none;
font-size: 0.85rem;
display: flex;
align-items: center;
gap: 0.5rem;
transition: color 0.2s;
letter-spacing: 0.02em;
}
.btn-ghost:hover { color: var(--text); }
.hero-stats {
display: flex;
gap: 3rem;
margin-top: 5rem;
padding-top: 2.5rem;
border-top: 1px solid var(--border);
animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
font-family: var(--heading);
font-size: 2.2rem;
font-weight: 800;
color: var(--text);
letter-spacing: -0.04em;
}
.stat-num span { color: var(--accent); }
.stat-label {
font-size: 0.78rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-top: 0.2rem;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
/* --- SECTION LAYOUT --- */
section {
padding: 7rem 4rem;
}
.section-inner {
max-width: 1200px;
margin: 0 auto;
}
.section-label {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-size: 0.72rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
font-weight: 600;
margin-bottom: 1.5rem;
}
.section-label::before {
content: '';
width: 28px; height: 1px;
background: var(--accent);
}
.section-title {
font-family: var(--heading);
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.05;
margin-bottom: 1rem;
}
.section-desc {
color: var(--muted);
max-width: 500px;
font-weight: 300;
line-height: 1.7;
font-size: 1.0rem;
}
/* --- SKILLS --- */
#skills { background: var(--surface); }
.skills-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5px;
margin-top: 4rem;
border: 1.5px solid var(--border);
border-radius: 16px;
overflow: hidden;
}
.skill-card {
background: var(--card);
padding: 2.5rem;
position: relative;
transition: background 0.3s;
cursor: default;
}
.skill-card:hover { background: #1c1c28; }
.skill-card::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 2px;
background: var(--accent);
transform: scaleX(0);
transition: transform 0.3s;
transform-origin: left;
}
.skill-card:hover::after { transform: scaleX(1); }
.skill-icon {
width: 48px; height: 48px;
border-radius: 12px;
background: rgba(109,255,180,0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
margin-bottom: 1.5rem;
}
.skill-name {
font-family: var(--heading);
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 0.75rem;
letter-spacing: -0.02em;
}
.skill-desc {
color: var(--muted);
font-size: 0.88rem;
line-height: 1.65;
font-weight: 300;
}
.skill-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-top: 1.25rem;
}
.skill-tag {
background: rgba(255,255,255,0.04);
border: 1px solid var(--border);
padding: 0.2rem 0.65rem;
border-radius: 100px;
font-size: 0.72rem;
color: var(--muted);
letter-spacing: 0.04em;
}
/* --- PROJECTS --- */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 1.5rem;
margin-top: 4rem;
}
.project-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s, border-color 0.3s;
display: flex;
flex-direction: column;
}
.project-card:hover {
transform: translateY(-6px);
border-color: rgba(109,255,180,0.2);
}
.project-img {
width: 100%;
height: 220px;
object-fit: cover;
filter: brightness(0.85) saturate(0.8);
transition: filter 0.3s;
}
.project-card:hover .project-img { filter: brightness(1) saturate(1); }
.project-img-placeholder {
width: 100%;
height: 220px;
background: linear-gradient(135deg, #1c1c28 0%, #222235 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: var(--muted);
}
.project-body {
padding: 1.75rem;
flex: 1;
display: flex;
flex-direction: column;
}
.project-tag {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent);
font-weight: 600;
margin-bottom: 0.75rem;
}
.project-name {
font-family: var(--heading);
font-size: 1.4rem;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 0.75rem;
}
.project-desc {
color: var(--muted);
font-size: 0.88rem;
line-height: 1.65;
font-weight: 300;
flex: 1;
}
.project-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1.5rem;
color: var(--accent);
text-decoration: none;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.04em;
transition: gap 0.2s;
}
.project-link:hover { gap: 0.85rem; }
/* --- CONTACT --- */
#contact { background: var(--surface); }
.contact-layout {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 5rem;
margin-top: 4rem;
align-items: start;
}
.contact-info-items {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin-top: 2rem;
}
.contact-info-item {
display: flex;
align-items: center;
gap: 1rem;
color: var(--muted);
font-size: 0.9rem;
}
.contact-info-item .icon {
width: 40px; height: 40px;
border-radius: 10px;
background: rgba(109,255,180,0.08);
border: 1px solid rgba(109,255,180,0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
flex-shrink: 0;
}
.contact-info-item a {
color: var(--text);
text-decoration: none;
font-weight: 400;
transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--accent); }
.contact-form {
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--muted);
font-weight: 500;
}
.form-group input,
.form-group textarea {
background: var(--card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 0.85rem 1rem;
color: var(--text);
font-family: var(--body);
font-size: 0.9rem;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: rgba(109,255,180,0.4);
box-shadow: 0 0 0 3px rgba(109,255,180,0.06);
}
.form-group textarea { min-height: 130px; }
.btn-submit {
background: var(--accent);
color: #0a0a0f;
border: none;
padding: 0.9rem 2rem;
border-radius: 8px;
font-family: var(--heading);
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.04em;
cursor: pointer;
transition: all 0.2s;
align-self: flex-start;
}
.btn-submit:hover {
background: #fff;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(109,255,180,0.2);
}
/* --- FOOTER --- */
footer {
border-top: 1px solid var(--border);
padding: 2rem 4rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-copy {
font-size: 0.8rem;
color: var(--muted);
}
.footer-copy span { color: #ff6b6b; }
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
color: var(--muted);
text-decoration: none;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
/* --- SCROLL REVEAL --- */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: none;
}
/* --- RESPONSIVE --- */
@media (max-width: 900px) {
nav { padding: 1rem 1.5rem; }
.nav-links { display: none; }
section { padding: 5rem 1.5rem; }
#home { padding: 7rem 1.5rem 3rem; }
.skills-grid { grid-template-columns: 1fr; }
.contact-layout { grid-template-columns: 1fr; gap: 3rem; }
.form-row { grid-template-columns: 1fr; }
footer { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
.hero-stats { gap: 2rem; }
}
Sagar Gandale.
Available for Freelance Work
Building the
Web of
Tomorrow.
I'm Sagar Gandale — a web developer and programmer based in Pune, Maharashtra. I craft fast, scalable web applications with Angular & Java.
Expertise
My Core Skills
Technologies I've mastered to deliver fast, reliable, and elegant software solutions.
⚡
Angular
Building high-performance single-page applications with Angular's robust, opinionated framework. Fast, awesome, and built for scale.
TypeScript
SPA
RxJS
NgRx
☕
Java
Crafting reliable backend services with Java — the language trusted by Google, Amazon and Netflix for massive infrastructure needs.
Spring Boot
JPA
REST APIs
Maven
🎨
HTML5 & CSS3
The foundation of every web experience. Deep knowledge of semantic HTML and modern CSS techniques for pixel-perfect layouts.
Flexbox
Grid
Animations
Responsive
Portfolio
Featured Projects
A selection of work I've built that solves real-world problems with clean engineering.
🏥
Web Application
Clinic Management System
A full-featured platform for managing daily clinic operations — including appointment booking between clinics and patients, scheduling, and patient records management.
View Live
🚀
Coming Soon
Next Project
More exciting work is in progress. Stay tuned for the next project drop.