 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 body {
    font-family: 'Courier New', monospace;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
    overflow-x: hidden;
 }
 .container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    background: #161b22;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
 }
 .sidebar {
    width: 300px;
    background: #0d1117;
    padding: 2rem;
    border-right: 1px solid #30363d;
    position: relative;
    overflow-y: auto;
 }
 .profile-section {
    text-align: center;
    margin-bottom: 2rem;
 }
 .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid #30363d;
    object-fit: cover;
 }
 .main-content {
    flex: 1;
    padding: 2rem;
    background: #161b22;
    overflow-y: auto;
 }
 .keyword {
    color: #ff7b72;
 }
 .type {
    color: #79c0ff;
 }
 .string {
    color: #a5c9ea;
 }
 .comment {
    color: #8b949e;
    font-style: italic;
    word-wrap:break-word;
 }
 .email{
    word-wrap:break-word;
 }
 .EXP-comment{
    margin: 0 0 0 40px;
 }
 .variable {
    color: #ffa657;
 }
 .method {
    color: #d2a8ff;
 }
 .section {
    margin-bottom: 2rem;
 }
 .section-title {
    color: #79c0ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
 }
 .code-block {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
 }
 .code-block:hover {
    border-color: #58a6ff;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.1);
 }
 .line-numbers {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: #0d1117;
    border-right: 1px solid #30363d;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: #6e7681;
 }
 .line-numbers span {
    height: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .code-content {
    margin-left: 30px;
 }
 .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
 }
 .skill-tag {
    background: #21262d;
    border: 1px solid #30363d;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
 }
 .skill-tag:hover {
    border-color: #58a6ff;
    background: #1c2128;
    transform: translateY(-2px);
 }
 .experience-item {
    border-left: 3px solid #58a6ff;
    padding-left: 1rem;
    margin: 1rem 0;
    position: relative;
 }
 .experience-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #58a6ff;
 }
 .contact-info {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
 }
 .contact-item {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
 }
 .contact-item:hover {
    background: #30363d;
 }
 .contact-item a {
    color: #58a6ff;
    text-decoration: none;
 }
 .contact-item a:hover {
    text-decoration: underline;
 }
         .social-links {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: #21262d;
            border: 1px solid #30363d;
            border-radius: 6px;
            color: #c9d1d9;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link:hover {
            background: #30363d;
            border-color: #58a6ff;
            transform: translateX(5px);
            color: #58a6ff;
        }

        .social-link:hover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #58a6ff;
            animation: slideIn 0.3s ease;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .social-link:hover svg {
            transform: scale(1.1);
        }

        .social-link span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        @keyframes slideIn {
            from { width: 0; }
            to { width: 3px; }
        }
 .typing-animation {
    border-right: 2px solid #58a6ff;
    animation: blink 1s infinite;
 }
 @keyframes blink {
    0%,
    50%{
        border-color: transparent;
    }
    51%,
    100%{
        border-color: #58a6ff;
    }
 }
 .hero-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0d1117, #21262d);
    border-radius: 8px;
    border: 1px solid #30363d;
 }
 .terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #30363d;
 }
 .terminal-buttons {
    display: flex;
    gap: 0.5rem;
 }
 .terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
 }
 .close {
    background: #ff5f57;
 }
 .minimize {
    background: #ffbd2e;
 }
 .maximize {
    background: #28ca42;
 }
 .responsive-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 2rem;
    margin: 2rem 0;
 }
 @media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;

    }
     .responsive-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
 }
    .sidebar {
        width: 100%;
        order: 2;
    }
    .main-content {
        order: 1;
    }
 }