:root {
    --motorola-blue: #0037B4;
    --motorola-black: #1a1a2e;
    --motorola-white: #FFFFFF;
    --text-dark: #1c1e26;
    --text-medium: #4a4d5e;
    --text-light: #6e7185;
    --surface: rgba(255, 255, 255, 0.55);
    --surface-light: rgba(255, 255, 255, 0.4);
    --surface-border: rgba(0, 0, 0, 0.06);
    --surface-hover: rgba(0, 0, 0, 0.08);
    --overlay: rgba(240, 242, 248, 0.6);
    --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #edf0f5;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.4rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    z-index: 100;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-sans);
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--motorola-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--motorola-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 101;
}

.lang-switcher button {
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.45rem 0.6rem;
    cursor: pointer;
    margin-left: 0.5rem;
    color: var(--text-medium);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-switcher button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 55, 180, 0.2);
    box-shadow: 0 4px 15px rgba(0, 55, 180, 0.1);
}

/* Main Content */
main {
    padding: 6rem 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.hero:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.hero h1 {
    animation: fadeSlideUp 1s ease-out 0.3s both;
    color: var(--text-dark);
}

.hero p {
    animation: fadeSlideUp 1s ease-out 0.6s both;
    color: var(--text-medium);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--motorola-blue);
    animation: profileGlow 4s ease-in-out infinite;
    transition: transform 0.5s ease,
                border-color 0.3s ease,
                box-shadow 0.5s ease;
}

.profile-pic:hover {
    transform: scale(1.08);
    border-color: #3a7fff;
    box-shadow: 0 0 25px rgba(0, 55, 180, 0.2), 0 0 50px rgba(0, 55, 180, 0.06);
}

section {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 55, 180, 0.06), 0 5px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 55, 180, 0.12);
}

/* Mobile Menu */
.menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 102;
    cursor: pointer;
}

.menu-btn__burger {
    width: 30px;
    height: 3px;
    background: var(--text-medium);
    border-radius: 5px;
    transition: all .5s ease-in-out;
    position: relative;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-medium);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-8px);
}

.menu-btn__burger::after {
    transform: translateY(8px);
}

/* Animation */
.menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

@media (max-width: 768px) {
    .navbar {
        min-height: 3.5rem;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(245, 247, 252, 0.95);
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s ease-in-out;
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    .nav-menu.active {
        display: flex;
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu a {
        color: var(--text-dark);
        font-size: 1.3rem;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .lang-switcher {
        top: 0.7rem;
        right: 0.7rem;
    }

    .menu-btn {
        top: 1.1rem;
        left: 1.2rem;
    }
}

/* Video Background */
.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: -1;
    overflow: hidden;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 240, 245, 0.6);
    pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--motorola-blue), rgba(0, 163, 255, 0.6), var(--motorola-blue));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    z-index: 1000;
    transition: width 0.1s ease;
    box-shadow: 0 0 6px rgba(0, 55, 180, 0.2);
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: -2;
    opacity: 0.3;
}

/* Education Section — Timeline Layout */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--motorola-blue), rgba(0, 55, 180, 0.1));
    border-radius: 2px;
}

.education-card {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.education-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 55, 180, 0.07);
    border-color: rgba(0, 55, 180, 0.12);
}

.edu-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--motorola-blue), #3a7fff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 55, 180, 0.15);
    position: relative;
    z-index: 1;
}

.edu-content {
    flex: 1;
    min-width: 0;
}

.degree {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--motorola-blue);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.institution {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.institution i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.year {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.year i {
    font-size: 0.75rem;
}

.achievement {
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(0, 55, 180, 0.04), rgba(0, 55, 180, 0.02));
    border-left: 3px solid var(--motorola-blue);
    border-radius: 0 8px 8px 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement i {
    color: #d4a017;
    font-size: 0.9rem;
}

/* Courses Divider */
.courses-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 0.5rem;
}

.courses-divider h3 {
    white-space: nowrap;
    font-family: var(--font-sans);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.courses-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.course-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.course-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 55, 180, 0.06);
    border-color: rgba(0, 55, 180, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.course-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(0, 55, 180, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--motorola-blue);
    font-size: 0.9rem;
}

.course-details {
    flex: 1;
    min-width: 0;
}

.course-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--motorola-blue);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.course-org {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-medium);
}

