 :root {
            --primary: #0a192f;
            --secondary: #112240;
            --accent: #64ffda;
            --accent-light: #8affdf;
            --text: #ccd6f6;
            --text-light: #a8b2d1;
            --white: #e6f1ff;
            --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
            --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
            --border: 1px solid rgba(100, 255, 218, 0.1);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(17, 34, 64, 0.5) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(17, 34, 64, 0.4) 0%, transparent 20%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border-bottom: var(--border);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            font-family: 'Roboto Mono', monospace;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--white);
            margin-left: 5px;
        }

        .logo-icon {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }

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

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .icon-link {
            color: var(--text-light);
            font-size: 1.2rem;
            transition: var(--transition);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: var(--border);
            text-decoration: none; /* Fix: Remove underline */
        }

        .icon-link:hover {
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
            width: 100%;
        }

        .hero-text {
            flex: 1;
        }

        .hero-image {
            flex: 0 0 300px;
            position: relative;
        }

        .headshot-frame {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent);
            box-shadow: var(--shadow);
            position: relative;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .headshot-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #0a192f;
        }

        .headshot-frame::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 3s infinite;
        }

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

        .hero-subtitle {
            color: var(--accent);
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
            color: var(--white);
        }

        .hero-description {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 28px;
            background-color: transparent;
            border: var(--border);
            color: var(--accent);
            text-decoration: none;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.9rem;
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
            gap: 8px;
        }

        .btn:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--primary);
            font-weight: 500;
            margin-right: 15px;
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent);
        }

        /* Sections */
        section {
            padding: 70px 0;
        }

        .section-title {
            font-family: 'Roboto Mono', monospace;
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .section-title::before {
            content: attr(data-number);
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 10px;
            font-weight: 400;
        }

        .section-title::after {
            content: '';
            flex-grow: 1;
            height: 1px;
            background-color: var(--text-light);
            margin-left: 20px;
            opacity: 0.2;
        }

        .section-content {
            background-color: var(--secondary);
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: var(--border);
        }

        .section-content:hover {
            transform: translateY(-5px);
        }

        /* About */
        .about-content {
            display: flex;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .skill-item {
            display: flex;
            align-items: center;
        }

        .skill-icon {
            color: var(--accent);
            margin-right: 10px;
            font-size: 0.9rem;
            width: 24px;
            text-align: center;
        }

        /* Experience */
        .timeline {
            position: relative;
            max-width: 800px;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: var(--accent);
            top: 0;
            bottom: 0;
            left: 20px;
            margin-left: -3px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 50px;
        }

        .timeline-date {
            font-family: 'Roboto Mono', monospace;
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .timeline-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--white);
        }

        .timeline-text {
            color: var(--text-light);
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--secondary);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            border: var(--border);
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-7px);
            border-color: var(--accent);
        }

        .project-header {
            padding: 20px;
            border-bottom: var(--border);
        }

        .project-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--white);
            display: flex;
            align-items: center;
        }

        .project-icon {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .project-tag {
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent);
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-family: 'Roboto Mono', monospace;
        }

        .project-body {
            padding: 20px;
        }

        .project-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-link {
            display: flex;
            align-items: center;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .project-link:hover {
            color: var(--accent);
        }

        .project-link i {
            margin-right: 5px;
        }

        /* Contact Form */
        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 30px;
        }

        .contact-method {
            display: flex;
            align-items: center;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
            margin-right: 15px;
            border: var(--border);
        }

        .contact-form {
            flex: 1;
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border: var(--border);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(10, 25, 47, 0.5);
            border: var(--border);
            border-radius: 4px;
            color: var(--text);
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            font-weight: 500;
            cursor: pointer;
            padding: 12px 30px;
        }

        .btn-submit:hover {
            transform: none;
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
        }

        /* Success Message */
        .success-message {
            background-color: rgba(100, 255, 218, 0.1);
            border: 1px solid var(--accent);
            padding: 20px;
            border-radius: 4px;
            margin-top: 20px;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        .show-more-link {
    display: inline-block;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 10px;
    transition: var(--transition);
}

.show-more-link:hover {
    color: var(--accent-light);
}

.arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.extra-info {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    color: var(--text-light);
}

.extra-info.open {
    max-height: 200px; /* Adjust based on content height */
    opacity: 1;
    margin-top: 15px;
}

.extra-info p {
    padding: 10px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 4px;
    border-left: 2px solid var(--accent);
}
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        .animated {
            animation: float 4s ease-in-out infinite;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 0;
            border-top: var(--border);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Hamburger menu styles */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }
        .hamburger {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--accent);
            position: relative;
            transition: var(--transition);
            border-radius: 2px;
        }
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            left: 0;
            width: 28px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger::before {
            top: -9px;
        }
        .hamburger::after {
            top: 9px;
        }

        /* Mobile nav open state */
        .nav-links.open {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            top: 0;
            right: 0;
            width: 70vw;
            max-width: 320px;
            height: 100vh;
            background: var(--secondary);
            box-shadow: var(--shadow);
            padding: 100px 30px 30px 30px;
            gap: 30px;
            z-index: 1050;
            transition: var(--transition);
            align-items: flex-start;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                order: 2;
            }
            
            .hero-image {
                order: 1;
                margin-bottom: 40px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            .nav-links {
                gap: 18px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .about-content,
            .contact-container {
                flex-direction: column;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 8px !important;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                margin-right: 0;
            }
            .nav-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                width: 70vw;
                max-width: 320px;
                height: 100vh;
                background: var(--secondary);
                box-shadow: var(--shadow);
                padding: 100px 30px 30px 30px;
                flex-direction: column;
                gap: 30px;
                z-index: 1050;
                align-items: flex-start;
                transition: var(--transition);
            }
            .nav-links.open {
                display: flex !important;
            }
            .nav-container {
                position: relative;
            }
            header {
                padding: 12px 0;
            }
            .social-icons {
                display: none;
            }
            section {
                padding: 50px 0;
            }
            .extra-info.open {
                max-height: none;
            }
        }

        @media (max-width: 480px) {
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            .nav-links {
                width: 100vw;
                max-width: none;
                padding: 80px 20px 20px 20px;
            }
        }

        body.menu-open {
            overflow: hidden;
        }