/* Add buffer space for sections when navigated by anchor links */
#home, #experience, #education, #skills, #achievements {
    scroll-margin-top: 185px; /* Adjust this value to the height of your navbar */
}
#projects, #contact, #testimonials {
    scroll-margin-top: 100px; /* Adjust this value to the height of your navbar */
}

/* Card Styling (applies to all Skills, Experience and Education cards) */
.skills-card,
.experience-card,
.education-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

/* Skill Tags */
.skills {
    margin-top: 20px;
    margin-bottom: 20px;
}

.skill-tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
    margin-top: 6px;
    font-size: 12px;
    border: 1px solid #d0d0d0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
