/*<style>*/

/* Video Demo Section */
.video-demo-section {
    padding: 4rem 0;
    background: #f8fafc;
}
 
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
 
.section-header h2 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
 
.section-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
 
/* Video Container */
.video-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}
 
#webexpress-video {
    width: 100%;
    display: block;
    background: #000;
}
 
/* Video Controls */
.video-controls {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}
 
.control-btn {
    background: none;
    border: none;
    color: #475569;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s;
}
 
.control-btn:hover {
    color: #334155;
}
 
.progress-container {
    flex-grow: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin: 0 1rem;
    cursor: pointer;
}
 
.progress-bar {
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}
 
/* Features */
.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
 
.feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
 
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
 
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #3b82f6;
    font-size: 1.5rem;
}
 
.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}
 
.feature p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}
 
/* Responsive */
@media (max-width: 768px) {
    .video-demo-section {
        padding: 3rem 0;
    }
    .video-container {
        margin-bottom: 2rem;
        border-radius: 8px;
    }
    .video-features {
        grid-template-columns: 1fr;
    }
}

        :root {
            --primary: #D52B1E; /* Canadian Red (official color) */
            --primary-dark: #A81C1C;
            --secondary: #FFFFFF; /* White */
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        /* Google Translate Fixes */
        .goog-te-banner-frame.skiptranslate {
            display: none !important;
        } 

        body {
            top: 0px !important; 
        }

        .goog-te-gadget {
            display: inline-block !important;
        }

        .goog-logo-link {
            display: none !important;
        }

        .goog-te-gadget-simple {
            background-color: white !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 5px !important;
            padding: 8px 12px !important;
            font-family: 'Poppins', sans-serif !important;
            cursor: pointer !important;
        }

        .goog-te-menu-value {
            color: var(--dark) !important;
        }

        .goog-te-menu-value span:first-child {
            display: none !important;
        }

        .goog-te-menu-value span:last-child::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 8px;
            font-size: 0.8em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: margin-top 0.5s ease-out;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            z-index: 101;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            transition: all 0.3s ease;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 41, 47, 0.3);
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            z-index: 101;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Language Selector */
        .language-selector {
            margin-left: 20px;
            position: relative;
            z-index: 101;
        }
        
        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-consent.show {
            transform: translateY(0);
        }
        
        .cookie-consent p {
            margin-right: 20px;
            font-size: 0.9rem;
        }
        
        .cookie-consent button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            white-space: nowrap;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
            overflow: hidden;
        }
        
        .hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--dark);
        }

        .collaboration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 20px auto 30px;
        }

        .collaboration-logos img {
            height: 40px;
            opacity: 0.8;
            transition: var(--transition);
        }

        .collaboration-logos img:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .secondary-button {
            background-color: var(--white);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .secondary-button:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 41, 47, 0.3);
        }

        /* Maple Leaf Animation - Improved */
        .leaf-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }
        .leaf {
            position: absolute;
            top: -10%;
            color: var(--primary);
            opacity: 0.2;
            animation: float 15s linear infinite;
            -webkit-user-select: none;
            user-select: none;
            transform-origin: center;
        }
        .leaf svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }
        .leaf.l1 { left: 10%; width: 60px; height: 60px; animation-duration: 18s; animation-delay: 0s; }
        .leaf.l2 { left: 20%; width: 30px; height: 30px; animation-duration: 14s; animation-delay: -2s; }
        .leaf.l3 { left: 35%; width: 80px; height: 80px; animation-duration: 22s; animation-delay: -5s; }
        .leaf.l4 { left: 50%; width: 40px; height: 40px; animation-duration: 16s; animation-delay: -1s; }
        .leaf.l5 { left: 65%; width: 50px; height: 50px; animation-duration: 19s; animation-delay: -3s; }
        .leaf.l6 { left: 85%; width: 70px; height: 70px; animation-duration: 25s; animation-delay: -7s; }
        .leaf.l7 { left: 5%;  width: 25px; height: 25px; animation-duration: 13s; animation-delay: -4s; }
        .leaf.l8 { left: 75%; width: 45px; height: 45px; animation-duration: 17s; animation-delay: -6s; }
        .leaf.l9 { left: 25%; width: 35px; height: 35px; animation-duration: 20s; animation-delay: -8s; }
        .leaf.l10 { left: 90%; width: 55px; height: 55px; animation-duration: 24s; animation-delay: -9s; }

        @keyframes float {
            0% { transform: translateY(-10%) rotate(0deg); opacity: 0; }
            10% { opacity: 0.2; }
            90% { opacity: 0.2; }
            100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
        }
        
        /* Sections */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 20%;
            border-radius: 3px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .features-grid {
			display: flex;
			flex-wrap: wrap;
			justify-content: center; /* Centers cards horizontally */
			gap: 30px;
			max-width: 1200px;
			margin: 0 auto;
		}

		.feature-card {
			background-color: var(--white);
			border-radius: 10px;
			padding: 40px 30px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			transition: transform 0.3s, box-shadow 0.3s;
			text-align: center;
			width: 100%;
			max-width: 350px;
			flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
		}
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(216, 41, 47, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            animation: bounce 1s infinite alternate;
        }

        @keyframes bounce {
            from { transform: translateY(0); }
            to { transform: translateY(-10px); }
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .feature-card ul {
            list-style-position: inside;
            padding-left: 0;
            list-style-type: none;
            text-align: left;
        }
        
        .feature-card li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        .feature-card li::before {
            content: '✓';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* Team Section */
        #team {
            background-color: #f8fafc;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .member-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .member-info {
            padding: 25px;
        }

        .member-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 1.3rem;
        }

        .member-info p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            color: var(--gray);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Industry Section */
        #industries {
            background-color: #fef2f2;
        }
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .industry-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-bottom: 3px solid transparent;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            position: relative;
            overflow: hidden;
        }
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
            border-bottom-color: var(--primary);
        }
        .industry-card .emoji {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 15px;
            display: block;
            transition: var(--transition);
        }
        .industry-card:hover .emoji {
            transform: scale(1.2);
        }
        .industry-card h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .industry-card p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        /* Template Buttons */
        .template-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .preview-button {
            background-color: var(--secondary);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            display: inline-block;
            text-decoration: none;
        }
        
        .preview-button:hover {
            background-color: #f1f5f9;
            transform: translateY(-2px);
        }
        
        .buy-now-button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 0.9rem;
            display: inline-block;
            text-decoration: none;
        }
        .buy-now-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 41, 47, 0.3);
        }
		
		.buy-now-button i {
			margin-right: 8px;
		}

		.buy-now-button:hover {
			background-color: #b82419;
		}

        
        .download-button {
            background-color: var(--secondary);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            display: inline-block;
            text-decoration: none;
        }
        
        .download-button:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .price-tag {
            font-weight: 700;
            color: var(--primary);
            margin-top: 10px;
            font-size: 1.1rem;
        }
        
        /* Process Section */
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(216, 41, 47, 0.3);
        }
        
        .step h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .step p {
            color: var(--gray);
        }

        /* Testimonials Section */
        #testimonials {
            background-color: #f8fafc;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 4rem;
            color: rgba(216, 41, 47, 0.1);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #f1f5f9;
            margin-right: 15px;
            overflow: hidden;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        #faq {
            background-color: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 20px;
            background: #f8fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark);
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            margin-bottom: 20px;
            font-size: 2.2rem;
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-button-white {
            background-color: var(--white);
            color: var(--primary);
            font-size: 1.1rem;
            padding: 15px 30px;
            position: relative;
            z-index: 2;
        }

        .cta-button-white:hover {
            background-color: #f1f5f9;
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 5.822a1.012 1.012 0 0 0-1.428 0l-4.535 4.535a1.012 1.012 0 0 0 0 1.428l4.535 4.535a1.012 1.012 0 0 0 1.428 0l4.535-4.535a1.012 1.012 0 0 0 0-1.428l-4.535-4.535zM5.822 54.627a1.012 1.012 0 0 0 0 1.428l4.535 4.535a1.012 1.012 0 0 0 1.428 0l4.535-4.535a1.012 1.012 0 0 0 0-1.428l-4.535-4.535a1.012 1.012 0 0 0-1.428 0l-4.535 4.535z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 1;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }
        
        .footer-column a:hover {
            color: var(--white);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            color: var(--gray);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Waitlist Modal */
        #waitlist-modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            animation: fadeIn 0.3s ease-out;
        }

        #waitlist-modal .modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 30px 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            position: relative;
            animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        #waitlist-modal .close-modal {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        #waitlist-modal .close-modal:hover {
            color: #333;
        }

        #waitlist-modal h2 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 600;
        }

        #waitlist-modal p {
            text-align: center;
            color: var(--gray);
            margin-bottom: 30px;
        }

        #waitlist-form .form-group {
            margin-bottom: 20px;
        }

        #waitlist-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        #waitlist-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.1);
        }
        
        #waitlist-form button {
            width: 100%;
            padding: 14px;
            font-size: 1.1rem;
        }

        .privacy-note {
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            margin-top: 20px;
        }
        
        @keyframes slideIn {
            from { transform: translateY(-30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Marketplace Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            overflow-y: auto;
        }
        .modal-content {
            background-color: var(--white);
            margin: 50px auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 900px;
            width: 90%;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: var(--transition);
        }
        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        .modal-title {
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .template-card {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            padding: 20px;
            text-align: center;
        }
        .template-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .template-image {
            height: 180px;
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
        }
        .template-info {
            padding: 15px;
        }
       .template-info h4 {
			margin: 0 0 5px 0;
			color: #333;
		}

		.template-info p {
			margin: 0;
			color: #666;
			font-size: 0.9rem;
		}
        
        .template-card .emoji {
            font-size: 4rem;
            line-height: 1;
            margin-bottom: 15px;
            display: block;
        }
        
        .caiot-info-box {
            padding: 40px;
            text-align: center;
            background-color: #f9f9f9;
            border-radius: 10px;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .caiot-info-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .caiot-info-box p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        /* Preview Modal */
        /*.preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .preview-content {
            background-color: var(--white);
            margin: 30px auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 1000px;
            width: 90%;
            position: relative;
        }*/
		
		/* Preview Modal Styles */
		.preview-modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.8);
			z-index: 1000;
			overflow-y: auto;
		}

		.preview-content {
			background-color: white;
			margin: 2% auto;
			width: 90%;
			max-width: 1200px;
			border-radius: 12px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
			overflow: hidden;
			animation: modalFadeIn 0.3s ease-out;
		}
        
       .preview-header {
			padding: 20px;
			border-bottom: 1px solid #eee;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
        
       .preview-title {
			margin: 0;
			font-size: 1.5rem;
			color: #333;
		}

		.preview-close {
			font-size: 2rem;
			color: #888;
			cursor: pointer;
			transition: color 0.2s;
		}

		.preview-close:hover {
			color: #333;
		}

		.preview-devices {
			display: flex;
			padding: 0 20px;
			border-bottom: 1px solid #eee;
			background-color: #f9f9f9;
		}
        
		

       /* Device button container */
        .device-button {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: rgb(106, 95, 95);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 13px;
        }

        /* Mobile icon */
        .device-icon {
            font-size: 14px;
            opacity: 0.9;
        }

        /* CaIoT logo - size reduced */
        .caiot-logo {
            height: 14px; /* Reduced from original size */
            width: auto;
            object-fit: contain;
            vertical-align: middle;
        }

        /* Text label */
        .button-text {
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Active state */
        .device-button.active {
            background: var(--primary-color);
        }

        /* Hover effect */
        .device-button:not(.active):hover {
            background: rgba(255, 255, 255, 0.15);
        }

		.company-name-editor {
			margin-left: auto;
			display: flex;
			align-items: center;
		}

		#company-name-input {
			padding: 8px 12px;
			border: 1px solid #ccc;
			border-radius: 5px;
			font-size: 14px;
		}

		.device-button i {
			margin-right: 8px;
			font-size: 1.1rem;
		}

		.device-button.active {
			color: #D52B1E;
			border-bottom-color: #D52B1E;
			background-color: #fff;
		}

		.device-button:hover:not(.active) {
			color: #333;
			background-color: #f0f0f0;
		}

       

       .preview-container {
			position: relative;
			padding: 30px;
			min-height: 500px;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: #f5f5f5;
		}
        
        .preview-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            background-color: white;
        }
        .device-frame {
			display: none;
			position: relative;
		}

		.device-frame.active {
			display: block;
		}

		/* Desktop Frame */
		.device-frame.desktop .device-screen {
			width: 900px;
			height: 600px;
			background: white;
			border: 12px solid #333;
			border-radius: 10px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
			position: relative;
			overflow: hidden;
		}

		.device-frame.desktop .device-base {
			width: 150px;
			height: 20px;
			background: #333;
			margin: 0 auto;
			border-radius: 0 0 5px 5px;
		}

		.device-frame.desktop .device-screen iframe {
			width: 100%;
			height: 100%;
			border: none;
		}

		/* Tablet Frame */
		.device-frame.tablet .device-screen {
			width: 600px;
			height: 800px;
			background: white;
			border: 15px solid #333;
			border-radius: 20px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
			position: relative;
			overflow: hidden;
		}

		.device-frame.tablet .device-screen iframe {
			width: 100%;
			height: 100%;
			border: none;
		}

		/* Mobile Frame */
		.device-frame.mobile .device-screen {
			width: 320px;
			height: 568px;
			background: white;
			border: 12px solid #333;
			border-radius: 30px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
			position: relative;
			overflow: hidden;
		}

		.device-frame.mobile .device-screen:before {
			content: '';
			position: absolute;
			top: 15px;
			left: 50%;
			transform: translateX(-50%);
			width: 100px;
			height: 15px;
			background: #333;
			border-radius: 0 0 10px 10px;
			z-index: 10;
		}

		.device-frame.mobile .device-screen iframe {
			width: 100%;
			height: 100%;
			border: none;
		}

		/* CaIoT Device Frame */
		.device-frame.caiot .caiot-device {
			width: 350px;
			height: 700px;
			background: #222;
			border-radius: 40px;
			padding: 20px;
			box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
			position: relative;
		}

		.device-frame.caiot .caiot-screen {
			width: 100%;
			height: 100%;
			background: white;
			border-radius: 20px;
			overflow: hidden;
			position: relative;
		}

		.device-frame.caiot .caiot-screen:before {
			content: '';
			position: absolute;
			top: 15px;
			left: 50%;
			transform: translateX(-50%);
			width: 120px;
			height: 20px;
			background: #222;
			border-radius: 0 0 15px 15px;
			z-index: 10;
		}

		.device-frame.caiot .caiot-screen iframe {
			width: 100%;
			height: 100%;
			border: none;
		}


        .preview-footer {
			padding: 20px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			border-top: 1px solid #eee;
			background-color: #f9f9f9;
		}
        
        .preview-footer p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        /* Payment Success Modal */
        .success-modal {
            display: none; /* Keep this as none by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .success-modal.show {
            display: flex; /* Use a class to show the modal */
        }
        
        .success-content {
            background-color: var(--white);
            margin: 100px auto;
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            position: relative;
            text-align: center;
        }
        
        .success-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .success-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .success-message {
            color: var(--dark);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            /* Mobile Navigation */
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: all 0.3s ease;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .process-steps {
                flex-direction: column;
            }
            .step {
                margin-bottom: 40px;
            }
            .industry-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .collaboration-logos {
                flex-direction: column;
                gap: 15px;
            }
            
            .template-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .preview-devices {
                flex-direction: column;
                align-items: center;
            }
            
            .language-selector {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 60px 0;
            }

            .feature-card {
                padding: 30px 20px;
            }
            
            .cookie-consent {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-consent p {
                margin-right: 0;
                margin-bottom: 15px;
            }
			
			/* Add this to your CSS to ensure icons display properly */
			.feature-icon i,
			.social-links i,
			.footer-social i {
				font-style: normal;
				font-family: 'Font Awesome 6 Free' !important;
				font-weight: 900;
			}
			
			/* Ensure SVG icons display */
			.leaf svg {
				display: block;
				width: 100%;
				height: 100%;
			}
        }
			/* Responsive adjustments */
			@media (max-width: 768px) {
				.preview-content {
					width: 95%;
					margin: 5% auto;
				}
				
				.preview-devices {
					overflow-x: auto;
					white-space: nowrap;
					padding-bottom: 10px;
				}
				
				.device-button {
					padding: 10px 15px;
					font-size: 0.9rem;
				}
				
				.preview-container {
					padding: 15px;
				}
				
				.device-frame.desktop .device-screen {
					width: 100%;
					height: 400px;
				}
				
				.device-frame.tablet .device-screen {
					width: 100%;
					height: 600px;
					max-width: 500px;
				}
				
				.device-frame.mobile .device-screen {
					width: 280px;
					height: 500px;
				}
				
				.device-frame.caiot .caiot-device {
					width: 280px;
					height: 560px;
				}
				
				.preview-footer {
					flex-direction: column;
					text-align: center;
				}
				
				.template-info {
					margin-bottom: 15px;
				}
        }

.preview-footer .buy-now-button {
    flex-shrink: 0;
    margin-left: 20px;
    padding: 15px 30px;
    font-size: 16px;
}

.template-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.detail-item {
    flex: 1;
}

.detail-item h5 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.detail-item p,
.detail-item ul {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    padding-left: 18px;
}

.detail-item ul li {
    margin-bottom: 4px;
}

   /* Refund Policy Dialog Styles */
        .refund-policy-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .refund-policy-dialog {
            background: white;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            animation: fadeIn 0.3s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dialog-header {
            background: #4285F4;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dialog-title {
            margin: 0;
            font-size: 18px;
        }
        
        .close-dialog {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .dialog-content {
            padding: 20px;
            overflow-y: auto;
            max-height: 60vh;
        }
        
        .dialog-content h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        
        .dialog-content ul {
            padding-left: 20px;
        }
        
        .dialog-content li {
            margin-bottom: 8px;
        }
        
        .dialog-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .agreement-checkbox {
            display: flex;
            align-items: center;
        }
        
        .agreement-checkbox input {
            margin-right: 10px;
        }
        
        .dialog-actions button {
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .cancel-btn {
            background: #f5f5f5;
            border: 1px solid #ddd;
            margin-right: 10px;
        }
        
        .proceed-btn {
            background: #4285F4;
            color: white;
            border: none;
        }
        
        .proceed-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }
        
        /* Example Buy Button */
        .buy-button {
            padding: 12px 24px;
            background: #4285F4;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            margin: 20px;
        }
        /* Animation Styles */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(2deg); }
    75% { transform: translateY(3px) rotate(-2deg); }
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(213, 43, 30, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 10px rgba(213, 43, 30, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(213, 43, 30, 0.4); }
}

/* Collaboration Badge */
.collaboration-badge {
    margin: 30px 0;
    text-align: center;
}

.collaboration-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 42px;
    transition: all 0.3s ease;
}

#caiot-logo:hover {
    animation: float 2.5s ease-in-out infinite;
}

#uottawa-logo:hover {
    animation: pulse 2s ease-in-out infinite;
}

.collab-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.uottawa-logo {
    padding: 2px;
    background: white;
    border-radius: 4px;
}

.collaboration-plus {
    font-size: 26px;
    font-weight: bold;
    color: white;
}

/* Canadian Badge */
.canadian-badge {
    position: absolute;
    right: -20px;
    top: -15px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 4px 10px 4px 6px;
    animation: badgePulse 3s infinite;
    border: 1px solid #D52B1E;
}

.maple-leaf {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    animation: leafFloat 4s ease-in-out infinite;
}

.badge-text {
    font-size: 12px;
    font-weight: bold;
    color: #D52B1E;
    white-space: nowrap;
}

/* Text Styles */
.collaboration-text {
    font-size: 17px;
    color: white;
    margin-top: 10px;
    line-height: 1.5;
}

.canadian-made {
    color: #FFD700;
    font-weight: 600;
    position: relative;
}

.canadian-made::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D52B1E, #FFD700, #D52B1E);
    animation: highlightPulse 3s infinite;
}

