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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #ffffff;
            color: rgb(40, 20, 80);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: transparent;
            backdrop-filter: none;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            transition: color 0.3s ease;
        }

        nav.scrolled .logo {
            color: rgb(60, 30, 120);
        }

        nav.scrolled .logo span {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 6px 15px rgba(255, 160, 50, 0.4);
            transition: background 0.3s ease;
        }

        nav.scrolled .logo-icon {
            background: linear-gradient(135deg, rgb(160, 110, 235), rgb(110, 150, 255));
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav.scrolled .nav-links a {
            color: rgb(40, 20, 80);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        nav.scrolled .nav-links a:hover,
        nav.scrolled .nav-links a.active {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #fff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        nav.scrolled .menu-toggle span {
            background: #1a202c;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 5% 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        #bg-video {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero .cta-button {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 15px rgba(160, 110, 235, 0.3);
            text-decoration: none;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: #ffffff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .hero-title .highlight {
            color: #fbbf24;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .hero-tagline {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.4;
            color: #ffffff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .hero-description {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .cta-button {
            background: linear-gradient(135deg, rgb(160, 110, 235), rgb(110, 150, 255));;
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 15px rgba(160, 110, 235, 0.3);
        }

        .cta-button:hover {
        transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(160, 110, 235, 0.4);
        }

        /* Section Styling */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 5%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: rgb(60, 30, 120);
            font-weight: 800;
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 4rem;
            color: rgb(40, 20, 80);
        }

        /* About Section */
        .about-section {
            background: #ffffff;
        }

        .about-content {
            margin-bottom: 4rem;
        }

        .about-text {
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: rgb(60, 30, 120);
            font-weight: 700;
            text-align: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
            color: rgb(40, 20, 80);
            text-align: center;
        }

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

        .stat-box {
            background: linear-gradient(135deg, rgba(210, 170, 250, 0.8), rgba(170, 200, 255, 0.8));
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(160, 160, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(160, 160, 255, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgb(60, 30, 120);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgb(40, 20, 80);
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            background: #ffffff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(210, 170, 250, 0.8), rgba(170, 200, 255, 0.8));
            border-radius: 12px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(160, 160, 255, 0.2);
        }

        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(160, 160, 255, 0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: rgb(60, 30, 120);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: rgb(60, 30, 120);
            font-weight: 700;
        }

        .service-card p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: rgb(40, 20, 80);
        }

        .learn-more {
            color: rgb(60, 30, 120);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border-bottom: 2px solid rgb(60, 30, 120);
            padding-bottom: 2px;
        }

        .learn-more:hover {
            color: #f59e0b;
            border-bottom-color: #f59e0b;
            transform: translateX(5px);
        }

        /* Products Section */
        .products-section {
            background: #ffffff;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: linear-gradient(135deg, rgba(210, 170, 250, 0.8), rgba(170, 200, 255, 0.8));
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(160, 160, 255, 0.2);
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(160, 160, 255, 0.3);
        }

        .product-card .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: rgb(60, 30, 120);
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .product-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.05);
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: rgb(60, 30, 120);
            font-weight: 700;
        }

        .product-card p {
            color: rgb(40, 20, 80);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .qr-input-container {
            margin: 2rem 0;
        }

        /* Contact Section */
        .contact-section {
            background: #ffffff;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(160, 110, 235, 0.15);
        }

        .contact-icon {
            font-size: 2rem;
            min-width: 50px;
        }

        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: rgb(160, 110, 235);
            font-weight: 600;
        }

        .contact-item p {
            color: #4a5568;
            line-height: 1.6;
        }

        .contact-form {
            background: #ffffff;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2d3748;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: #fafbfc;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            color: #1a202c;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgb(160, 110, 235);
            background: #fff;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            background: linear-gradient(135deg, rgb(160, 110, 235), rgb(110, 150, 255));
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 15px rgba(160, 110, 235, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(160, 110, 235, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 5%;
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-content p {
            color: #4a5568;
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-icons p {
            margin-right: 0.5rem;
        }

        .social-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgb(200, 160, 250), rgb(160, 190, 255));
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, rgb(160, 110, 235), rgb(110, 150, 255));
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(160, 110, 235, 0.3);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                color: #1a202c;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-10px) rotate(-45deg);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            section {
                min-height: auto;
                padding: 4rem 5%;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-tagline {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }
        }
    