/* ===== CSS VARIABLES ===== */
        :root {
            --bg-dark: #0a0a0a;
            --bg-light: #f5f3ef;
            --gold: #d4af37;
            --purple: #8f5eff;
            --text-light: #e8e6e3;
            --text-dark: #1a1a1a;
            --parchment: #f5e8c8;
            --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        body {
            font-family: 'Lora', serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            transition: var(--transition);
            cursor: auto;
        }

        body.light-mode {
            background-color: var(--bg-light);
            color: var(--text-dark);
        }

        /* ===== CUSTOM CURSOR ===== */
        .cursor {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--gold) 100%, transparent 70%);
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease, opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
        }

        .cursor-trail {
            position: fixed;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--purple);
            pointer-events: none;
            z-index: 9998;
            opacity: 0;
            transition: transform 0.15s ease, opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Show cursor only in hero section */
        body.hero-cursor .cursor,
        body.hero-cursor .cursor-trail {
            opacity: 1;
        }

        body.hero-cursor {
            cursor: none;
        }

        /* Ensure all links are clickable */
        a, .hero-cta, .theme-toggle, .music-toggle, .social-link, .footer-nav-link, .project-link {
            cursor: pointer !important;
            position: relative;
            z-index: 10;
        }

        /* Override cursor hiding for clickable elements */
        body.hero-cursor a,
        body.hero-cursor .hero-cta,
        body.hero-cursor .theme-toggle,
        body.hero-cursor .music-toggle,
        body.hero-cursor .social-link,
        body.hero-cursor .footer-nav-link,
        body.hero-cursor .project-link {
            cursor: pointer !important;
        }

        /* ===== MAGICAL SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 14px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg,
                    rgba(10, 10, 10, 0.9) 0%,
                    rgba(26, 26, 46, 0.8) 50%,
                    rgba(10, 10, 10, 0.9) 100%);
            backdrop-filter: blur(15px);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg,
                    var(--gold) 0%,
                    #ff6b6b 25%,
                    var(--purple) 50%,
                    #4ecdc4 75%,
                    var(--gold) 100%);
            border-radius: 12px;
            border: 2px solid rgba(10, 10, 10, 0.9);
            box-shadow:
                0 0 10px rgba(212, 175, 55, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
            background-size: 100% 200%;
            animation: scrollbarGlow 3s ease-in-out infinite;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg,
                    var(--purple) 0%,
                    #ff6b6b 25%,
                    var(--gold) 50%,
                    #4ecdc4 75%,
                    var(--purple) 100%);
            box-shadow:
                0 0 20px rgba(212, 175, 55, 0.8),
                inset 0 0 15px rgba(255, 255, 255, 0.5);
            animation-duration: 1.5s;
        }

        @keyframes scrollbarGlow {

            0%,
            100% {
                box-shadow:
                    0 0 10px rgba(212, 175, 55, 0.6),
                    inset 0 0 10px rgba(255, 255, 255, 0.3);
            }

            50% {
                box-shadow:
                    0 0 15px rgba(212, 175, 55, 0.8),
                    inset 0 0 15px rgba(255, 255, 255, 0.5);
            }
        }

        /* Firefox Support */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--gold) rgba(10, 10, 10, 0.9);
        }

        /* Light Mode Scrollbar */
        body.light-mode ::-webkit-scrollbar-track {
            background: linear-gradient(180deg,
                    rgba(245, 243, 239, 0.9) 0%,
                    rgba(230, 226, 214, 0.8) 50%,
                    rgba(245, 243, 239, 0.9) 100%);
            border-left: 1px solid rgba(212, 175, 55, 0.3);
        }

        body.light-mode ::-webkit-scrollbar-thumb {
            border: 2px solid rgba(245, 243, 239, 0.9);
        }

        body.light-mode * {
            scrollbar-color: var(--gold) rgba(245, 243, 239, 0.9);
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        body.light-mode header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

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

        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        body.light-mode nav a {
            color: var(--text-dark);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        .theme-toggle {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-family: 'Cinzel Decorative', cursive;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .theme-toggle:hover {
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }

        /* ===== SECTIONS ===== */
        section {
            min-height: 100vh;
            padding: 6rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            color: var(--gold);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        /* ===== HERO SECTION ===== */
        #hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            z-index: 10;
        }

        .hero-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
            opacity: 0;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text-light);
            opacity: 0;
        }

        body.light-mode .hero-subtitle {
            color: #fff;
        }

        .hero-cta {
            display: inline-block;
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.2rem;
            border-radius: 30px;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
        }

        .hero-cta:hover {
            background: rgba(212, 175, 55, 0.5);
            box-shadow: 0 0 20px rgba(253, 204, 44, 0.995);
            transform: translateY(-5px);
            color: #e8e6e3;
        }

        /* ===== ABOUT SECTION ===== */
        #about {
            background: rgba(10, 10, 10, 0.7);
        }

        body.light-mode #about {
            background: rgba(245, 243, 239, 0.7);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0;
        }

        .about-image {
            position: relative;
            opacity: 0;
        }

        .image-frame {
            width: 100%;
            height: 650px;
            /* border: 3px solid var(--gold); */
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            /* box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); */
        }

        .image-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            z-index: 1;
        }
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark), #1a1a2e);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.5rem;
    overflow: hidden; /* Add this to prevent image overflow */
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the container */
    object-position: center; /* Centers the image */
    transition: transform 0.3s ease; /* Optional: adds a hover effect */
}

        body.light-mode .placeholder-image {
    background: linear-gradient(135deg, var(--bg-light), #e6e2d6);
}

/* Optional: Add a hover effect for the image */
.placeholder-image:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

        /* ===== MAGICAL ACHIEVEMENT BOXES ===== */
        .achievement-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .achievement-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(143, 94, 255, 0.1));
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .achievement-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            /* background: linear-gradient(45deg, var(--gold), var(--purple), var(--gold)); */
            border-radius: 16px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .achievement-box:hover::before {
            opacity: 1;
        }

        .achievement-box:hover {
            cursor: pointer;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .achievement-number {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .achievement-text {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        body.light-mode .achievement-text {
            color: var(--text-dark);
        }

        .tech-carousel {
            margin-top: 0.5rem;
            height: 30px;
            overflow: hidden;
            position: relative;
        }

        .tech-item {
            position: absolute;
            width: 100%;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .tech-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== SKILLS SECTION ===== */
        #skills {
            background: rgba(10, 10, 10, 0.8);
        }

        body.light-mode #skills {
            background: rgba(245, 243, 239, 0.8);
        }

        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skill-card {
            background: rgba(20, 20, 20, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            overflow: hidden;
        }

        body.light-mode .skill-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.5);
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
        }

        .skill-card:hover::before {
            left: 100%;
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .skill-name {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .skill-description {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== FLOATING TECH ICONS ===== */
        .floating-icons-container {
            grid-column: 1 / -1;
            position: relative;
            height: 250px;
            margin-top: -5rem;
        }

        .tech-icon {
            position: absolute !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
            transition: all 0.3s ease;
            border-radius: 10px;
            background: rgba(212, 175, 55, 0.1);
            padding: 5px;
            transform: scale(0);
        }

        .tech-icon:hover {
            transform: scale(1.2);
            filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
            background: rgba(212, 175, 55, 0.2);
        }

        .tech-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* ===== PROJECTS SECTION ===== */
        #projects {
            background: rgba(10, 10, 10, 0.9);
        }

        body.light-mode #projects {
            background: rgba(245, 243, 239, 0.9);
        }

        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: rgba(20, 20, 20, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        body.light-mode .project-card {
            background: rgba(255, 255, 255, 0.7);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
        }

        .project-image {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /* Adds some spacing */
        }

        #picnovass {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            /* Shows entire image without cropping */
        }

        #dashboardss {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* Shows entire image without cropping */
        }

        #ctpss {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* Shows entire image without cropping */
        }

        body.light-mode .project-image {
            background: linear-gradient(135deg, #e6e2d6, #d5d1c5);
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            z-index: 1;
        }

        .project-icon {
            font-size: 4rem;
            color: var(--gold);
            z-index: 2;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }

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

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .project-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .project-link {
            display: inline-block;
            color: var(--purple);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer !important;
        }

        .project-link:hover {
            color: var(--gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        /* ===== CONTACT SECTION ===== */
        #contact {
            background: rgba(10, 10, 10, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        body.light-mode #contact {
            background: rgba(245, 243, 239, 0.95);
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            opacity: 0;
        }

        .form-group {
            position: relative;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(20, 20, 20, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 5px;
            color: var(--text-light);
            font-family: 'Lora', serif;
            transition: var(--transition);
        }

        body.light-mode .form-input,
        body.light-mode .form-textarea {
            background: rgba(255, 255, 255, 0.7);
            color: var(--text-dark);
            border: 1px solid rgba(212, 175, 55, 0.5);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .form-label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: var(--text-light);
            transition: var(--transition);
            pointer-events: none;
        }

        body.light-mode .form-label {
            color: var(--text-dark);
        }

        .form-input:focus+.form-label,
        .form-input:not(:placeholder-shown)+.form-label,
        .form-textarea:focus+.form-label,
        .form-textarea:not(:placeholder-shown)+.form-label {
            top: -0.5rem;
            left: 0.5rem;
            font-size: 0.8rem;
            background: var(--bg-dark);
            padding: 0 0.5rem;
            color: var(--gold);
        }

        body.light-mode .form-input:focus+.form-label,
        body.light-mode .form-input:not(:placeholder-shown)+.form-label,
        body.light-mode .form-textarea:focus+.form-label,
        body.light-mode .form-textarea:not(:placeholder-shown)+.form-label {
            background: var(--bg-light);
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        /* ===== FOOTER ===== */
        /* Professional Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 3rem 2rem 1.5rem;
            border-top: 1px solid #333;
        }

        body.light-mode footer {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-top: 1px solid #dee2e6;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-info h3 {
            color: var(--gold);
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-info p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        body.light-mode .footer-info p {
            color: var(--text-dark);
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .link-group h4 {
            color: var(--gold);
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--gold);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        /* Social Links */
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            padding: 0.5rem;
            border-radius: 6px;
        }

        body.light-mode .social-link {
            color: var(--text-dark);
        }

        .social-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateX(5px);
            color: var(--gold);
        }

        #githublogo {
            filter: brightness(0) invert(1);
        }

        .social-link img {
            width: 20px;
            height: 20px;
            transition: var(--transition);
        }

        body.light-mode #githublogo {
            filter: brightness(0) invert(0);
        }

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

        /* Navigation Links */
        .footer-nav-link {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: var(--transition);
            padding: 0.3rem 0;
        }

        body.light-mode .footer-nav-link {
            color: var(--text-dark);
        }



        .footer-nav-link:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            text-align: center;
        }

        body.light-mode .footer-bottom {
            border-top: 1px solid #dee2e6;
        }

        .professional-tagline {
            margin-bottom: 1rem;
        }

        .professional-tagline p {
            color: var(--text-light);
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        body.light-mode .professional-tagline p {
            color: var(--text-dark);
        }

        .copyright p {
            color: var(--text-light);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        body.light-mode .copyright p {
            color: var(--text-dark);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            footer {
                padding: 2rem 1rem 1rem;
            }
        }

        /* ===== THREE.JS CANVAS ===== */
        #magic-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* ===== MUSIC TOGGLE ===== */
        .music-toggle {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(10, 10, 10, 0.7);
            border: 1px solid var(--gold);
            color: var(--gold);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
            transition: var(--transition);
        }

        body.light-mode .music-toggle {
            background: rgba(245, 243, 239, 0.7);
        }

        .music-toggle:hover {
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }

        /* ===== SCROLL PROGRESS BAR ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg,
                    var(--gold),
                    var(--purple),
                    #ff6b6b,
                    var(--gold));
            z-index: 1001;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

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

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

            .skills-container,
            .projects-container {
                grid-template-columns: 1fr;
            }

            .floating-icons-container {
                height: 200px;
            }

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

            nav ul {
                display: none;
            }
        }