@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;display=swap');

         body {
            box-sizing: border-box;
        }
        [data-item="dark"]{
            display: none;
        }
        [data-theme="dark"] [data-item="dark"]{
            display: block;
        }
         [data-theme="dark"] [data-item="light"]{
            display: none;
        }
        a{
            color: inherit;
            text-decoration: none;
        }
        a:hover{
            color: inherit;
            text-decoration: none;
        }
        .error{
            color:rgb(177 0 0);
        } 
        /* Preloader Styles */
       .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-content {
            text-align: center;
            position: relative;
        }
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
        }
        
        .back-to-top:active {
            transform: translateY(-2px) scale(1.05);
        }
        
        /* Dark mode adjustments for preloader */
        [data-theme="dark"] .preloader {
            background: var(--bg-dark);
        }
        
        :root {
            --primary-color: #6366F1;
            --accent-color: #22D3EE;
            --text-color: #1E293B;
            --bg-light: #F8FAFC;
            --bg-dark: #0F172A;
            --cta-color: #8B5CF6;
            --card-bg: #FFFFFF;
            --border-color: #E2E8F0;
        }
        
        [data-theme="dark"] {
            --text-color: #F1F5F9;
            --bg-light: #0F172A;
            --card-bg: #1E293B;
            --border-color: #334155;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-color);
            transition: all 0.3s ease;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .navbar-custom {
            background: rgba(15, 23, 42, 0.95);
        }
        @media(max-width:991px){
            [data-theme="dark"] .offcanvas {
                background: rgba(15, 23, 42, 0.95);
            }
              
        .offcanvas{
            min-height: 100vh;
            z-index: 999999;
        }
        }
        
        .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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        [data-theme="dark"] .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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-item.active .nav-link{
            color: var(--primary-color) !important;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .theme-toggle {
            background: var(--primary-color);
            border: none;
            border-radius: 50px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            background: var(--cta-color);
            transform: scale(1.1);
        }
        .text-color{
            color: var(--text-color);
        }
        
        /* Hero Section */
         .hero-section {
            min-height: 500px;
            background: black;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px; 
        }
        .hero-section::after{
             display: none;
        }
        @media(min-width:768px){
             .hero-section, .hero-content {
                min-height: 760px !important; 
             } 
             .hero-section::after{
                    content: '';
                    background: url('../../assets/images/banner-img.png')no-repeat;
                    background-position: bottom center;
                    background-size: contain;
                    width: 350px;
                    min-height: 350px;
                    position: absolute;
                    right: 15px;
                    bottom: 0;
                    z-index: 1;
                    display: unset;
                }
        }
         @media(min-width:1270px){
            .hero-section::after{
                width: 500px;
                min-height: 600px;
            }
        }

        @media(min-width:1500px){
            .hero-section::after{
                width: 700px;
                min-height: 800px;
            }
        }
        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            z-index: 1;
        } 
        .hero-content {
            position: relative;
            z-index: 2;
            width: 700px; 
            max-width: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: center;
        }
             
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
            color: white;
        }
        
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary-color);
            padding: 13px 28px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-secondary-custom:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Feature Cards */
        .feature-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        
        .feature-description {
            color: var(--text-color);
            opacity: 0.8;
            line-height: 1.6;
        }
        
        /* How It Works */
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-arrow {
            position: absolute;
            top: 40px;
            right: -50px;
            color: var(--accent-color);
            font-size: 2rem;
            z-index: 1;
        }
        
        /* Use Cases */
        .use-case-card { 
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 300px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .use-case-card:hover {
            transform: scale(1.05);
        }
        .use-case-card.u-c-1{
            background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(31, 31, 31, 0.3)), url('../../assets/images/store.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
        }
        .use-case-card.u-c-2{
           background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(31, 31, 31, 0.3)), url('../../assets/images/store2.jpg');
            background-size: cover;
            background-position: center center;
        }
        .use-case-card.u-c-3{
            background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(31, 31, 31, 0.3)), url('../../assets/images/brain.jpg');
            background-size: cover;
            background-position: center center;
        }
        .use-case-card.u-c-4{
            background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(31, 31, 31, 0.3)), url('../../assets/images/finance.jpg');
            background-size: cover;
            background-position: center center;
        }
        
        .use-case-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        
        .use-case-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem;
            color: white;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-color);
            opacity: 0.9;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Pricing */
        .pricing-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
        }
        
        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--text-color);
        }
        
        .pricing-features .fa-check {
            color: #10B981;
            margin-right: 0.5rem;
        }
        
        .pricing-features .fa-xmark {
            color: #EF4444;
            margin-right: 0.5rem;
        }
        
        /* Contact Form */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
            position: relative;
            overflow: hidden;
        }
        
        .contact-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(circle, white 1px, transparent 1px);
            background-size: 50px 50px;
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .contact-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .form-control-custom {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 15px;
            color: white;
            backdrop-filter: blur(10px);
        }
        
        .form-control-custom::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-control-custom:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
            color: white;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-dark);
            color: #94A3B8;
            padding: 3rem 0 1rem;
        }
        
        .footer-logo {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--cta-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }
        
        /* Section Spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-arrow {
                display: none;
            }
            
            .pricing-card.featured {
                transform: none;
                /* margin-top: 2rem; */
            }
            
            .contact-title {
                font-size: 2rem;
            }
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        .alertmsg{
            z-index: 9999;
        }
        .btn-close{
            background:unset;
        }