        :root {
            --primary: #1a2e1a;       /* Dark green */
            --primary-light: #2a4a2a;  /* Medium dark green */
            --secondary: #5a8f5a;     /* Medium green */
            --accent: #7cb97c;         /* Light green */
            --light: #f5f9f5;         /* Very light green/white */
            --dark: #0d1a0d;           /* Very dark green */
            --text: #e6f0e6;          /* Light text for dark bg */
            --text-dark: #0d1a0d;      /* Dark text for light bg */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light);
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        p { margin-bottom: 1rem; }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header */
        header {
            background-color: var(--primary);
            color: var(--text);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo{
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            transition: color 0.3s ease;
        }

        .logo:hover{
                color: var(--text);
                cursor: pointer;
        }

        a{
                text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 46, 26, 0.9), rgba(26, 46, 26, 0.8)), 
                        url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: var(--text);
            text-align: center;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero p {
            font-size: clamp(1rem, 3vw, 1.25rem);
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background-color: transparent;
            border-color: var(--secondary);
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border-color: var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* About */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text {
            flex: 1 1 60%;
        }
        
        .profile-img {
            flex: 1 1 30%;
            text-align: center;
        }
        
        .profile-img img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Skills */
        .skills {
            background-color: var(--primary-light);
            color: var(--text);
        }
        
        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .skill {
            background-color: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            flex: 1 1 200px;
            transition: transform 0.3s ease;
        }
        
        .skill:hover {
            transform: translateY(-10px);
            background-color: rgba(255,255,255,0.2);
        }
        
        .skill i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
       /* Projects */
.projects {
    background-color: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.project-content p {
    margin-bottom: 1.25rem;
    color: var(--dark);
    flex: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background-color: var(--primary-light);
    color: var(--text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.project-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-links a:first-child {
    background-color: var(--primary);
    color: white;
}

.project-links a:last-child {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.project-links a:hover {
    transform: translateY(-2px);
}

.project-links a:first-child:hover {
    background-color: var(--primary-light);
}

.project-links a:last-child:hover {
    background-color: rgba(90, 143, 90, 0.1);
}

/* Coming Soon */
.coming-soon {
    background-color: var(--primary-light);
    color: var(--text);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    grid-column: 1 / -1;
}

.coming-soon h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.coming-soon a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
        
        /* Contact */
        .contact {
            background-color: var(--primary);
            color: var(--text);
        }
        
        .contact .section-title {
            color: var(--accent);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255,255,255,0.1);
            color: var(--text);
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--text);
            text-align: center;
            padding: 3rem 0;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .social-links a {
            color: var(--text);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--accent);
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .profile-img {
                order: -1;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .skill {
                flex: 1 1 100%;
            }
                
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .project-links a {
        justify-content: center;
    }
}
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
