body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #000;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    padding: 40px;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 30%, #4a4a4a 70%, #e0e0e0 100%);
    overflow-y: auto;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.profile-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.profile-section p {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    margin-top: 20px;
    text-align: center;
}

.social-links a {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin: 5px;
    transition: all 0.3s;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    margin-bottom: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

main {
    margin-left: 380px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.6s ease-in;
    width: 100%;
    max-width: 800px;
}

.article img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article h2 {
    color: #333;
    margin-bottom: 15px;
}

.article-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tech-table th, .tech-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tech-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.tech-table img {
    width: 40px;
    height: 40px;
}


.map {
    width: 100%;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .profile-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-section h1 {
        font-size: 20px;
    }
    
    .profile-section p {
        font-size: 14px;
    }
    
    .social-links a {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    nav ul li a {
        font-size: 14px;
        padding: 8px;
    }
    
    main {
        margin-left: 0;
        padding: 20px;
    }
    
    .article {
        padding: 20px;
        max-width: 100%;
    }
    
    .article h2 {
        font-size: 20px;
    }
    
    .article h3 {
        font-size: 18px;
    }
    
    .article p {
        font-size: 14px;
    }
    
    
    .tech-table {
        font-size: 12px;
    }
    
    .tech-table th,
    .tech-table td {
        padding: 8px;
    }
    
    .tech-table img {
        width: 30px;
        height: 30px;
    }
    
    .project-image {
        width: 40px;
        height: 40px;
    }
    
   
    #map {
        height: 300px !important;
    }
    
    
    .social-container {
        gap: 30px;
    }
    
    .social-icon {
        width: 100px;
        height: 100px;
    }
    
    .social-icon i {
        font-size: 50px;
    }
}


@media screen and (max-width: 480px) {
    .sidebar {
        padding: 15px;
    }
    
    .profile-photo {
        width: 60px;
        height: 60px;
    }
    
    .profile-section h1 {
        font-size: 18px;
    }
    
    main {
        padding: 10px;
    }
    
    .article {
        padding: 15px;
    }
    
    .article h2 {
        font-size: 18px;
    }
    
    .article h3 {
        font-size: 16px;
    }
    
    .article p {
        font-size: 13px;
    }
    
    
    .tech-table {
        font-size: 11px;
        display: block;
        overflow-x: auto;
    }
    
    .tech-table th,
    .tech-table td {
        padding: 5px;
    }
    
   
    .social-icon {
        width: 80px;
        height: 80px;
    }
    
    .social-icon i {
        font-size: 40px;
    }
    
    .social-container {
        gap: 20px;
    }
}
