/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-navy: #f5f0f8;
    --light-navy: #faf8fc;
    --lightest-navy: #fefcff;
    --navy-shadow: rgba(155, 127, 184, 0.2);
    --dark-slate: #6b5a7a;
    --slate: #8b7a9b;
    --light-slate: #a896b5;
    --lightest-slate: #5a4a6a;
    --white: #ffffff;
    --green: #b8869b;
    --green-tint: rgba(184, 134, 155, 0.15);
    --pink: #d4a5b8;
    --blue: #c4a8d4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--lightest-slate);
    background-color: var(--dark-navy);
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--lightest-slate);
    font-weight: 600;
    line-height: 1.1;
}

p {
    color: var(--slate);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(155, 127, 184, 0.2);
    border-bottom: 1px solid rgba(184, 134, 155, 0.2);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 68px;
    width: auto;
    transition: opacity 0.3s ease;
    max-height: 100%;
    object-fit: contain;
}

.nav-logo a:hover .logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--lightest-slate);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 50px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    gap: 3rem;
}

.hero-content {
    animation: fadeInUp 1s ease;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-greeting {
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--lightest-slate);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 20px;
    border: 1px solid var(--green);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--green);
}

.btn-primary:hover {
    background: var(--green-tint);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--green);
    color: var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--green);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--green);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green-tint), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image:hover .profile-overlay {
    opacity: 1;
}

.profile-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(184, 134, 155, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.section-number {
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--lightest-slate);
    white-space: nowrap;
}

.section-line {
    height: 1px;
    background: var(--lightest-navy);
    flex: 1;
    margin-left: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    color: var(--lightest-slate);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--lightest-navy);
    color: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--green-tint);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--green);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.05);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--green-tint), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Experience Section */
.experience {
    background: var(--light-navy);
}

.experience-content {
    margin-top: 2rem;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(184, 134, 155, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(184, 134, 155, 0.2);
    border-color: rgba(184, 134, 155, 0.4);
}

.experience-card:hover::before {
    transform: scaleY(1);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: var(--lightest-slate);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.company-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-tint) 0%, rgba(184, 134, 155, 0.2) 100%);
    color: var(--green);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--green);
    width: fit-content;
}

.period {
    color: var(--slate);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.experience-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.experience-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--slate);
    line-height: 1.6;
}

.experience-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 0.9rem;
}

.experience-card li:last-child {
    margin-bottom: 0;
}

/* Work Section */
.projects {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--light-navy);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project:nth-child(even) {
    direction: rtl;
}

.project:nth-child(even) .project-content {
    direction: ltr;
}

.project-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-image:hover img {
    transform: scale(1.1);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--green);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-content h3 {
    color: var(--lightest-slate);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.project-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: var(--lightest-navy);
    color: var(--green);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.work-content {
    margin-top: 2rem;
}

.work-year {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(184, 134, 155, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-year:hover {
    border-color: rgba(184, 134, 155, 0.4);
    box-shadow: 0 4px 12px rgba(184, 134, 155, 0.1);
}

.work-year-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.work-year-header:hover {
    background: rgba(184, 134, 155, 0.05);
}

.work-year-header h3 {
    color: var(--green);
    font-size: 1.5rem;
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
}

.work-year-icon {
    color: var(--green);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.work-year.active .work-year-icon {
    transform: rotate(180deg);
}

.work-year-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.work-year.active .work-year-content {
    max-height: 5000px;
    padding: 0 2rem 2rem 2rem;
}

.work-category {
    margin-bottom: 2rem;
}

.work-category:last-child {
    margin-bottom: 0;
}

.work-category h4 {
    color: var(--lightest-slate);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--lightest-navy);
}

.work-category ul {
    list-style: none;
    padding-left: 0;
}

.work-category li {
    color: var(--slate);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.work-category li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--light-navy);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-text h3 {
    color: var(--lightest-slate);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: justify;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(184, 134, 155, 0.2);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    color: var(--green);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: var(--lightest-slate);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    padding: 2rem 0;
    border-top: 1px solid var(--lightest-navy);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--slate);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--lightest-navy);
    color: var(--slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--green);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px var(--navy-shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .profile-container {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
    }

    .tab-btn {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .tab-btn.active {
        border-left: none;
        border-bottom-color: var(--green);
    }

    .project {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project:nth-child(even) {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .profile-container {
        width: 150px;
        height: 150px;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }
}

/* Qualifications and Achievements Styles */
.qualifications {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--lightest-navy) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--lightest-navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.qualifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--pink));
}

.qualifications h3 {
    color: var(--lightest-slate);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.qualifications h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.qualification-category {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(184, 134, 155, 0.1);
    transition: all 0.3s ease;
}

.qualification-category:hover {
    background: rgba(184, 134, 155, 0.05);
    border-color: rgba(184, 134, 155, 0.2);
    transform: translateY(-2px);
}

.qualification-category h4 {
    color: var(--green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qualification-category h4::before {
    content: '🏆';
    font-size: 1.2rem;
}

.qualification-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.qualification-tag {
    background: linear-gradient(135deg, var(--green-tint) 0%, rgba(184, 134, 155, 0.2) 100%);
    color: var(--green);
    padding: 0.5rem 0.9rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(184, 134, 155, 0.2);
    white-space: nowrap;
}

.qualification-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.qualification-tag:hover::before {
    left: 100%;
}

.qualification-tag:hover {
    background: linear-gradient(135deg, var(--green) 0%, var(--pink) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 134, 155, 0.4);
    border-color: var(--blue);
}

.achievements {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--lightest-navy) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--lightest-navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue), var(--green));
}

.achievements h3 {
    color: var(--lightest-slate);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.achievements h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
}

.achievement-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.achievement-list li {
    color: var(--slate);
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    position: relative;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(245, 125, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.achievement-list li:hover {
    background: rgba(245, 125, 255, 0.05);
    border-color: rgba(245, 125, 255, 0.2);
    transform: translateX(5px);
}

.achievement-list li::before {
    content: "✨";
    color: var(--pink);
    font-size: 1.2rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle 2s ease-in-out infinite;
}

.achievement-list li {
    padding-left: 3rem;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

@media (max-width: 768px) {
    .qualifications, .achievements {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .qualification-list {
        justify-content: center;
    }
    
    .qualification-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .qualification-category {
        padding: 1rem;
    }
}