 *
{
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;
        }

        /* Skills Section */
        .skills {
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.skills-header {
    text-align: center;
    margin-bottom: 60px;
}

.skills-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.skills-header p {
    font-size: 1.1rem;
    color: #bdc3c7;
    max-width: 600px;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(52, 73, 94, 0.6);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.skill-category h3 {
    color: #00ff41;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.skill-category li:last-child {
    border-bottom: none;
}

.skill-category li::before {
    content: "▹";
    color: #00ff41;
    margin-right: 10px;
    font-size: 0.8rem;
}

.skills-note {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #bdc3c7;
    font-style: italic;
}

/* Animation for subtle interactivity */
.skill-category {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills {
        padding: 80px 0;
    }
    
    .skills-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) 
        {
            .container {
                padding: 0 20px;
            }

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