:root {
    --bg-base: #030305;
    --color-primary: #8B5CF6; 
    --color-secondary: #EC4899; 
    --color-tertiary: #06B6D4; 
    --color-accent: #F59E0B; 
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --text-dark: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.12);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-base);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo, .stat-number, .intro-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    filter: saturate(1.4) contrast(1.1);
}
.modern-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.modern-btn:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}
.modern-btn.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    font-weight: 600;
}
.modern-btn.primary:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}
.audio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 20, 0.75);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    padding: 10px 18px 10px 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    animation: slideInAudio 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes slideInAudio {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.audio-player:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(139, 92, 246, 0.15);
}
.audio-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}
.audio-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}
.audio-track-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.audio-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.15);
    outline: none;
    cursor: pointer;
}
.audio-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.6);
    transition: transform 0.2s ease;
}
.audio-volume::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}
.audio-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3,3,5,0.8) 0%, rgba(3,3,5,0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--text-main);
}
.main-content {
    opacity: 1;
    pointer-events: auto;
}
section {
    padding: 180px 6% 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 60px;
}
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
}
.modern-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modern-card:hover {
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.hero {
    text-align: left;
    align-items: flex-start;
}
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    max-width: 640px;
    z-index: 2;
}
.hero-image-wrap {
    position: relative;
    flex-shrink: 0;
    width: clamp(220px, 28vw, 380px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, rgba(236,72,153,0.2) 40%, transparent 70%);
    filter: blur(30px);
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: 0;
}
@keyframes pulseGlow {
    from { opacity: 0.6; transform: scale(0.95); }
    to   { opacity: 1;   transform: scale(1.05); }
}
.hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 1/1.05;
    border-radius: 32px;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(139,92,246,0.3);
    box-shadow:
        0 25px 70px rgba(0,0,0,0.7),
        0 0 50px rgba(139,92,246,0.2),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    filter: brightness(1) saturate(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}
