/* Project Card Styles */
        .project {
            margin-bottom: 60px;
            padding-bottom: 60px;
            border-bottom: 2px solid #e0e0e0;
        }

        .project:first-child {
            margin-top: 40px;
        }

        .project:last-child {
            border-bottom: none;
        }

        .project-title {
            font-size: 2em;
            color: #000000;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3b3b3b;
            font-weight: 600;
        }

        .project-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 25px;
            margin-top: 50px;
        }

        /* Image wrapper with hover tooltip */
        .img-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .img-wrapper::before {
            content: 'Click to view';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #000000;
            color: white;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 0.9em;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, top 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .img-wrapper::after {
            content: '';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #000000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, top 0.3s ease;
            z-index: 10;
        }

        .img-wrapper:hover::before {
            opacity: 1;
            top: -45px;
        }

        .img-wrapper:hover::after {
            opacity: 1;
            top: -18px;
        }

        .project-images img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            display: block;
        }

        .project-images img:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .image-placeholder {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #666;
            font-size: 0.9em;
            border: 2px dashed #999;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .image-placeholder:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .project-outcomes {
            margin-bottom: 20px;
        }

        .project-outcomes h3 {
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #333;
            font-weight: 600;
        }

        .project-outcomes p {
            font-size: 1.05em;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }

        .project-link {
            display: inline-block;
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05em;
            padding: 12px 25px;
            border: 2px solid #000000;
            border-radius: 5px;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .project-link:hover {
            background-color: #000000;
            color: white;
            transform: translateX(5px);
        }

        :root {
            --primary: #000000;
            --secondary: #ffffff;
            --dark: #1a1a1a;
            --darker: #000000;
            --light: #ffffff;
            --gray: #666666;
            --accent: #333333;
            --gradient: linear-gradient(135deg, #000000 0%, #333333 100%);
        }

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

        body {
            font-family: 'JetBrains Mono', monospace;
            background-color: #ffffff;
            color: #000000;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 2px solid #000000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1px;
        }

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

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #cccccc;
        }

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

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            transition: 0.3s;
        }

        /* Hero Section */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem 2rem;
            background: #ffffff;
        }

        /* ===== VIDEO BACKGROUND STYLES ===== */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.4);
            z-index: 1;
        }
        /* ===== END VIDEO BACKGROUND STYLES ===== */

        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 2;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(50px, 50px);
            }
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            position: relative;
            z-index: 3;
        }

        .hero-text h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
            color: #000000;
        }

        .gradient-text {
            color: #000000;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #666666;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            display: block;
        }

        .stat-label {
            color: #666666;
            font-size: 0.9rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s backwards;
        }

        .btn {
            padding: 1rem 2rem;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: #000000;
            color: #ffffff;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-secondary {
            background: transparent;
            color: #000000;
            border: 2px solid #000000;
        }

        .btn-secondary:hover {
            background: #000000;
            color: #ffffff;
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(30px, 5vw, 4rem);
            font-weight: 750;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            color: #000000;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 4px;
            background: #000000;
        }

        .section-subtitle {
            color: #666666;
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        /* Services Section */
        #services {
            background: #f8f8f8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #ffffff;
            padding: 2.5rem;
            border: 2px solid #e0e0e0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover::before {
            opacity: 0.03;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #000000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            color: #000000;
        }

        .service-card p {
            color: #666666;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .service-card ul {
            margin-top: 1rem;
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .service-card li {
            color: #666666;
            padding: 0.3rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-card li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: #000000;
        }

        /* Projects Section */
        .projects-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            border-bottom: 2px solid #e0e0e0;
        }

        .tab-btn {
            background: none;
            border: none;
            color: #666666;
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 1rem 2rem;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }

        .tab-btn.active {
            color: #000000;
        }

        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #000000;
            transition: width 0.3s;
        }

        .tab-btn.active::after {
            width: 100%;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .project-card {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: #000000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .project-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-content {
            padding: 2rem;
        }

        .project-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: #f0f0f0;
            color: #000000;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-content h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #000000;
        }

        .project-content p {
            color: #666666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .project-stats {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .project-stat {
            font-size: 0.85rem;
        }

        .project-stat strong {
            color: #000000;
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        /* About Section */
        #about {
            background: #f8f8f8;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #666666;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .skills-section {
            margin-top: 2rem;
        }

        .skills-category {
            margin-bottom: 2rem;
        }

        .skills-category h4 {
            font-family: 'Syne', sans-serif;
            color: #000000;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .skill-tag {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            color: #000000;
            transition: all 0.3s;
        }

        .skill-tag:hover {
            background: #f0f0f0;
            border-color: #000000;
            transform: translateY(-2px);
        }

        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: #000000;
        }

        .timeline-item {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #000000;
            border: 3px solid #f8f8f8;
        }

        .timeline-item h4 {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: #000000;
        }

        .timeline-date {
            color: #000000;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-item p {
            color: #666666;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #000000;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 2px solid #000000;
        }

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

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

        .social-links a {
            color: #ffffff;
            font-size: 1.8rem;
            transition: all 0.3s;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
            border-radius: 50%;
        }

        .social-links a:hover {
            background-color: #ffffff;
            color: #000000;
            transform: translateY(-5px);
        }

        .footer-text {
            color: #cccccc;
            font-size: 0.9rem;
        }

        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: #000000;
            z-index: 9999;
            transition: width 0.1s;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

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

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

            .projects-tabs {
                overflow-x: auto;
            }

            .tab-btn {
                white-space: nowrap;
            }
            
            .project-images {
                grid-template-columns: 1fr;
            }
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            animation: zoomIn 0.5s;
            border: 2px solid #000000;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 50px;
            color: white;
            font-size: 50px;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10001;
        }

        .lightbox-close:hover {
            transform: scale(1.2);
            color: #cccccc;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Profile Image Styles - Add this in the About Section */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Add this to your existing @media (max-width: 968px) section */
@media (max-width: 968px) {
    .profile-image {
        max-width: 200px;
        margin-bottom: 1rem;
    }
}

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }