
        :root {
            --bg-dark: #030303;
            --bg-darker: #000000;
            --bg-card: #141416;
            --text-primary: #f5f5f6;
            --text-secondary: #9a9b9f;
            --accent: #1a1a1c;
            --gold: #c9a063;
            --gold-light: #e4c9a0;
            --gold-dark: #a07847;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            /* For smooth scrolling */
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg-dark);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
            -webkit-font-smoothing: antialiased;
        }

            .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: #ffffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10003;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                        0 0 40px rgba(255, 255, 255, 0.4);
            transition: opacity 0.3s;
        }

        /* Outer Circle */
        .cursor-outline {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.473);
            border-radius: 50%;
            pointer-events: none;
            z-index:2;
            transform: translate(-50%, -50%);
            transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.3s;
        }

        .cursor-outline.expand {
            width: 60px;
            height: 60px;
            border-color: rgba(255, 255, 255, 0.8);
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-darker);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(201, 160, 99, 0.2);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

         /* Animated Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: var(--gold);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--gold-light);
            bottom: 20%;
            right: 15%;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: var(--gold-dark);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 30px) scale(0.9); }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 11, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201, 160, 99, 0.1);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            padding: 1rem 5%;
            background: rgba(0, 0, 0, 0.452);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.8rem;
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            text-decoration: none; /* Added for home link */
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 3rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s ease;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 160, 99, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 8rem 5%;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        /* About Section */
        .about-section {
            background: var(--bg-darker);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 8px;
        }

        .about-text h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--gold);
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--bg-card);
            border-radius: 8px;
            border: 1px solid rgba(201, 160, 99, 0.2);
            transition: all 0.4s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .skill-card {
            background: var(--bg-card);
            padding: 3rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(201, 160, 99, 0.15);
            transition: all 0.4s ease;
            text-align: center;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(201, 160, 99, 0.2);
        }

        .skill-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--bg-dark);
        }

        .skill-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .skill-card p {
            color: var(--text-secondary);
        }

        /* Services Section */
        .services-section {
            background: var(--bg-darker);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-card);
            padding: 3rem;
            border-radius: 12px;
            border: 2px solid rgba(201, 160, 99, 0.2);
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--bg-dark);
        }

        .service-card h4 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-secondary);
        }

          .service-card.featured {
            border-color: var(--gold);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
        }

        /* Reels */
        .reel-showcase {
            background: var(--bg-dark);
        }

        .reel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .reel-item {
            position: relative;
            aspect-ratio: 9/16;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid rgba(201, 160, 99, 0.2);
            transition: all 0.4s ease;
        }

        .reel-item:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .reel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
        }

        .reel-overlay h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .reel-overlay p {
            color: var(--text-secondary);
        }

        /* Testimonials */
        .testimonials-section {
            background: var(--bg-darker);
        }

        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-card {
            padding: 4rem;
            background: var(--bg-card);
            border-radius: 16px;
            border: 2px solid rgba(201, 160, 99, 0.2);
            text-align: center;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--gold);
        }

        .testimonial-role {
            color: var(--text-secondary);
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            background: transparent;
            color: var(--gold);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: var(--gold);
            color: var(--bg-dark);
        }

        .dots {
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(201, 160, 99, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
            width: 40px;
            border-radius: 6px;
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg-dark);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--gold);
        }

        .contact-info p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-card);
            border-radius: 8px;
            border: 1px solid rgba(201, 160, 99, 0.2);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .contact-form {
            background: var(--bg-card);
            padding: 3rem;
            border-radius: 16px;
            border: 2px solid rgba(201, 160, 99, 0.2);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            background: var(--bg-dark);
            border: 2px solid rgba(201, 160, 99, 0.2);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: var(--font-body);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.3rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 160, 99, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--bg-dark);
        }

     /* Footer */
    .footer {
        background: var(--bg-darker);
        padding: 3rem 5%;
        text-align: center;
        border-top: 1px solid rgba(201, 160, 99, 0.2);
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.3px;
    }

    .footer p {
        color: var(--text-secondary);
        margin: 0.3rem 0;
        font-size: 0.95rem;
    }

    .footer span {
        color: var(--gold);
        font-weight: 500;
    }

    .footer-credit {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Developer Name Styling */
    .dev-name {
        font-size: 18px;
        background: linear-gradient(90deg, #ffa339, #ff0101);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
        position: relative;
        cursor: pointer;
        animation: shimmer 3s infinite linear;
    }

    @keyframes shimmer {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }

    .dev-name:hover {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
        transform: scale(1.05);
        transition: all 0.3s ease;
    }

        /* --- NEW VIDEO MODAL STYLES --- */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            z-index: 10002; /* On top of everything */
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
            visibility: visible;
        }

        .video-modal video {
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            border-radius: 8px;
            border: 2px solid var(--gold);
        }

        .close-modal {
            position: absolute;
            top: 2rem;
            right: 3rem;
            font-size: 3rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--text-primary);
        }
        /* --- END NEW VIDEO MODAL STYLES --- */


        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            section {
                padding: 5rem 5%;
            }

            .close-modal {
                top: 1rem;
                right: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .reel-grid,
            .skills-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            /* Hide cursor on mobile for better UX */
            .cursor-dot, .cursor-outline {
                display: none;
            }

            body {
                cursor: auto; /* Show default cursor */
            }

            .contact-form{
                display: none;
            }
        }
 