:root {
    --bg-color: #050510;
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --neon-purple: #9b59b6;
    --neon-cyan: #00d4e6;
    --neon-blue: #3b82f6;
    
    --glass-bg: rgba(15, 15, 30, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --glass-blur: blur(14px);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden; width: 100%; position: relative;
}

/* ThreeJS Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* UI Wrapper container */
#app-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

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

.text-neon {
    color: transparent;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
}

/* Utility Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(0, 212, 230, 0.2);
    box-shadow: 0 10px 40px 0 rgba(0, 212, 230, 0.08);
    transform: translateY(-3px);
}

.btn-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-cta {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    margin-top: 2rem;
}

.btn-cta:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 0 25px rgba(155, 89, 182, 0.5);
}

.btn-glow:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Anti-Gravity Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0px); }
}

/* Base class for floated elements when gravity is OFF */
.gravity-off .float-element {
    animation: float 8s ease-in-out infinite;
}

.gravity-off .float-card {
    animation: float-reverse 10s ease-in-out infinite;
}

/* Delays to make animations look organic and not in sync */
.delay-1 { animation-delay: 1s !important; }
.delay-2 { animation-delay: 2s !important; }
.delay-3 { animation-delay: 3s !important; }
.delay-4 { animation-delay: 4s !important; }
.delay-5 { animation-delay: 5s !important; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 16, 0.6);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    text-shadow: none;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

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

/* Sections Global */
section {
    min-height: auto;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    align-self: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--neon-purple);
    box-shadow: 0 0 6px rgba(155, 89, 182, 0.4);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    align-self: center;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-muted);
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 480px;
    opacity: 0.85;
}

.hero-elements {
    position: absolute;
    top: 0;
    right: -200px;
    width: 100%;
    height: 100%; word-wrap: break-word; overflow-wrap: break-word;
    pointer-events: none;
}

.floating-code {
    position: absolute;
    top: -100px;
    right: 0px;
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid var(--neon-blue);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-family: monospace;
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--neon-purple);
    filter: drop-shadow(0 0 10px var(--neon-purple));
    background: rgba(20, 20, 40, 0.6);
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.floating-icon:nth-child(2) {
    top: 50px;
    right: 30px;
}

.floating-icon.db-icon {
    bottom: -150px;
    right: 150px;
    color: var(--neon-cyan);
    border-color: rgba(0, 243, 255, 0.3);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

#hero-3d-avatar {
    width: 400px;
    height: 400px;
    max-width: 100%;
    position: relative;
    z-index: 3;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-card.delay-1, .about-card.delay-2 {
    flex-direction: column;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--neon-purple);
    text-shadow: none;
    margin-bottom: 0.5rem;
}

/* Skills Orbit Section */
.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-planet {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    z-index: 10;
    border: 2px solid var(--neon-cyan);
}

.neon-glow {
    box-shadow: 0 0 12px rgba(0, 212, 230, 0.3), inset 0 0 12px rgba(0, 212, 230, 0.15);
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: spin linear infinite;
}

.orbit-1 { width: 220px; height: 220px; animation-duration: 25s; }
.orbit-2 { width: 320px; height: 320px; animation-duration: 40s; animation-direction: reverse; }
.orbit-3 { width: 420px; height: 420px; animation-duration: 55s; }

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--glass-border);
}

.orbit-1 .orbit-icon:nth-child(2) { top: auto; bottom: -25px; }
.orbit-2 .orbit-icon { top: 50%; left: -25px; transform: translateY(-50%); }
.orbit-2 .orbit-icon:nth-child(2) { left: auto; right: -25px; }
.orbit-3 .orbit-icon { top: 85%; left: 15%; transform: translate(-50%, -50%); }
.orbit-3 .orbit-icon:nth-child(2) { top: 15%; left: auto; right: 15%; transform: translate(50%, -50%); }

