:root {
            --primary: #0d6efd;
            --primary-dark: #0b5ed7;
            --accent: #fd7e14;
            --accent-dark: #e96c0c;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --success: #198754;
            --danger: #dc3545;
            --warning: #ffc107;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .logo-icon {
            display: inline-flex;
            align-items: end;
            gap: 2px;
            width: 32px;
            height: 32px;
        }
        
        .logo-bar {
            width: 28%;
            height: 100%;
            background-color: white;
            border-radius: 2px;
        }
        
        .logo-bar-short {
            width: 28%;
            height: 60%;
            background-color: white;
            border-radius: 2px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            padding-top: 120px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .hero-bg-1 {
            top: 80px;
            right: 40px;
            width: 288px;
            height: 288px;
            background-color: var(--primary);
        }
        
        .hero-bg-2 {
            bottom: 80px;
            left: 40px;
            width: 384px;
            height: 384px;
            background-color: var(--accent);
        }
        
        .hero-bg-3 {
            top: -24px;
            right: -24px;
            width: 96px;
            height: 96px;
            background-color: var(--accent);
        }
        
        .hero-bg-4 {
            bottom: -24px;
            left: -24px;
            width: 128px;
            height: 128px;
            background-color: var(--primary);
        }
        
        .feature-card {
            border: 2px solid #dee2e6;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .feature-card.live {
            border-color: var(--primary);
        }
        
        .feature-card.coming-soon {
            opacity: 0.7;
        }
        
        .live-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background-color: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 10;
        }
        
        .coming-soon-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background-color: var(--gray);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 10;
        }
        
        .benefit-box {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 16px;
            color: var(--accent);
        }
        
        .stat-box {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            border: 2px solid #dee2e6;
            height: 100%;
        }
        
        .stat-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .use-case-card {
            background-color: white;
            border-radius: 12px;
            padding: 32px;
            border: 2px solid #dee2e6;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .use-case-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .use-case-icon {
            width: 56px;
            height: 56px;
            background-color: rgba(13, 110, 253, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        
        .use-case-icon i {
            font-size: 1.75rem;
            color: var(--primary);
        }
        
        .solution-box {
            background-color: white;
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        
        .solution-box:hover {
            background-color: rgba(255,255,255,0.1);
			color:white !important;
        }
        
        .solution-icon {
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(253, 126, 20, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
        }
        
        .step-number i {
            font-size: 2.5rem;
            color: var(--accent);
        }
        
        .step-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--accent);
            color: white;
            font-size: 0.875rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-connector {
            position: absolute;
            top: 40px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: linear-gradient(to right, rgba(253, 126, 20, 0.5), transparent);
        }
        
        .waitlist-form {
            background-color: white;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            padding: 32px;
        }
        
        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .demo-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(0,0,0,0.1);
            background-color: white;
            border: 2px solid rgba(13, 110, 253, 0.1);
            transition: transform 0.5s;
        }
        
        .demo-card:hover {
            transform: scale(1.05);
        }
        
        .demo-header {
            background-color: #f8fafc;
            padding: 16px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .demo-window-controls {
            display: flex;
            gap: 6px;
        }
        
        .demo-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .demo-control.red {
            background-color: #ef4444;
        }
        
        .demo-control.yellow {
            background-color: #eab308;
        }
        
        .demo-control.green {
            background-color: #22c55e;
        }
        
        .demo-url-bar {
            flex: 1;
            background-color: white;
            border-radius: 4px;
            padding: 4px 8px;
            font-size: 0.625rem;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .demo-content {
            padding: 16px;
        }
        
        .order-card {
            border: 2px solid;
            border-radius: 8px;
            padding: 12px;
            background-color: white;
            margin-bottom: 12px;
        }
        
        .order-card.yellow {
            border-color: #fef08a;
        }
        
        .order-card.green {
            border-color: #bbf7d0;
        }
        
        .order-card.red {
            border-color: #fecaca;
        }
        
        .order-status {
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        
        .status-progress {
            background-color: #eab308;
            color: white;
        }
        
        .status-delivered {
            background-color: #22c55e;
            color: white;
        }
        
        .status-canceled {
            background-color: #ef4444;
            color: white;
        }
        
        .menu-item-card {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            background-color: white;
            transition: box-shadow 0.3s;
        }
        
        .menu-item-card:hover {
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .menu-item-emoji {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .chart-container {
            position: relative;
            height: 200px;
        }
        
        .chart-y-axis {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-size: 0.5rem;
            color: #6b7280;
            padding-right: 4px;
        }
        
        .chart-grid {
            position: absolute;
            left: 16px;
            right: 0;
            top: 0;
            bottom: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .chart-grid-line {
            border-top: 1px solid #e5e7eb;
        }
        
        .chart-area {
            position: absolute;
            left: 16px;
            right: 0;
            top: 0;
            bottom: 24px;
        }
        
        .chart-x-axis {
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 0;
            display: flex;
            justify-content: space-between;
            font-size: 0.5rem;
            color: #6b7280;
        }
        
        @media (max-width: 768px) {
            .step-connector {
                display: none;
            }
            
            .hero-section {
                padding-top: 100px;
                padding-bottom: 60px;
            }
            
            .hero-bg-1, .hero-bg-2 {
                display: none;
            }
        }
.fw-medium, .form-check-label{
color:black !important;
}

.waitlist-form .fw-medium, .risk-free .fw-medium:hover{
color:black !important;
}