﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --bg-dark: #000000;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #ff6b35;
}

html {
    scroll-behavior: smooth;
    cursor: none;
}

body {
    font-family: 'Space Mono', monospace;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    cursor: none;
}

* {
    cursor: none !important;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 99999;
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
    left: 0;
    top: 0;
    will-change: transform, filter;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: filter 0.08s ease-out;
    contain: layout style paint;
}

.cursor-glow.active {
    box-shadow: 0 0 14px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 107, 53, 0.4), 0 3px 8px rgba(0, 0, 0, 0.5);
}

.cursor-glow.clicking {
    animation: cursor-click 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cursor-glow svg {
    width: 100%;
    height: 100%;
    filter: none;
    box-shadow: inset 0 0 2px rgba(255, 107, 53, 0.4);
}

@keyframes cursor-click {
    0% {
        box-shadow: 0 0 16px rgba(255, 107, 53, 0.9), 0 0 28px rgba(255, 107, 53, 0.5), 0 4px 10px rgba(0, 0, 0, 0.6);
        transform: scale(1.2) translate3d(-50%, -50%, 0);
    }
    50% {
        transform: scale(0.9) translate3d(-50%, -50%, 0);
    }
    100% {
        box-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4);
        transform: scale(1) translate3d(-50%, -50%, 0);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 1rem 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(90deg, rgba(60, 60, 60, 0.6), rgba(100, 100, 100, 0.8), rgba(60, 60, 60, 0.6));
    border-radius: 999px;
    width: 90%;
    max-width: 1400px;
}

.nav-content {
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Haverbrooke', 'Anton', sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 500;
    cursor: none;
    white-space: nowrap;
    will-change: color, text-shadow;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
    flex-shrink: 0;
    color: var(--text-primary);
    will-change: transform, background, border-color, box-shadow;
    min-width: 44px;
    min-height: 44px;
    contain: layout style paint;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    color: var(--primary-color);
}

.social-icon i {
    width: 22px;
    height: 22px;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: none;
    padding: 0;
    gap: 5px;
    z-index: 1001;
}

.menu-line {
    width: 25px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* ===== GLASS EFFECT ===== */
.glass {
    background: rgba(20, 20, 20, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 120px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, #000000 40%, #000000 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

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

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 220, 150, 1),
                0 0 30px rgba(255, 140, 60, 0.9),
                0 0 45px rgba(255, 100, 50, 0.7),
                0 0 60px rgba(220, 60, 40, 0.6),
                0 0 80px rgba(180, 40, 30, 0.4),
                0 0 100px rgba(150, 30, 20, 0.2),
                inset 0 0 20px rgba(255, 107, 53, 0.2);
}

.glow-ring {
    display: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 1rem 0;
    line-height: 1.1;
    font-family: 'Anton', 'Space Mono', sans-serif;
    letter-spacing: -1px;
}

.gradient-text {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    font-family: 'Righteous', 'Anton', sans-serif;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow, background, border-color;
    min-height: 44px;
    min-width: 44px;
    contain: layout style paint;
}

.btn-primary {
    background: rgba(255, 107, 53, 0.3);
    color: white;
    border: 1.5px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.9);
    box-shadow: 0 16px 50px rgba(255, 107, 53, 0.5), 0 0 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.2);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 7rem 0;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 4.5rem;
    text-align: center;
    font-family: 'Anton', 'Space Mono', sans-serif;
    letter-spacing: -0.5px;
}

/* ===== CONNECT SECTION ===== */
.connect {
    position: relative;
}

.connect::before {
    content: '';
    position: absolute;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: 10%;
    right: -15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, rgba(255, 107, 53, 0) 70%);
    filter: blur(10px);
    pointer-events: none;
}

.connect-wrap {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.connect-intro {
    text-align: center;
}

.connect-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ffd4bf;
    border: 1px solid rgba(255, 107, 53, 0.45);
    background: rgba(255, 107, 53, 0.15);
}

