
        :root {
            --primary-gradient: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
            --secondary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
            --dark-bg: #0f172a;
            --card-bg: #1e293b;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border-color: #334155;
            --success-color: #10b981;
            --warning-color: #f59e0b;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header */
        .navbar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
        }

        /* Hero Section */
        .hero-section {
            background: var(--dark-bg);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-button {
            background: var(--primary-gradient);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        }

        /* Project Creation Flow */
        .project-flow {
            padding: 4rem 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, #1e293b 100%);
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .step-circle.active {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        }

        .step-circle.completed {
            background: var(--success-color);
            color: white;
        }

        .step-circle.pending {
            background: var(--card-bg);
            color: var(--text-secondary);
            border: 2px solid var(--border-color);
        }

        .step-line {
            position: absolute;
            top: 30px;
            height: 2px;
            background: var(--border-color);
            z-index: 1;
        }

        .step-line.completed {
            background: var(--success-color);
        }

        .step-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 0.5rem;
        }

        .step-title.active {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Cards */
        .glass-card {
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }

        /* Form Elements */
        .form-control {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(15, 23, 42, 0.9);
            border-color: #2563eb;
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .form-label {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Buttons */
        .btn-primary {
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-outline-primary {
            border: 2px solid #2563eb;
            color: #2563eb;
            background: transparent;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

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

        /* Tables */
        .table-dark {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .table-dark th {
            background: rgba(37, 99, 235, 0.1);
            border-color: var(--border-color);
            color: var(--text-primary);
            font-weight: 600;
        }

        .table-dark td {
            border-color: var(--border-color);
            color: var(--text-secondary);
        }

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .step-indicator {
                flex-direction: column;
                gap: 1rem;
            }
            
            .step-line {
                display: none;
            }
            
            .glass-card {
                padding: 1.5rem;
            }
        }

        /* Status indicators */
        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-badge.success {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-color);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .status-badge.warning {
            background: rgba(245, 158, 11, 0.2);
            color: var(--warning-color);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        /* Enhanced animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

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

        .slide-in-right {
            animation: slideInRight 0.6s ease-out;
        }

        /* Enhanced glass card effects */
        .glass-card {
            position: relative;
            overflow: hidden;
        }

        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .glass-card:hover::after {
            left: 100%;
        }

        /* Progress bar styling */
        .progress {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            height: 8px;
            overflow: hidden;
        }

        .progress-bar {
            background: var(--primary-gradient);
            border-radius: 10px;
            transition: width 0.3s ease;
        }

        /* Enhanced button styles */
        .btn {
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Loading spinner */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Dashboard Carousel Styles */
        .dashboard-carousel {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            height: 500px; /* Increased height to show full content */
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .screenshot-frame {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .screenshot-header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .screenshot-dots {
            display: flex;
            gap: 6px;
        }

        .screenshot-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ef4444;
        }

        .screenshot-dots span:nth-child(2) {
            background: #f59e0b;
        }

        .screenshot-dots span:nth-child(3) {
            background: #10b981;
        }

        .screenshot-title {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .screenshot-content {
            padding: 20px;
            height: 440px; /* Increased height to match new container */
            overflow-y: auto; /* Allow scrolling if content is too long */
        }

        .mock-dashboard {
            background: var(--dark-bg);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            overflow-y: auto; /* Allow scrolling if content is too long */
        }

        /* Adjust spacing for better content display */
        .stepper-preview {
            margin-bottom: 25px;
        }

        .form-preview {
            gap: 20px;
        }

        .table-preview {
            gap: 20px;
        }

        .roles-preview {
            gap: 20px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .dashboard-header h3 {
            color: var(--text-primary);
            font-size: 1.2rem;
            margin: 0;
        }

        .tab-group {
            display: flex;
            gap: 10px;
        }

        .tab {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(37, 99, 235, 0.1);
            color: var(--text-secondary);
        }

        .tab.active {
            background: var(--primary-gradient);
            color: white;
        }

        .ai-button {
            background: var(--secondary-gradient);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ai-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
        }

        .stepper-preview {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .step-item:not(.active) .step-number {
            background: var(--card-bg);
            color: var(--text-secondary);
        }

        .step-item span {
            font-size: 0.7rem;
            color: var(--text-secondary);
            text-align: center;
        }

        .form-preview {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .input-field {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .input-field label {
            color: var(--text-primary);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .input-field input,
        .input-field textarea {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px;
            color: var(--text-primary);
            font-size: 0.8rem;
        }

        .input-field textarea {
            height: 80px; /* Increased height for better visibility */
            resize: none;
        }

        /* Improve content spacing */
        .dashboard-header {
            margin-bottom: 25px; /* Increased spacing */
        }

        .table-item {
            padding: 20px; /* Increased padding */
        }

        .role-card {
            padding: 20px; /* Increased padding */
        }

        .table-preview {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .table-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .table-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-gradient);
            border-radius: 10px;
        }

        .table-info h4 {
            color: var(--text-primary);
            margin: 0 0 5px 0;
            font-size: 0.9rem;
        }

        .table-info p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.7rem;
        }

        .roles-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .role-card {
            background: rgba(30, 41, 59, 0.5);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .role-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .role-card h4 {
            color: var(--text-primary);
            margin: 0 0 10px 0;
            font-size: 0.8rem;
        }

        .permissions {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .perm {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-color);
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.6rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .carousel-btn {
            background: var(--primary-gradient);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .carousel-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        .carousel-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-gradient);
            transform: scale(1.2);
        }

        /* Responsive improvements */
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .step-indicator {
                gap: 0.5rem;
            }
            
            .step-circle {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            
            .glass-card {
                padding: 1rem;
            }

            .dashboard-carousel {
                max-width: 100%;
            }

            .carousel-container {
                height: 450px; /* Increased for mobile to show more content */
            }

            .screenshot-content {
                height: 390px; /* Adjust for mobile */
            }

            .stepper-preview {
                gap: 10px;
            }

            .roles-preview {
                grid-template-columns: 1fr;
            }
        }
    