@keyframes highlightPulse {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .collaboration-logos {
        gap: 10px;
    }
    .logo-container {
        height: 34px;
    }
    .canadian-badge {
        right: -10px;
        top: -10px;
        padding: 3px 8px 3px 5px;
    }
    .maple-leaf {
        width: 14px;
        height: 14px;
    }
    .badge-text {
        font-size: 10px;
    }
    .collaboration-text {
        font-size: 15px;
    }


    /* Maple Leaves Animation */
.maple-leaves-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.maple-leaf {
  position: absolute;
  top: -50px;
  width: 30px;
  height: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D52B1E" d="M50,5 L60,35 L90,35 L65,55 L75,85 L50,65 L25,85 L35,55 L10,35 L40,35 Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: falling 15s linear infinite;
  opacity: 0.8;
  z-index: 1;
}

@keyframes falling {
  0% {
    transform: translateY(-50px) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(calc(100vh + 50px)) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* Adjust for mobile */
@media (max-width: 768px) {
  .maple-leaf {
    width: 20px;
    height: 20px;
  }
}
}
/* </style> */

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.video-showcase .section-header {
    margin-bottom: 50px;
}

.video-showcase .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.video-showcase .section-header .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(213, 43, 30, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.video-container:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
}

/* Fallback content for when JS is disabled */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Hide if iframe loads */
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-fallback .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(213, 43, 30, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s, background-color 0.3s;
}

.video-fallback:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
}

/* Video Lightbox Modal */
.video-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1002; /* Higher than other modals */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.video-close-button:hover {
    color: #ccc;
}

.video-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-features .feature {
    flex: 1;
    max-width: 300px;
}

.video-features .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.video-features .feature h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.video-features .feature p {
    color: var(--gray);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-features {
        flex-direction: column;
        align-items: center;
    }

    .video-showcase .section-header h2 {
        font-size: 2rem;
    }
}

#purchase-agreement-modal .modal-content {
    max-width: 600px;
}

