* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body 
{
font-family: 'Arial', sans-serif;
background-color: #2c3e50;
color: #ffffff;
line-height: 1.6;
}
.container 
{
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

/* Navigation */
.navbar 
{
position: fixed;
top: 0;
width: 100%;
background: rgba(44, 62, 80, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 20px 0;
}
.nav-container 
{
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
}

.logo-initial 
{
width: 40px;
height: 40px;
background: #00ff41;
color: #2c3e50;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 18px;
}

.nav-menu 
{
display: flex;
list-style: none;
gap: 40px;
}
.nav-menu a 
{
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 400;
letter-spacing: 1px;
transition: color 0.3s ease;
position: relative;
}

.nav-menu a:hover,
.nav-menu a.active
 {
color: #00ff41;
}

.nav-menu a.active::after 
{
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: #00ff41;
}

/* Projects Section */
.projects-hero 
{
padding-top: 120px;
min-height: 100vh;
position: relative;
}

.projects-background 
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.projects-overlay 
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
}

.projects-header 
{
text-align: center;
margin-bottom: 80px;
position: relative;
z-index: 1;
}

.section-title 
{
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
margin-bottom: 20px;
letter-spacing: 2px;
}

.accent 
{
color: #00ff41;
}

.section-subtitle 
{
font-size: 1.2rem;
color: #bdc3c7;
letter-spacing: 2px;
font-weight: 300;
}

.projects-grid 
{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 40px;
position: relative;
z-index: 1;
padding-bottom: 80px;
}

.project-card 
{
background: rgba(52, 73, 94, 0.8);
border-radius: 15px;
overflow: hidden;
backdrop-filter: blur(10px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover 
{
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project-image 
{
height: 200px;
overflow: hidden;
position: relative;
}

.project-image-placeholder 
{
width: 100%;
height: 100%;
background: linear-gradient(135deg, #34495e, #2c3e50);
display: flex;
align-items: center;
justify-content: center;
color: #bdc3c7;
font-weight: 600;
letter-spacing: 1px;
}

.project-content 
{
padding: 30px;
}
.project-title 
{
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 15px;
color: #ffffff;
}

.project-tech 
{
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 20px;
}

.tech-tag 
{
background: #00ff41;
color: #2c3e50;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

.project-description 
{
color: #bdc3c7;
margin-bottom: 20px;
line-height: 1.6;
}

.project-impact 
{
background: rgba(0, 255, 65, 0.1);
padding: 15px;
border-radius: 8px;
margin-bottom: 25px;
border-left: 4px solid #00ff41;
color: #ffffff;
}

.project-links 
{
display: flex;
gap: 15px;
}

.btn 
{
padding: 12px 24px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 1px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-primary 
{
background: #00ff41;
color: #2c3e50;
}

        .btn-primary:hover {
            background: #00cc33;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 255, 65, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background: #ffffff;
            color: #2c3e50;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 12px;
            }

            .projects-hero {
                padding-top: 100px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .project-content {
                padding: 20px;
            }

            .project-links {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .nav-menu {
                gap: 15px;
            }

            .nav-menu a {
                font-size: 11px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
     /* Footer */
        footer {
            background: #1f1f1f;
            color: #f1f1f1;
            text-align: center;
            padding: 2.5rem 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            width: 100%;
        }

        .footer-content {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: #f1f1f1;
            text-decoration: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s ease, color 0.3s ease;
        }

        .social-links a:hover {
            color: #61dafb;
            transform: scale(1.05);
        }

        footer p {
            margin: 0.3rem 0;
            font-size: 0.95rem;
            opacity: 0.85;
        }

        footer em {
            font-style: italic;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }

            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 12px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-title {
                margin-bottom: 20px;
            }
        }