.hero-photo:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(139,92,246,0.25);
}
@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .hero-image-wrap {
        width: clamp(160px, 50vw, 260px);
    }
    .hero .description {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
}
.hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-tertiary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}
.hero .title {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -4px;
    background: linear-gradient(to right, #8B5CF6, #EC4899, #F59E0B, #10B981, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: gradientFlow 10s linear infinite;
    text-shadow: 0 0 40px rgba(236, 72, 153, 0.2);
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero .description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    z-index: 1;
}
.hidden-project {
    display: none !important;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}
.about-card .card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.about-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.skills-list {
    list-style: none;
}
.skills-list li {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}
.skills-list strong {
    color: var(--text-main);
    display: inline-block;
    width: 100px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.project-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    position: relative;
    overflow: hidden;
    group: hover;
}
.project-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.project-url {
    color: var(--color-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}
.project-link {
    align-self: flex-start;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.project-link svg {
    width: 20px;
    height: 20px;
}
.project-card:hover .project-link {
    background: var(--text-main);
    color: var(--bg-base);
    transform: scale(1.1) rotate(45deg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.stat-card {
    text-align: left;
    padding: 40px;
}
.stat-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.social-panel {
    padding: 60px;
}
.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    transition: all 0.3s ease;
    animation: floatIcon 4s ease-in-out infinite;
    text-decoration: none;
}
.social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}
.social-icon.github { background: #111; color: #fff; border-color: #111; }
.social-icon.linkedin { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; border-color: transparent; }
.social-icon.twitter { background: #000; color: #fff; border-color: #000; }
.social-icon.facebook { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-icon.telegram { background: #26A5E4; color: #fff; border-color: #26A5E4; }
.social-icon.whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.social-icon.email { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.social-icon:hover {
    transform: scale(1.15) translateY(-5px);
    filter: brightness(1.2);
}
.social-icon.github:hover { box-shadow: 0 10px 20px rgba(17, 17, 17, 0.5); }
.social-icon.linkedin:hover { box-shadow: 0 10px 20px rgba(10, 102, 194, 0.5); }
.social-icon.instagram:hover { box-shadow: 0 10px 20px rgba(220, 39, 67, 0.5); }
.social-icon.twitter:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); }
.social-icon.facebook:hover { box-shadow: 0 10px 20px rgba(24, 119, 242, 0.5); }
.social-icon.telegram:hover { box-shadow: 0 10px 20px rgba(38, 165, 228, 0.5); }
.social-icon.whatsapp:hover { box-shadow: 0 10px 20px rgba(37, 211, 102, 0.5); }
.social-icon.email:hover { box-shadow: 0 10px 20px rgba(139, 92, 246, 0.5); }
.social-icon:hover svg {
    transform: scale(1.1);
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.social-icon:nth-child(1) { animation-delay: 0.0s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.4s; }
.social-icon:nth-child(4) { animation-delay: 0.6s; }
.social-icon:nth-child(5) { animation-delay: 0.8s; }
.social-icon:nth-child(6) { animation-delay: 1.0s; }
.social-icon:nth-child(7) { animation-delay: 1.2s; }
.social-icon:nth-child(8) { animation-delay: 1.4s; }
.footer {
    padding: 60px 6%;
    margin-top: 100px;
    border-top: 1px solid var(--card-border);
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.quick-links {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.quick-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.quick-links a:hover {
    color: var(--text-main);
}
.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--card-border);
    margin-bottom: 40px;
}
.footer-made {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 8px;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.edu-section {
    width: 100%;
    margin-top: 40px;
}
.edu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-left: 10px;
}
.edu-icon {
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}
.edu-header-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.edu-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.edu-climber-wrap {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}
.edu-ladder {
    position: relative;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.ladder-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--card-border), rgba(255,255,255,0.02));
    border-radius: 3px;
}
.rail-left { left: 0; }
.rail-right { right: 0; }
.ladder-rung {
    width: 100%;
    height: 4px;
    background: var(--card-border);
    border-radius: 2px;
    z-index: 1;
}
.edu-climber {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: climb-progress 12s linear infinite, climb-sway 1.6s ease-in-out infinite;
}
.arm-left { 
    animation: arm-left-climb 1.6s ease-in-out infinite; 
    transform-origin: 15px 17px; 
}
.arm-right { 
    animation: arm-right-climb 1.6s ease-in-out infinite; 
    transform-origin: 25px 24px; 
}
.leg-left { 
    animation: leg-left-climb 1.6s ease-in-out infinite; 
    transform-origin: 15px 30px; 
}
.leg-right { 
    animation: leg-right-climb 1.6s ease-in-out infinite; 
    transform-origin: 25px 36px; 
}
@keyframes climb-progress {
    0% { bottom: -60px; }
    100% { bottom: 100%; }
}
@keyframes climb-sway {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-52%) rotate(-3deg); }
    75% { transform: translateX(-48%) rotate(3deg); }
}
@keyframes arm-left-climb {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-60deg) translateY(-5px); }
}
@keyframes arm-right-climb {
    0%, 100% { transform: rotate(60deg) translateY(-5px); }
    50% { transform: rotate(0deg); }
}
@keyframes leg-left-climb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px) scaleY(0.7); }
}
@keyframes leg-right-climb {
    0%, 100% { transform: translateY(-10px) scaleY(0.7); }
    50% { transform: translateY(0); }
}
.edu-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.edu-card {
    position: relative;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.edu-card-dot {
    position: absolute;
    left: -12px;
    width: 24px;
    height: 24px;
    background: var(--bg-base);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}
.edu-card-inner {
    flex: 1;
}
.edu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.edu-degree {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.edu-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
}
.edu-status.expected {
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.edu-status.completed {
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-tertiary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.edu-institution {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}
.edu-detail {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.edu-score {
    color: var(--color-secondary);
    font-weight: 700;
}
@media (max-width: 900px) {
    .edu-body {
        grid-template-columns: 1fr;
    }
    .edu-climber-wrap {
        height: 300px;
    }
}
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}
.skill-bar {
    height: 8px;
    background: var(--card-border);
    border-radius: 4px;
    overflow: hidden;
}
.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-tertiary));
    border-radius: 4px;
}
.skills-marquee-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    padding: 1rem 0;
    width: 100%;
}
.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}
.marquee-fade.fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(20, 20, 25, 1), transparent);
}
.marquee-fade.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(20, 20, 25, 1), transparent);
}
.marquee-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 1.5rem;
}
.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.5rem;
    min-width: max-content;
    animation: scroll 40s linear infinite;
    animation-direction: var(--animation-direction, normal);
}
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}
.marquee-reverse .marquee-content {
    animation-direction: reverse;
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1.5rem));
    }
}
.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}
.tech-tag:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5); 
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); 
}
.tech-tag i {
    font-size: 1.8rem;
    transition: color 0.3s ease;
}
.tech-tag:hover i {
    color: #ef4444;
}
#skills {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}
#skills .section-header {
    margin-bottom: 50px;
}
.skills-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-row {
    display: flex;
    white-space: nowrap;
    gap: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}
.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
}
.marquee-reverse .marquee-content {
    animation-direction: reverse;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tech-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}
.tech-tag:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tech-tag i {
    font-size: 1.4rem;
}
@media (max-width: 900px) {
    .about-grid, .resume-container, .skills-grid {
        grid-template-columns: 1fr;
    }
    .hero .title {
        font-size: clamp(3.5rem, 10vw, 5rem);
    }
    .nav-links {
        display: none;
    }
    .social-panel {
        padding: 40px 30px;
    }
    section {
        padding: 120px 6% 60px;
    }
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}
.contact-form-card {
    padding: 35px !important;
}
.form-group {
    margin-bottom: 16px;
}
.modern-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.modern-input:focus {
    outline: none;
    background: rgba(139, 92, 246, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}
.modern-input:-webkit-autofill,
.modern-input:-webkit-autofill:hover, 
.modern-input:-webkit-autofill:focus, 
.modern-input:-webkit-autofill:active,
textarea.modern-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #0a0a0f inset !important;
    -webkit-text-fill-color: var(--text-main) !important;
    transition: background-color 5000s ease-in-out 0s;
    border-color: rgba(255, 255, 255, 0.1);
    caret-color: white;
}
#message {
    min-height: 100px;
    resize: vertical;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
}
.contact-link:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .about-grid, .resume-container {
        grid-template-columns: 1fr;
    }
    .hero .title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    .nav-links {
        display: none;
    }
}
@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr !important;
    }
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