#purchase-agreement-modal .modal-title {
    margin-bottom: 20px;
    color: var(--dark);
}

.template-purchase-details {
    text-align: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.template-purchase-details p {
    margin: 0;
    color: var(--gray);
}

.template-purchase-details h3 {
    margin: 5px 0 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.refund-policy-text {
    margin-bottom: 20px;
}

.refund-policy-text h4 {
    margin-bottom: 10px;
    color: var(--dark);
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.refund-policy-text ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--gray);
}

.refund-policy-text ul li {
    margin-bottom: 8px;
}

.refund-policy-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.refund-policy-text a:hover {
    text-decoration: underline;
}

.agreement-confirmation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fef2f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
}

.agreement-confirmation input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.agreement-confirmation label {
    color: var(--dark);
    font-size: 0.95rem;
}

#modal-proceed-to-payment {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

#modal-proceed-to-payment:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Promo Banner Styles */
.promo-banner {
    position: relative; /* Changed from fixed to relative */
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ef3b36 0%, #ffffff 30%, #ffffff 70%, #ef3b36 100%);
    color: #000;
    padding: 12px 0;
    z-index: 1001; /* Higher than header */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom: 2px solid #d52b1e;
    animation: slideDown 0.8s ease-out;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.promo-flag {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 30px;
    margin-right: 20px;
    border: 1px solid #d52b1e;
}

.maple-leaf {
    width: 20px;
    height: 20px;
    background-color: #d52b1e;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,5 L60,35 L90,35 L65,55 L75,85 L50,65 L25,85 L35,55 L10,35 L40,35 Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,5 L60,35 L90,35 L65,55 L75,85 L50,65 L25,85 L35,55 L10,35 L40,35 Z'/%3E%3C/svg%3E");
    margin-right: 8px;
}

.promo-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.flash-text {
    color: #d52b1e;
    font-weight: 700;
    animation: flash 1.5s infinite;
    margin-right: 10px;
}

.promo-counter {
    font-size: 14px;
    display: block;
    margin-top: 4px;
    font-weight: normal;
}

.promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 0 10px;
}