.course-date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .education-timeline {
        padding-left: 1.25rem;
    }

    .education-timeline::before {
        left: 0.5rem;
    }

    .education-card {
        padding: 1.25rem;
    }

    .edu-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Language Section Styles */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.language-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.language-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 55, 180, 0.06);
    border-color: rgba(0, 55, 180, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.language {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.level {
    font-family: var(--font-sans);
    color: var(--motorola-blue);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* ===== KEYFRAME ANIMATIONS ===== */

/* Profile image glow pulse */
@keyframes profileGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 55, 180, 0.1), 0 0 16px rgba(0, 55, 180, 0.05);
    }
    50% {
        box-shadow: 0 0 14px rgba(0, 55, 180, 0.16), 0 0 28px rgba(0, 55, 180, 0.06);
    }
}

/* Hero text slide up */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated gradient for progress bar */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle shimmer effect for cards on hover */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== ENHANCED ELEMENT STYLES ===== */

/* Achievement list items */
#achievementsList li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, padding-left 0.3s ease;
    line-height: 1.6;
}

#achievementsList li:last-child {
    border-bottom: none;
}

#achievementsList li:hover {
    transform: translateX(6px);
    padding-left: 0.5rem;
}

/* Education card hover handled in education-card above */

/* Contact link styling */
.contact-link {
    font-family: var(--font-sans);
    color: var(--motorola-blue);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-link:hover {
    color: #3a7fff;
    text-shadow: 0 0 8px rgba(0, 55, 180, 0.1);
}

/* Nav link glow on hover */
.nav-menu a:hover {
    text-shadow: 0 0 6px rgba(0, 55, 180, 0.08);
}

/* Active lang button enhanced */
.lang-switcher button.active {
    background: var(--motorola-blue);
    color: var(--motorola-white);
    border-color: var(--motorola-blue);
    box-shadow: 0 4px 15px rgba(0, 55, 180, 0.2);
}

/* ===== MAGIC PARTICLE EFFECTS ===== */

/* Floating light orbs */
.magic-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.magic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    animation: orbFloat linear infinite;
}

.magic-orb:nth-child(1) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 55, 180, 0.05), transparent 70%);
    left: 10%;
    animation-duration: 28s;
    animation-delay: 0s;
}

.magic-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.04), transparent 70%);
    left: 60%;
    animation-duration: 34s;
    animation-delay: 5s;
}

.magic-orb:nth-child(3) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 55, 180, 0.04), transparent 70%);
    left: 35%;
    animation-duration: 26s;
    animation-delay: 10s;
}

.magic-orb:nth-child(4) {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(58, 127, 255, 0.04), transparent 70%);
    left: 80%;
    animation-duration: 30s;
    animation-delay: 15s;
}

.magic-orb:nth-child(5) {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 55, 180, 0.05), transparent 70%);
    left: 50%;
    animation-duration: 24s;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0% {
        transform: translateY(100vh) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    85% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-15vh) scale(1.1);
        opacity: 0;
    }
}

/* Mouse glow follower */
.mouse-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 55, 180, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.4s ease-out, top 0.4s ease-out, opacity 0.6s ease;
    opacity: 0;
    will-change: left, top;
}

.mouse-glow.visible {
    opacity: 1;
}

/* Sparkle dots */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 55, 180, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Section card shimmer border effect on hover */
section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 13px;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(0, 55, 180, 0.06) 50%,
        transparent 60%
    );
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

section {
    position: relative;
}

section:hover::before {
    opacity: 1;
    animation: borderShimmer 3s ease infinite;
}

@keyframes borderShimmer {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* Subtle breathe effect for hero section */
.hero {
    animation: heroBreathe 6s ease-in-out infinite;
}

@keyframes heroBreathe {
    0%, 100% {
        filter: drop-shadow(0 0 0px transparent);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 55, 180, 0.04));
    }
}

/* Floating particles behind profile pic */
.profile-pic-wrapper {
    position: relative;
    display: inline-block;
}

.profile-pic-wrapper::before,
.profile-pic-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: ringPulse 4s ease-in-out infinite;
}

.profile-pic-wrapper::before {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 55, 180, 0.1);
    animation-delay: 0s;
}

.profile-pic-wrapper::after {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 55, 180, 0.05);
    animation-delay: 1.5s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
}

/* Subtle glow on section headings */
section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--motorola-blue), rgba(0, 163, 255, 0.4), transparent);
    transition: width 0.6s ease;
}

section:hover h2::after {
    width: 100%;
}

/* Twinkling star effect for background */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

/* Course item subtle glow — positioned on details wrapper */
.course-item {
    position: relative;
    overflow: hidden;
}

/* Language item glow */
.language-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 55, 180, 0.03), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-item {
    position: relative;
    overflow: hidden;
}

.language-item:hover::after {
    opacity: 1;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .magic-orb,
    .sparkle,
    .mouse-glow,
    .hero {
        animation: none !important;
    }
    section::before {
        display: none;
    }
    .profile-pic-wrapper::before,
    .profile-pic-wrapper::after {
        animation: none !important;
    }
}
