/* Enhanced Navigation Bar */
.navbar {
    border-bottom: 2px solid #e0e0e0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    border: 1px solid transparent;
}

.nav-item:hover {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff;
}

nav a.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Enhanced Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px;
    background-color: #f8f9fa;
}

/* Enhanced Section Borders */
section, .learning, .resume {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: white;
}

/* Section Styling */
section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    margin-top: 2rem;
    color: #2c3e50;
}

.section-title h2, .learning h1, .resume h1 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Profile Section */
.profile-section {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 4rem;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.profile-info .title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.profile-info .subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #34495e;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

.social-link i {
    font-size: 1.2rem;
}

/* Enhanced Card Styles */
.learning-list li, .projects-list li {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.5rem;
}

.learning-list li:last-child, .projects-list li:last-child {
    border-bottom: none;
}

/* Enhanced Contact Information */
.resume ul {
    list-style: none;
    padding: 0;
}

.resume ul p {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

/* Enhanced Resume Download Button */
.resume a {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.resume a:hover {
    background-color: #0056b3;
}

/* Enhanced Learning List */
.learning-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.learning-list li {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Enhanced Projects List */
.projects-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.projects-list li {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Enhanced Skills Section */
.skills {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.skills p {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin: 0 auto;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
}

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

nav {
    margin-bottom: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

.location {
    margin-bottom: 20px;
}

.location p {
    color: #666;
    margin-bottom: 5px;
}

.learning {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