/* Animations */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ===== AI Generator Section ===== */
/*This css part if not working on desktop but mobile only */
/* ===== AI Generator Section ===== */
    #ai-generator {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #1a1a1a; /* Dark theme (adjust to match your site) */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    #ai-generator h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #6e45e2, #88d3ce); /* Gradient text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    #ai-generator p {
    color: #b8b8b8;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    }

    /* Embedded iFrame */
   #ai-generator iframe {
  width: 100%;
  height: 800px; /* Increased from 600px */
  border: 4px solid #444; /* Add frame border */
  border-radius: 12px;
  background: #000;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
    #ai-generator iframe {
  border: 4px solid rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0.2);
}

    #ai-generator iframe:hover {
    transform: translateY(-5px);
    }

    /* Launch Button */
    #ai-generator .button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 69, 226, 0.4);
    }

    #ai-generator .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 69, 226, 0.6);
    }

    /* Loading State (optional) */
    #iframe-loader {
    text-align: center;
    color: #888;
    padding: 2rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
    #ai-generator {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    #ai-generator h2 {
        font-size: 1.8rem;
    }
    
    #ai-generator iframe {
        height: 400px;
    }
    }

/* ===== "Blast Off" CTA (Extreme) ===== */
.ai-blast-off-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  
  margin-left: auto;      /* Push to center */
  margin-right: auto;     /* Push to center */
  justify-content: center; /* Center text horizontally (if button width > content) */
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 2rem auto;
  
  /* Electric Gradient */
  background: linear-gradient(
    90deg,
    #ff00cc 0%,
    #3333ff 50%,
    #00ccff 100%
  );
  background-size: 200% 200%;
  box-shadow: 
    0 5px 25px rgba(255, 0, 204, 0.5),
    0 0 40px rgba(51, 51, 255, 0.4);
  
  /* Continuous Animation */
  animation: gradientShift 4s ease infinite, pulseGlow 2s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glow Pulse */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 25px rgba(255, 0, 204, 0.6); }
  50% { box-shadow: 0 0 50px rgba(0, 204, 255, 0.8); }
  100% { box-shadow: 0 0 25px rgba(255, 0, 204, 0.6); }
}

/* Hover Effects */
.ai-blast-off-btn:hover::before {
  content: "🚀";
  animation: rocketBlast 0.6s infinite alternate;
}

@keyframes rocketBlast {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-6px) rotate(10deg); }
}

.flash-banner {
  background: linear-gradient(90deg, #5e60ce, #64dfdf);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  gap: 12px;
  animation: glowBanner 4s ease-in-out infinite;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 2rem auto;
}

.flash-icon {
  font-size: 1.4rem;
  animation: bounceIcon 1.5s infinite ease-in-out;
}

.flash-message strong {
  color: #ffe082;
}

.flash-code {
  background: #fff;
  color: #1e1e1e;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  margin: 0 4px;
  animation: pulseCode 2s ease-in-out infinite;
}

/* Glow background animation */
@keyframes glowBanner {
  0%, 100% {
    box-shadow: 0 0 10px rgba(100, 223, 223, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(100, 223, 223, 0.7);
  }
}

/* Bounce the icon slightly */
@keyframes bounceIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pulse the promo code */
@keyframes pulseCode {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
