body {
            font-family: 'PP Neue Montreal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated background */
        .bg-animated {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            position: relative;
        }

        .bg-animated::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(175, 0, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(175, 0, 0, 0.05) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.8; }
        }

        /* Navigation */
        .navbar-custom {
            background: rgba(26, 26, 26, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(175, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--light-text) !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            color: var(--light-text) !important;
            transform: scale(1.05);
        }

        .brand-text {
            color: var(--light-text) !important;
            font-weight: 800;
        }

        .brand-icon {
            transition: transform 0.3s ease;
        }

		.navbar-brand .brand-icon img {
			height: 4vh; 
        }

        .navbar-brand:hover .brand-icon img {
            transform: scale(1.1);
        }

        .navbar-nav {
            align-items: center;
        }

        .nav-link {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            color: var(--gray-text) !important;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            margin: 0 1.2rem;
            padding: 0.5rem 0 !important;
            font-size: 1.1rem;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-red), #d40000);
            border-radius: 1px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .nav-link:hover::before,
        .nav-link.active::before {
            transform: translateX(-50%) scaleX(1);
        }

        .btn-outline-primary {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            border-color: var(--primary-red) !important;
            color: var(--primary-red) !important;
            background: transparent !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-width: 2px;
            font-weight: 600;
            border-radius: 25px;
        }

        .btn-outline-primary:hover,
        .btn-outline-primary:focus,
        .btn-outline-primary:active {
            background: var(--primary-red) !important;
            border-color: var(--primary-red) !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(175, 0, 0, 0.3);
        }

        .btn-primary {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--primary-red), #d40000) !important;
            border: 2px solid var(--primary-red) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 600;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(175, 0, 0, 0.2);
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: linear-gradient(135deg, #d40000, var(--primary-red)) !important;
            border-color: #d40000 !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(175, 0, 0, 0.4);
        }

        .navbar-toggler {
            border: none !important;
            padding: 0.25rem 0.5rem;
            background: transparent;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
        }

        .navbar-toggler:hover {
            background: rgba(175, 0, 0, 0.1);
            border-radius: 5px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            transition: all 0.3s ease;
        }

        /* Mobile navbar improvements */
        @media (max-width: 991.98px) {
            .navbar-nav {
                text-align: center;
                padding: 1rem 0;
                background: rgba(26, 26, 26, 0.98);
                margin: 0.5rem -1rem;
                border-radius: 10px;
            }
            
            .nav-link {
                margin: 0.25rem 0;
                font-size: 1rem;
                padding: 0.75rem 0 !important;
            }
            
            .d-flex.align-items-center {
                justify-content: center;
/*                margin-top: 1rem;*/
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .btn-sm {
                padding: 0.5rem 1.5rem !important;
                font-size: 0.9rem;
            }
            
            .navbar-collapse {
                background: transparent;
                padding: 0.5rem 0;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
            padding-top: 100px;
        }

        .hero h1 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--light-text) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero p {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--gray-text);
            margin-bottom: 2.5rem;
            max-width: 600px;
            line-height: 1.7;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .btn-ai {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
            border: none;
            padding: 18px 45px;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(175, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-ai::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

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

        .btn-ai:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(175, 0, 0, 0.4);
        }

        .btn-outline-light {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            border: 2px solid rgba(255,255,255,0.3) !important;
            color: var(--light-text) !important;
            background: transparent !important;
            padding: 16px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-outline-light:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: var(--primary-red) !important;
            color: var(--primary-red) !important;
            transform: translateY(-3px);
        }

        /* Cards */
        .ai-card {
            background: var(--card-bg);
            border: 1px solid rgba(175, 0, 0, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            height: 100%;
        }

        .ai-card:hover {
            transform: translateY(-10px);
            border-color: rgba(175, 0, 0, 0.3);
            box-shadow: 0 20px 60px rgba(175, 0, 0, 0.1);
        }

        .ai-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
        }

        .ai-card h3 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .ai-card p {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
        }

        .features h2 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        .features .lead {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

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

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
            padding: 80px 0;
            position: relative;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* About Section */
        #about h2 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        #about p {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 60px 0 40px;
            border-top: 1px solid rgba(175, 0, 0, 0.1);
        }

        .footer h3,
        .footer h5 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        .footer p,
        .footer a {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards;
        }

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

        .fade-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-up:nth-child(3) { animation-delay: 0.3s; }
        .fade-up:nth-child(4) { animation-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding-top: 80px;
                min-height: 90vh;
            }
            
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .btn-ai {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .btn-outline-light {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .ai-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .ai-card i {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            
            .features {
                padding: 60px 0;
            }
            
            .stats {
                padding: 60px 0;
            }
            
            .stat-item {
                padding: 1rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }
        }

        @media (max-width: 576px) {
            .container-fluid {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .d-flex.gap-3.flex-wrap {
                flex-direction: column;
                gap: 1rem !important;
                align-items: center;
            }
            
            .btn-ai,
            .btn-outline-light {
                width: 100%;
                max-width: 250px;
                padding: 12px 20px;
            }
			
			.navbar-brand .brand-icon img {
				height: 4vh; 
        	}
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .ai-card {
                padding: 1.25rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            #about .display-5 {
                font-size: 2rem;
            }
            
            .footer {
                padding: 40px 0 30px;
            }
            
            .footer .col-lg-4,
            .footer .col-lg-2 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                text-align: center;
            }
            
            .hero .col-lg-6:last-child {
                display: none;
            }
            
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .glitch::before,
            .glitch::after {
                display: none;
            }
        }

        /* Glitch effect for AI theme */
        .glitch {
            position: relative;
            display: inline-block;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 2s infinite;
            color: var(--primary-red);
            z-index: -1;
        }

        .glitch::after {
            animation: glitch-2 2s infinite;
            color: #00ff00;
            z-index: -2;
        }

        @keyframes glitch-1 {
            0%, 14%, 15%, 49%, 50%, 99%, 100% {
                transform: translate(0);
            }
            15%, 49% {
                transform: translate(-2px, -1px);
            }
        }

        @keyframes glitch-2 {
            0%, 20%, 21%, 62%, 63%, 99%, 100% {
                transform: translate(0);
            }
            21%, 62% {
                transform: translate(2px, 1px);
            }
        }


/* Language Toggle Styles */
        .language-toggle {
            background: rgba(175, 0, 0, 0.1);
            border: 1px solid rgba(175, 0, 0, 0.2);
            border-radius: 25px;
            overflow: hidden;
            display: flex;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .language-toggle:hover {
            border-color: rgba(175, 0, 0, 0.4);
            box-shadow: 0 4px 15px rgba(175, 0, 0, 0.1);
        }

        .language-toggle .lang-btn {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            background: transparent;
            border: none;
            color: var(--gray-text);
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .language-toggle .lang-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(175, 0, 0, 0.1), transparent);
            transition: left 0.5s;
        }

        .language-toggle .lang-btn:hover {
            color: var(--light-text);
            background: rgba(175, 0, 0, 0.1);
        }

        .language-toggle .lang-btn:hover::before {
            left: 100%;
        }

        .language-toggle .lang-btn.active {
            background: linear-gradient(135deg, var(--primary-red), #d40000);
            color: var(--light-text);
            box-shadow: 0 2px 8px rgba(175, 0, 0, 0.3);
        }

        .language-toggle .lang-btn.active::before {
            display: none;
        }

        /* Demo styles */
        body {
            font-family: 'PP Neue Montreal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }

        .demo-content {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
        }

        .demo-content h2 {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            font-weight: 700;
            background: linear-gradient(135deg, var(--light-text) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .demo-content p {
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
            color: var(--gray-text);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .current-lang {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-red), #d40000);
            color: var(--light-text);
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(175, 0, 0, 0.3);
            font-family: 'PP Neue Montreal', 'Inter', sans-serif;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 991px) {
            .language-toggle {
                margin: 0.5rem 0;
            }
            
            .language-toggle .lang-btn {
                padding: 6px 12px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .language-toggle {
                order: 1;
                margin-bottom: 1rem;
            }
            
            .d-flex.align-items-center.gap-2 {
                flex-direction: column;
                gap: 1rem !important;
            }
        }