        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }
        header {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        nav {
            text-align: center;
            margin-top: 20px;
            position: sticky;
            top: 0;
            background-color: #f4f4f9;
            padding: 10px 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        nav a {
            margin: 0 15px;
            color: #333;
            text-decoration: none;
            font-weight: bold;
        }
        section {
            padding: 4rem 2rem;
            text-align: center;
        }
        section h2 {
            margin-bottom: 20px;
            color: #333;
        }
        section p {
            color: #666;
            font-size: 1.1rem;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem 0;
            margin-top: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-top: 2rem;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.project-card h3 {
    margin-top: 0;
    color: #007BFF;
}

.project-card p {
    color: #555;
    font-size: 1rem;
}

.project-card .button {
    margin-top: 10px;
}

.social-links {
    margin-top: 10px;
    font-size: 1rem;
}

.social-links a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 5px;
}

.social-links a:hover {
    text-decoration: underline;
}

.button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 15px;
    display: inline-block;
}
.button:hover {
    background-color: #0056b3;
}

/* Experience & Education Sections */

#experience, #education {
    text-align: center;
}

.experience-item, .education-item {
    background-color: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.experience-item h3, .education-item h3 {
    margin-top: 0;
    color: #007BFF;
}

.experience-item ul {
    margin-top: 10px;
    padding-left: 20px;
}

.experience-date {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}
/* Coursework Section */

.coursework {
    margin-top: 20px;
}

.coursework h4 {
    margin-bottom: 15px;
    color: #007BFF;
}

.course-item {
    margin-bottom: 10px;
}

.course-toggle {
    width: 100%;
    background-color: #e9e9e9;
    border: none;
    padding: 12px;
    text-align: left;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.course-toggle:hover {
    background-color: #d6d6d6;
}

.course-description {
    display: none;
    font-size: 0.95rem;
    background-color: #fff;
    padding: 10px;
    border-left: 3px solid #007BFF;
    margin-top: 5px;
    border-radius: 4px;
    color: #444;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skills Section */

#skills {
    background-color: #f9f9fc;
    padding: 4rem 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.2s ease;
}

/*.skill-category:hover {
    transform: translateY(-5px);
} */


.skill-category h3 {
    color: #007BFF;
    margin-bottom: 10px;
}

.skill-category ul {
    padding-left: 20px;
}

.skill-category ul li {
    margin-bottom: 6px;
    color: #444;
}
.hover-lift:hover {
    transform: translateY(-5px);
} 
/* Reusable hover-lift animation 
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}*/