.connect-title {
    margin-bottom: 1.05rem;
}

.connect-text {
    color: var(--text-secondary);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto;
}

.connect-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(1.3rem, 3vw, 2rem);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: linear-gradient(155deg, rgba(255, 107, 53, 0.11) 0%, rgba(20, 20, 20, 0.8) 38%, rgba(12, 12, 12, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.22), rgba(255, 107, 53, 0));
    pointer-events: none;
}

.connect-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.14);
    color: #ffd4bf;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: statusPulse 2s ease-in-out infinite;
}

.connect-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.connect-platform {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.72);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    min-height: 86px;
}

.connect-platform:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.58);
    background: rgba(255, 107, 53, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.platform-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.connect-platform:hover .platform-icon {
    color: var(--primary-color);
    border-color: rgba(255, 107, 53, 0.48);
    background: rgba(255, 107, 53, 0.14);
}

.platform-meta {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
}

.platform-name {
    font-family: 'Anton', 'Space Mono', sans-serif;
    letter-spacing: 0.04em;
    font-size: 1rem;
}

.platform-handle {
    color: var(--text-secondary);
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-cta {
    margin-left: auto;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    border: 1px solid rgba(255, 107, 53, 0.35);
    background: rgba(255, 107, 53, 0.1);
    color: #ffd4bf;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    flex-shrink: 0;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.connect-platform:hover .platform-cta {
    color: #ffffff;
    border-color: rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.22);
}

@keyframes statusPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.65);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0);
    }
}

@media (max-width: 940px) {
    .connect-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .connect-platform:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .connect-wrap {
        gap: 1.4rem;
    }

    .connect-card {
        padding: 1.15rem;
    }

    .connect-links {
        grid-template-columns: 1fr;
    }

    .connect-platform:last-child {
        grid-column: auto;
    }

    .platform-name {
        font-size: 0.95rem;
    }

    .platform-cta {
        font-size: 0.66rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.about-card {
    padding: 2.8rem 2.2rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform, background, box-shadow;
    contain: layout style paint;
}
    will-change: transform, border-color, background, box-shadow;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: -1;
    will-change: opacity;
}

.about-card:hover {
    transform: translateY(-16px) scale(1.03);
    border-color: rgba(255, 107, 53, 0.8);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 16px 45px rgba(255, 107, 53, 0.35), 0 0 20px rgba(255, 107, 53, 0.25), inset 0 0 15px rgba(255, 107, 53, 0.08);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, color;
}

.about-card:hover .card-icon {
    transform: scale(1.25) rotate(8deg);
    color: #ffaa45;
}

.about-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-family: 'Anton', 'Space Mono', sans-serif;
    font-weight: 700;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: color, transform;
}

.about-card:hover h3 {
    color: var(--primary-color);
    transform: scale(1.08);
}
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ===== PROJECTS SECTION ===== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 1.35rem;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    cursor: none;
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.12) 0%, rgba(18, 18, 18, 0.88) 44%, rgba(8, 8, 8, 0.96) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
    will-change: transform, background, box-shadow, border-color;
    contain: layout style paint;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    top: -95px;
    right: -85px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.22) 0%, rgba(255, 107, 53, 0) 72%);
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 107, 53, 0.55);
    background: linear-gradient(165deg, rgba(255, 107, 53, 0.18) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(9, 9, 9, 0.97) 100%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 107, 53, 0.15) inset;
}

.project-card:first-child {
    grid-column: span 2;
    min-height: 250px;
}

.project-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffd4bf;
    border: 1px solid rgba(255, 107, 53, 0.38);
    background: rgba(255, 107, 53, 0.14);
}

.project-arrow {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-arrow i {
    width: 16px;
    height: 16px;
}

.project-card:hover .project-arrow {
    color: var(--primary-color);
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.12);
}

.project-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.95rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.12);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease, border-color 0.25s ease;
    will-change: transform, color;
}

