:root {
            --primary: #1a1a1a;
            --secondary: #1a1a1a;
            --accent: #9333EA;
            --accent-light: #A855F7;
            --text: #FFFFFF;
            --text-light: #A3A3A3;
            --cream: #1a1a1a;
            --card-bg: #222222;
        }

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

        body {
        	font-family: 'DM Sans', sans-serif;
        	background: var(--secondary);
        	color: var(--text);
        	overflow-x: hidden;
        	line-height: 1.6;
        	
        	padding-top: 150px; /* adjust to your header height */
        	}

        /* Custom Cursor */
        body {
            cursor: auto;
        }
        
        body * {
            cursor: auto !important;
        }

        #cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
        }

        #cursor-follower {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10001;
            transition: all 0.15s ease;
            transform: translate(-50%, -50%);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            animation: slideDown 0.8s ease;
            border-bottom: 1px solid rgba(147, 51, 234, 0.1);
        }

        body.modal-open {
            overflow: hidden;
        }


        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
        }

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

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

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

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

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 5%;
            background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease 0.3s both;
        }

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

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
            color: var(--text);
            letter-spacing: -0.03em;
        }

        .hero-text h1 .accent {
            color: var(--accent);
            display: block;
            font-style: italic;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.8;
        }

        .project-modal {
            position: fixed;
            inset: 0;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9998;
            padding: 16px;
        }
        
        .project-modal.show {
            display: flex;
        }
        
        .project-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(4px);
        }
        
        .project-modal-content {
            position: relative;
            z-index: 1;
            width: min(90vw, 960px);   /* large on desktop */
            max-height: 90vh;          /* keep inside viewport */
            background: #020617;
            color: #e5e7eb;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
            display: flex;
            flex-direction: column;
        }
        
        .project-modal-body {
            padding: 20px;
            overflow-y: auto;          /* scroll text on small screens */
            flex: 1 1 auto;
            min-height: 0;
        }
        
        .project-modal-body h2 {
            font-size: 1.75rem;
            margin: 0;
        }
        
        .project-modal-body p {
            margin: 0;
            line-height: 1.5;
        }
        
        .project-modal-video-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 8px;
        }
        
        .project-modal-video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .project-modal-close {
            position: absolute;
            top: 10px;
            right: 14px;
            z-index: 2;
            background: rgba(15, 23, 42, 0.8);
            border: none;
            color: #fff;
            font-size: 28px;
            line-height: 1;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            cursor: pointer;
        }



        .cta-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: none;
            display: inline-block;
            text-align: center;
            line-height: 1.2;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--text);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        .hero-image {
            position: relative;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(147, 51, 234, 0.3);
            transition: transform 0.5s ease;
            border: 2px solid rgba(147, 51, 234, 0.2);
        }

        .image-container:hover {
            transform: scale(1.02) rotate(-1deg);
            box-shadow: 0 30px 60px rgba(147, 51, 234, 0.5);
        }

        .image-container img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .floating-badge {
            position: absolute;
            background: var(--card-bg);
            padding: 1.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
            animation: float 3s ease-in-out infinite;
            border: 2px solid rgba(147, 51, 234, 0.3);
        }

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

        .badge-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 10%;
            right: -10%;
            animation-delay: 1s;
        }

        .floating-badge h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }

        .floating-badge p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background: var(--cream);
            position: relative;
        }

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

        .section-label {
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--text);
        }

        .about-text p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

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

        .skill-card {
            background: var(--card-bg);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(147, 51, 234, 0.2);
            transition: all 0.3s ease;
            border: 3px solid rgba(147, 51, 234, 0.2);
        }

        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
            border-color: var(--accent);
        }

        .skill-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .skill-card p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* Projects Section */
        .projects {
            padding: 8rem 5%;
            background: var(--secondary);
        }

        .projects-header {
            max-width: 1400px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        .projects-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.0rem;
        }

        .projects-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 10px 40px rgba(147, 51, 234, 0.2);
            transition: all 0.4s ease;
            cursor: none;
            border: 1px solid rgba(147, 51, 234, 0.2);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
            border-color: var(--accent);
        }

        /* project images */
        
        .project-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

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

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(147, 51, 234, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .view-project {
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.9rem;
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-category {
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .project-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .project-info p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

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

        .tag {
            padding: 0.4rem 1rem;
            background: rgba(147, 51, 234, 0.2);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-light);
            border: 1px solid rgba(147, 51, 234, 0.3);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 5%;
            background: var(--primary);
            color: white;
        }

        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .contact-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-item {
            text-align: center;
        }

        .contact-item h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .contact-item a {
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent);
        }

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

        .social-link {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(147, 51, 234, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            border-color: var(--accent);
            background: var(--accent);
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            padding: 2rem 5%;
            background: var(--primary);
            border-top: 1px solid rgba(147, 51, 234, 0.2);
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-text h1 {
                font-size: 4rem;
            }

            .nav-links {
                gap: 1.5rem;
            }

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

            .contact-info {
                flex-direction: column;
                gap: 2rem;
            }

            .badge-1,
            .badge-2 {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .about-text h2,
            .projects-header h2 {
                font-size: 2.5rem;
            }

            .contact-content h2 {
                font-size: 3rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

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

        .video-modal {
            position: fixed;
            inset: 0;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 16px;
        }



        .video-modal.show {
            display: flex;
        }
        
        .video-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(4px);
        }
        
        .video-modal-content {
            position: relative;
            z-index: 1;
            width: min(90vw, 960px);   /* big on desktop, shrink on small */
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
        }

        /* Make iframe fill the box */
        .video-wrapper {
            width: 100%;
            height: 100%;
        }


        
        #videoFrame {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .video-close {
            position: absolute;
            top: 10px;
            right: 14px;
            z-index: 2;
            background: rgba(15, 23, 42, 0.8);
            border: none;
            color: #fff;
            font-size: 28px;
            line-height: 1;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            cursor: pointer;
        }

        .other-projects h2 {
            padding: 3rem 0;
            text-align: center;
            font-size: 2.5rem;   /* or whatever size your “What people are saying” uses */
        }
        
        .other-projects-track {
            display: flex;
            gap: 1.0rem;
            overflow-x: auto;
            /*scroll-snap-type: x proximity;*/
            scroll-behavior: smooth;
            padding: 1rem 0;
            -webkit-overflow-scrolling: touch;
            
            /* hide scrollbar, keep scrolling */
            scrollbar-width: none;          /* Firefox */
            -ms-overflow-style: none;       /* IE/Edge legacy */
        }
        
        .other-projects-track::-webkit-scrollbar {
            display: none;                  /* Chrome, Safari, new Edge */
        }

        .other-project-card {
            min-width: 200px;
            flex: 0 0 auto;
            /*scroll-snap-align: start;*/
            background: #111;
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            border: 3px solid rgba(147, 51, 234, 0.2);
        }

        .other-project-card {
            /* existing styles... */
            box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.4);
        }

        .other-project-image {
            width: 100%;
            display: block;
            border-radius: 8px;
            margin-bottom: 0.5rem;
            object-fit: cover;
        }

        .other-projects-track {
            cursor: grab;
            -webkit-user-select: none; /* Safari */
            -ms-user-select: none;     /* IE/Edge */
            user-select: none;         /* Standard */
        }
        
        .other-projects-track.is-dragging {
            cursor: grabbing;
        }

        .other-projects-track img {
            -webkit-user-drag: none;
            user-drag: none;
        }

        .other-projects-wrapper {
            position: relative;
        }
        
        /* Arrow buttons */
        .other-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.4);
            color: #da31f4;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            backdrop-filter: blur(2px);
        }
        
        .other-arrow--left {
            left: 0.5rem;
        }
        
        .other-arrow--right {
            right: 0.5rem;
        }
        
        .other-arrow:hover {
            background: rgba(0, 0, 0, 0.65);
        }


        .testimonials {
            padding: 6rem 1.5rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonials-header .section-label {
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 0.8rem;
            color: #a855f7;
            margin-bottom: 0.5rem;
        }
        
        .testimonials-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.3rem);
            margin-bottom: 0.75rem;
        }
        
        .testimonials-header p {
            color: #9ca3af;
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }
        
        .testimonial-carousel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-track {
            overflow: hidden;
            max-width: 700px;
        }
        
        .testimonial-slide {
            display: none;
            padding: 2.5rem 2rem;
            background: #020617;
            border-radius: 18px;
            border: 1px solid rgba(148, 163, 184, 0.3);
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
        }
        
        .testimonial-slide.active {
            display: block;
        }
        
        .testimonial-quote {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #e5e7eb;
            margin-bottom: 1.25rem;
        }
        
        .testimonial-author {
            font-size: 0.95rem;
            color: #a5b4fc;
        }
        
        .testimonial-nav {
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.6);
            color: #e5e7eb;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 0.75rem;
            transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }
        
        .testimonial-nav:hover {
            background: #a855f7;
            border-color: #a855f7;
            transform: translateY(-1px);
        }
        
        .testimonial-nav:focus-visible {
            outline: 2px solid #a855f7;
            outline-offset: 2px;
        }
        
        @media (max-width: 640px) {
            .testimonials {
                padding: 4rem 1.25rem;
            }
            .testimonial-slide {
                padding: 1.75rem 1.5rem;
            }
            .testimonial-nav {
                position: static;
            }
        }

        .skill-card {
            display: flex;
            align-items: center;
            justify-content: center;
            /* keep your existing background, padding, border-radius, etc. */
        }
        
        .skill-icon {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(90vw, 960px);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.video-modal__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-modal__iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.8);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}


        </style>

        <script data-goatcounter="https://proximityfilms.goatcounter.com/count"
        async src="//gc.zgo.at/count.js">
        </script>