.icon-java { color: #f89820; border-color: rgba(248, 152, 32, 0.4); box-shadow: 0 0 10px rgba(248, 152, 32, 0.4);}
.icon-python { color: #3776AB; border-color: rgba(55, 118, 171, 0.4); box-shadow: 0 0 10px rgba(55, 118, 171, 0.4);}
.icon-sql { color: #00758f; border-color: rgba(0, 117, 143, 0.4); box-shadow: 0 0 10px rgba(0, 117, 143, 0.4); }
.icon-js { color: #F7DF1E; border-color: rgba(247, 223, 30, 0.4); box-shadow: 0 0 10px rgba(247, 223, 30, 0.4); }
.icon-html { color: #E34F26; border-color: rgba(227, 79, 38, 0.4); box-shadow: 0 0 10px rgba(227, 79, 38, 0.4); }
.icon-cpp { color: #00599C; border-color: rgba(0, 89, 156, 0.4); box-shadow: 0 0 10px rgba(0, 89, 156, 0.4); }

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* To keep icons straight */
.orbit-icon > * {
    animation: spin-reverse linear infinite;
}

.orbit-1 .orbit-icon > * { animation-duration: 25s; }
.orbit-2 .orbit-icon > * { animation-duration: 40s; animation-direction: reverse; }
.orbit-3 .orbit-icon > * { animation-duration: 55s; }

@keyframes spin-reverse {
    100% { transform: rotate(-360deg); }
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    min-height: 250px;
    height: auto;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
}

.project-card-inner {
    width: 100%;
    height: 100%; word-wrap: break-word; overflow-wrap: break-word;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.project-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; word-wrap: break-word; overflow-wrap: break-word;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.tech-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-top: 1rem;
    color: var(--neon-purple);
    border: 1px solid rgba(176, 38, 255, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--neon-cyan);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 8px rgba(0, 212, 230, 0.4);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    border-radius: 12px;
}

.timeline-date {
    color: var(--neon-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-main);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    background: transparent;
    font-family: var(--font-body);
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: 0.4s ease all;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.input-group input:focus ~ .input-border,
.input-group textarea:focus ~ .input-border {
    width: 100%;
}

.submit-btn {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
    transform: translateY(-5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    width: 90%;
    max-width: 600px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--neon-cyan);
}

.modal-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Certifications Modal Specifics */
#cert-modal {
    max-width: 850px;
}
.cert-modal-content {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-purple) var(--bg-color);
}
.cert-modal-content::-webkit-scrollbar {
    width: 6px;
}
.cert-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--neon-purple);
    border-radius: 10px;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-bottom: 20px;
}
.cert-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cert-grid a:hover .cert-img {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(10vh);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar { padding: 1.5rem 5%; }
    .hero-content h1 { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    .hero-content { margin-top: 0; max-width: 100%; }
    .cta-group { justify-content: center; }
    #hero-3d-avatar { max-width: 100%;
        width: 300px;
        height: 300px;
        margin-bottom: 2rem;
        order: -1;
    }
    .about-grid { grid-template-columns: 1fr; }
    .timeline::after { left: 31px; }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-bottom: 2rem;
    }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot { left: 21px; }
    .orbit-container { transform: scale(0.7); margin: 2rem auto; }
}

@media (max-width: 480px) {
    section { padding: 3rem 5%; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
    #hero-3d-avatar { max-width: 100%; width: 250px; height: 250px; opacity: 0.8; }
    .orbit-container { transform: scale(0.5); }
    .project-grid { grid-template-columns: 1fr; }
    .btn-cta { width: 100%; text-align: center; }
}

/* Authentication & User UI */
.btn-google {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    box-shadow: none;
}
.btn-google:hover {
    background: white;
    color: black;
    transform: scale(1.05) translateY(-3px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 40, 0.6);
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.avatar-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.auth-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
}
.auth-btn:hover {
    color: var(--neon-purple);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    font-weight: 600;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.toast.show {
    bottom: 30px;
}
.toast i {
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

/* Admin Dashboard Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
.admin-table th, .admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}
.admin-table th {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
}
.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}
.admin-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

/* Social Sign-In Prompt */
.social-prompt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 230, 0.3);
    border-radius: 20px;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 212, 230, 0.1);
    display: none;
    flex-direction: column;
    gap: 15px;
    animation: slideUpPrompt 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideUpPrompt {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

.prompt-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.prompt-close:hover {
    color: var(--neon-purple);
}

.prompt-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prompt-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.prompt-text h4 {
    color: var(--text-main);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.prompt-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-prompt-login {
    width: 100%;
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-prompt-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-prompt.hidden {
    display: none !important;
}
/* Resume Dropdown Styles */
.resume-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    margin-top: 10px;
    z-index: 1000;
    padding: 10px !important;
    animation: fadeIn 0.3s ease forwards;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(0, 212, 230, 0.15);
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.resume-dropdown:hover .dropdown-content {
    display: block;
}

.resume-dropdown.active .dropdown-content {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gravity FAB Toggle */
.gravity-fab {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: rgba(15, 15, 30, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 230, 0.3);
    border-radius: 50%;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.gravity-fab:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(0, 212, 230, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 230, 0.2);
}

.gravity-fab.active {
    color: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.gravity-fab i {
    pointer-events: none;
    font-size: 1.1rem;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

#resume-btn {
    margin-top: 0;
    min-width: 160px;
}

.btn-cta {
    margin-top: 0;
}