.project-card:hover .project-icon-wrapper {
    transform: translateY(-2px) scale(1.05);
    color: #ffaa45;
    border-color: rgba(255, 170, 69, 0.55);
}

.project-title {
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 0.72rem;
    line-height: 1.2;
    font-family: 'Anton', 'Space Mono', sans-serif;
    letter-spacing: 0.03em;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.25s ease;
    will-change: color, text-shadow;
}

.project-card:hover .project-title {
    color: var(--primary-color);
}

.project-desc {
    color: var(--text-secondary);
    margin-bottom: 1.15rem;
    line-height: 1.62;
    font-size: 0.97rem;
    flex-grow: 1;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: color;
}

.project-card:hover .project-desc {
    color: var(--text-primary);
}

.project-footer {
    margin-top: auto;
}

.project-link-text {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffd4bf;
    font-weight: 700;
    font-size: 0.69rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.38);
    border-radius: 999px;
    padding: 0.35rem 0.62rem;
    background: rgba(255, 107, 53, 0.12);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-link-text i {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.project-card:hover .project-link-text {
    color: #ffffff;
    border-color: rgba(255, 107, 53, 0.62);
    background: rgba(255, 107, 53, 0.23);
}

.project-card:hover .project-link-text i {
    transform: translateX(2px);
}

@media (max-width: 980px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card:first-child {
        grid-column: auto;
    }
}

/* ===== FOOTER ===== */
.glass-footer {
    margin-top: 6rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: color, transform;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-8px) scale(1.18) rotate(10deg);
}

/* ===== ANIMATIONS ===== */
.fade-in-section {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    will-change: opacity, transform;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95) translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}

@media (max-width: 768px) {
    main {
        padding: 0 1.5rem;
        padding-top: 100px;
    }

    .mobile-menu-btn {
        display: flex;
          position: absolute;
          right: 1.5rem;
          top: 50%;
          transform: translateY(-50%);
      }

      .nav-content {
          justify-content: center;
          position: relative;
      }

      .nav-logo {
          position: static;
      }

      .nav-links {
          position: fixed;
          top: 70px;
          left: 0;
          right: 0;
          background: rgba(10, 10, 10, 0.95);
          backdrop-filter: blur(20px);
          flex-direction: column;
          gap: 0.5rem;
          padding: 1.5rem;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          z-index: 999;
          display: none;
      }

      .nav-links.active {
        display: flex !important;
        max-height: 350px;
    }

    ..nav-logo {
        font-size: 1.6rem;
    }

    .nav-content {
        gap: 1rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem 2rem;
    }

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

    .project-card {
        padding: 2rem;
    }

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

    .about-card {
        min-height: auto;
        padding: 2.2rem 2rem;
    }

    .card-icon {
        font-size: 2.8rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .navbar {
        width: 96%;
        padding: 0.75rem 1.5rem;
        top: 12px;
    }

    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
        font-size: clamp(1.8rem, 4vw, 3.2rem);
    }
    
    .hero {
        padding: 2.5rem 0;
    }

    .profile-img-container {
        width: 160px;
        height: 160px;
    }

    .footer-links {
        gap: 1.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    main {
        padding: 0 1.2rem;
        padding-top: 85px;
    }

    .mobile-menu-btn {
        display: flex;
          position: absolute;
          right: 1.2rem;
          top: 50%;
          transform: translateY(-50%);
      }

      .nav-content {
          justify-content: center;
          position: relative;
          padding-right: 3rem;
      }

      .nav-logo {
          font-size: 1.5rem;
          font-weight: 800;
      }

      .nav-links {
          top: 60px;
          display: none;
      }

      .nav-links.active {
          display: flex !important;
      }

      .navbar {
          position: fixed;
          top: 12px;
          left: 50%;
          transform: translateX(-50%);
          width: 95%;
          padding: 0.75rem 1.5rem;
          z-index: 1000;
          border-radius: 50px;
    .nav-links a {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.8rem);
        margin-bottom: 2.5rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .hero {
        min-height: calc(100vh - 85px);
        padding: 2rem 0;
    }

    .hero-content {
        gap: 2.2rem;
    }

    .profile-img-container {
        width: 130px;
        height: 130px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3.2rem);
        margin: 0.5rem 0;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.8rem;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .about-card {
        padding: 1.8rem 1.5rem;
    }

    .card-icon {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }

    .about-card h3 {
        font-size: 1rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .project-card {
        padding: 1.8rem;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-desc {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 1rem;
        padding-top: 80px;
    }

    .mobile-menu-btn {
        display: flex;
          position: absolute;
          right: 1rem;
          top: 50%;
          transform: translateY(-50%);
      }

      .nav-content {
          justify-content: center;
          position: relative;
          padding-right: 2.8rem;
      }

      .nav-logo {
          position: static;
      }

      .nav-links {
          top: 55px;
          display: none;
      }

      .nav-links.active {
        display: flex !important;
        max-height: 350px;
    }

    ..profile-img-container {
        width: 120px;
        height: 120px;
    }

    .hero {
        min-height: calc(100vh - 80px);
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: clamp(1.6rem, 3.5vw, 3rem);
        margin: 0.5rem 0;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-actions {
        gap: 0.8rem;
        margin-top: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        min-height: 44px;
    }

    .navbar {
        position: fixed;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 98%;
        padding: 0.6rem 1rem;
        z-index: 1000;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 3vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .about-grid {
        gap: 1.2rem;
    }

    .about-card {
        min-height: 180px;
        padding: 1.5rem 1.2rem;
    }

    .about-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .project-grid {
        gap: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-icon-wrapper {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .project-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .project-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon i {
        width: 18px;
        height: 18px;
    }

    .footer-links {
        gap: 1.2rem;
        font-size: 1.2rem;
    }

    .glass-footer {
        padding: 2.5rem 0;
    }

    .glass-footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    main {
        padding: 0 0.8rem;
        padding-top: 75px;
    }

    .mobile-menu-btn {
        display: flex;
          position: absolute;
          right: 0.8rem;
          top: 50%;
          transform: translateY(-50%);
      }

      .nav-content {
          justify-content: center;
          position: relative;
          padding-right: 2.6rem;
      }

      .nav-logo {
          font-size: 1.2rem;
          letter-spacing: 0.02em;
      }

      .nav-links {
          top: 50px;
          display: none;
      }

      .nav-links.active {
          display: flex !important;
      }

      .navbar {
          position: fixed;
          top: 8px;
          left: 50%;
          transform: translateX(-50%);
          width: 94%;
          padding: 0.65rem 1rem;
          z-index: 1000;
          border-radius: 45px;
    .hero {
        min-height: calc(100vh - 75px);
        padding: 1rem 0;
    }

    .profile-img-container {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 3vw, 2.5rem);
    }

    .hero-content {
        gap: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: auto;
    }

    .about-card {
        padding: 1.2rem 1rem;
        min-height: 160px;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .project-card {
        padding: 1.2rem;
    }
}

/* Mobile Animation Optimizations */
@media (max-width: 768px) {
    /* Slightly faster animations on mobile for better feel */
    .nav-links {
        transition: max-height 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .btn {
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    }

    .nav-links a {
        transition: color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .social-icon {
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    }

    /* Reduce hover transform on touch devices for better performance */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-4px) scale(1.02);
    }

    .about-card:hover {
        transform: translateY(-10px) scale(1.01);
    }

    .project-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .card-icon {
        transition: color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.25s ease;
    }

    .about-card:hover .card-icon {
        transform: scale(1.15) rotate(5deg);
    }

    .project-icon-wrapper {
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
    }

    .project-card:hover .project-icon-wrapper {
        transform: scale(1.2) rotate(10deg);
    }
}











