/* AI Agents Page Styles */
.ai-agents-hero {
	position: relative;
	height: 450px;
	background: url('/plugins/img/ai-b1.jpg') center center / cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.ai-agents-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color1: rgba(255, 255, 255, 0.85);
}

.ai-agents-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ai-agents-hero-content {
    flex: 1;
    max-width: 800px;
}

.ai-agents-hero-card {
    flex-shrink: 1;
    width: 100%;
    max-width: 420px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.ai-agents-hero-card .hero-card-title,
.ai-agents-hero-card .hero-card-items {
    background: transparent;
}

.hero-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.hero-card-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.hero-card-item:hover {
    transform: translateY(-3px);
}

.hero-card-icon-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-card-item span {
    font-size: 14px;
    color: #333;
    text-align: center;
}

.hero-card-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(235, 245, 255, 0.8) 0%, rgba(255, 240, 245, 0.8) 100%);
    border-radius: 10px;
}

.hero-card-cta-btn {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-card-cta p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.ai-agents-hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-agents-hero-content p {
    font-size: 14px;
    color: #666666;
    line-height: 2;
    margin-bottom: 30px;
}

.hero-logo {
	width: 70px;
	height: 70px;
	border-radius: 15%;
	object-fit: cover;
	margin-bottom: 20px;
}

.hero-desc {
    max-width: 800px;
}

.ai-agents-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-agents-hero-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.ai-products-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.ai-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ai-product-card:hover {

    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.ai-product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.ai-product-image img,
.ai-product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ai-product-card:hover .ai-product-image img,
.ai-product-card:hover .ai-product-image video {
    transform: scale(1.05);
}

.ai-product-mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .ai-product-mobile-image {
        display: block;
    }
    .ai-product-image video {
        display: none;
    }
    .ai-agents-hero-card {
        background: rgba(255, 255, 255, 0.95);
    }
    .ai-agents-hero-card .hero-card-title,
    .ai-agents-hero-card .hero-card-items{
        background: rgba(255, 255, 255, 1);
    }
}

.ai-product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ai-product-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ai-product-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.ai-product-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.ai-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.ai-product-features li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.ai-product-features li:before {
    content: '\eb9a';
    font-family: remixicon;
    color: #000000;
    margin-right: 10px;
    font-size: 18px;
}

.ai-product-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-product-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* AI Demo Section */
body .ai-demo-section {
    padding: 135px 0 !important;
    background: #ffffff;
}

.demo-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}

.demo-sidebar {
    flex: 0 0 280px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.demo-sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.demo-sidebar > p:first-of-type {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.sidebar-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid transparent;
}

.sidebar-tab:hover {
    background: rgba(102, 126, 234, 0.05);
}

.sidebar-tab.active {
    background: white;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.sidebar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-tab .tab-content {
    display: flex;
    flex-direction: column;
}

.sidebar-tab span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.sidebar-tab p {
    font-size: 12px;
    color: #666;
    margin: 0;
    margin-top: 2px;
}

.demo-main {
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 20px 25px;
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.demo-title i {
    font-size: 20px;
}

.demo-content {
    flex: 1;
    padding: 0;
}

.demo-panel {
    display: none;
    height: 100%;
}

.demo-panel.active {
    display: block;
}

/* Demo Chat */
body .ai-demo-section .demo-chat {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px !important;
    overflow-y: auto;
    padding: 25px;
}

.demo-chat .chat-message {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.demo-chat .chat-message.ai {
    justify-content: flex-start;
}

.demo-chat .chat-message.user {
    justify-content: flex-end;
}

.demo-chat .chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-chat .chat-message.user .chat-avatar {
    margin-left: 12px;
    background: #667eea;
    color: white;
    font-size: 18px;
}

.demo-chat .chat-message.ai .chat-avatar {
    margin-right: 12px;
}

.demo-chat .chat-message.ai .chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12%;
    object-fit: cover;
}

.demo-chat .chat-bubble {
    max-width: 75%;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.demo-chat .chat-message.user .chat-bubble {
    background: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
}

.demo-chat .chat-bubble p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.demo-chat .chat-bubble pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin-top: 12px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.demo-chat .chat-bubble code {
    font-family: 'Fira Code', 'Consolas', monospace;
}

.demo-chat .chat-bubble .generated-image {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.demo-chat .chat-bubble .generated-video {
    position: relative;
    width: 100%;
    max-width: 700px;
    height:500px;
    border-radius: 8px;
    margin-top: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.demo-chat .chat-bubble .generated-video img {
    width: 100%;
    display: block;
}

.demo-chat .chat-bubble .play-overlay-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-chat .chat-bubble .play-overlay-small:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Demo Draw */
.demo-draw {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.draw-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.draw-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.draw-prompt,
.video-prompt {
    padding: 15px 20px;
    background: #f8f9fa;
}

.prompt-label {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.prompt-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Demo Video */
.demo-video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.video-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-features-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.section-title-center p {
    font-size: 18px;
    color: #666;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	background-color: #333333;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #ffffff;
	margin-bottom: 16px;
}

.feature-box:nth-child(2) .feature-icon {
    background-color: #333333;
}

.feature-box:nth-child(3) .feature-icon {
    background-color: #333333;
}

.feature-box:nth-child(4) .feature-icon {
    background-color: #333333;
}

.feature-content {
    flex: 1;
}

.feature-box h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* AI Video Use Cases Section */
.ai-video-use-cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.ai-video-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-video-use-case-card {
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ai-video-use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.ai-video-use-case-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 18px;
}

.ai-video-use-case-1 .ai-video-use-case-icon {
    background-color: #5B8FF9;
}

.ai-video-use-case-2 .ai-video-use-case-icon {
    background-color: #5AD8A6;
}

.ai-video-use-case-3 .ai-video-use-case-icon {
    background-color: #F6BD16;
}

.ai-video-use-case-4 .ai-video-use-case-icon {
    background-color: #E86452;
}

.ai-video-use-case-5 .ai-video-use-case-icon {
    background-color: #6DC8EC;
}

.ai-video-use-case-6 .ai-video-use-case-icon {
    background-color: #9270CA;
}

.ai-video-use-case-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.ai-video-use-case-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Original Use Cases Styles for other pages */
.use-cases-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.use-cases-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.use-case-card {
    display: flex;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.use-case-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    background-color: #f56565;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-right: 20px;
}

.use-case-card:nth-child(2) .use-case-icon {
    background-color: #ed8936;
}

.use-case-card:nth-child(3) .use-case-icon {
    background-color: #48bb78;
}

.use-case-card:nth-child(4) .use-case-icon {
    background-color: #4299e1;
}

.use-case-card:nth-child(5) .use-case-icon {
    background-color: #9f7aea;
}

.use-case-card:nth-child(6) .use-case-icon {
    background-color: #ed64a6;
}

.use-case-content {
    flex: 1;
}

.use-case-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.use-case-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tech Specs Section */


 .img-bgall {
	background-image: url('/plugins/img/aibgall3.jpg');
	background-position: center bottom;
	 background-size: cover;
}

.tech-specs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.spec-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.spec-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.spec-value {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.spec-label {
    font-size: 16px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #000000;
    text-align: center;
}

.cta-agents {
    background-image: url('/plugins/img/ai_bottom_2026.jpg');
}

.cta-chat {
    background-image: url('/plugins/img/aibottom.jpg');
}

.cta-draw {
    background-image: url('/plugins/img/aibottom.jpg');
}

.cta-video {
    background-image: url('/plugins/img/aibottom.jpg');
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.9);
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* AI Chat Page Styles */

.ai-chat-hero {
	background: url('/plugins/img/ai-write-bg.jpg') center center / cover no-repeat;
	position: relative;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.ai-chat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.ai-chat-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-hero-content {
    flex: 1;
    max-width: 800px;
}

.ai-chat-hero-text {
    flex: 1;
    max-width: 800px;
}

.ai-chat-hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-chat-hero p {
    font-size: 14px;
    color: #666666;
    line-height: 2;
    margin-bottom: 30px;
}

.ai-chat-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-chat-hero-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.ai-chat-hero-image {
    flex: 1;
    text-align: center;
}

.ai-chat-hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.ai-chat-demo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ai-chat-features {
    padding: 80px 0;
    background: white;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon-large {
    width: 45px;
    height: 45px;
    margin: 0 auto 25px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.use-case-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.use-case-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.use-case-item h4 i {
    margin-right: 12px;
    color: #667eea;
    font-size: 24px;
}

.use-case-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Demo Section Styles */
.demo-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.demo-intro {
    flex: 0.6;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px;
}

.demo-intro h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.demo-intro > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.demo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-feature-item {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-feature-item:last-child {
    border-bottom: none;
}

.demo-feature-item:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

.demo-feature-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 3px solid #667eea;
    padding-left: 17px;
}

.demo-feature-item.active h4 {
    color: #667eea;
}

.demo-feature-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.demo-feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.demo-window {
    flex: 1.4;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.demo-window-header {
    background: linear-gradient(90deg, #a0f4ff, #8086fe 27%, #ef83fa 57%, #fd9f70 80%, #fff6be 100%);
    padding: 15px 25px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-window-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.demo-window-header i {
    color: #000000;
}

.demo-window-body {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
    background: #fafafa;
}

.chat-message {
    display: flex;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.ai {
    justify-content: flex-start;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.chat-message.user .chat-avatar {
    margin-left: 15px;
    background-color: #667eea;
    color: white;
    order: 2;
}

.chat-message.ai .chat-avatar {
    margin-right: 15px;
    background-color: transparent;
    padding: 0;
}

.chat-message.ai .chat-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 15%;
    object-fit: cover;
}

.chat-bubble {
    max-width: 70%;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-message.user .chat-bubble {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.chat-message.ai .chat-bubble {
    background-color: #ffffff;
    color: #333333;
}

.chat-bubble p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.chat-bubble .generated-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chat-bubble .generated-video {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    object-fit: cover;
    position: relative;
}

.video-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.video-watermark i {
    font-size: 14px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AI Draw Page Styles */
.ai-draw-hero {
	background: url('/plugins/img/ai-draw-bg.jpg') center center / cover no-repeat;
	position: relative;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.ai-draw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color1: rgba(255, 255, 255, 0.9);
}

.ai-draw-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-draw-hero-content {
    flex: 1;
    max-width: 800px;
}

.ai-draw-hero-text {
    flex: 1;
    max-width: 800px;
}

.ai-draw-hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-draw-hero p {
    font-size: 14px;
    color: #666666;
    line-height: 2;
    margin-bottom: 30px;
}

.ai-draw-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-draw-hero-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.ai-draw-hero-image {
    flex: 1;
    text-align: center;
}

.ai-draw-hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.ai-draw-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.ai-draw-features {
    padding: 80px 0;
    background: white;
}

.style-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.style-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.style-card-image {
    height: 200px;
    overflow: hidden;
}

.style-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-card:hover .style-card-image img {
    transform: scale(1.1);
}

.style-card-content {
    padding: 25px;
}

.style-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.style-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.how-it-works {
    padding: 80px 0;
    background: white;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.ai-draw-demo {
    padding: 80px 0;
    background: #f8f9fa;
}

/* AI Video Page Styles */
.ai-video-hero {
	background: url('/plugins/img/ai-banner-2.jpg') center center / cover no-repeat;
	position: relative;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.ai-video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color1: rgba(255, 255, 255, 0.9);
}

.ai-video-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-video-hero-content {
    flex: 1;
    max-width: 800px;
}

.ai-video-hero-text {
    flex: 1;
    max-width: 800px;
}

.ai-video-hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-video-hero p {
    font-size: 14px;
    color: #666666;
    line-height: 2;
    margin-bottom: 30px;
}

.ai-video-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-video-hero-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.ai-video-hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.ai-video-hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-badge i {
    font-size: 18px;
}

.ai-video-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-showcase-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.video-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.video-preview {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4facfe;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-showcase-item:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.video-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.ai-video-features {
    padding: 80px 0;
    background: white;
}

.tech-specs {
    padding: 80px 0;
    background: #f8f9fa;
}

.ai-video-demo {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .demo-wrapper {
        flex-direction: column;
    }
    
    .demo-sidebar {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .use-cases-list {
        grid-template-columns: 1fr;
    }
    
    .use-case-icon {
        width: 42px;
        height: 42px;
    }
    
    .use-case-card h4 {
        font-size: 16px;
    }
    
    .use-case-card p {
        font-size: 14px;
    }
    
    .ai-video-use-cases-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ai-video-use-case-card {
        display: flex;
        padding: 20px;
        align-items: flex-start;
    }
    
    .ai-video-use-case-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        margin-right: 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .ai-video-use-case-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .ai-video-use-case-card h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .ai-video-use-case-card p {
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-right: 16px;
        margin-bottom: 0;
    }
    
    .feature-box h3 {
        font-size: 17px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero-logo {
        width: 85px;
        height: 85px;
        margin-bottom: 15px;
    }
    
    .ai-agents-hero {
        height: auto;
        padding: 60px 30px;
        background: url('/plugins/img/aibgall-2.jpg') center center / cover no-repeat;
    }

    .ai-agents-hero-container {
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }

    .ai-agents-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-agents-hero-content h1 {
        font-size: 32px;
    }

    .ai-agents-hero-card {
        width: 100%;
        max-width: 420px;
    }

    .hero-card-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-products-grid {
        padding: 50px 0;
    }

    .section-title-center h2 {
        font-size: 28px;
    }

    .ai-chat-hero {
        height: auto;
        padding: 60px 30px;
    }

    .ai-chat-hero-container {
        justify-content: center;
    }

    .ai-chat-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-chat-hero h1 {
        font-size: 32px;
    }

    .chat-bubble {
        max-width: 85%;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .ai-draw-hero {
        height: auto;
        padding: 60px 30px;
    }

    .ai-draw-hero-container {
        justify-content: center;
    }

    .ai-draw-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-draw-hero h1 {
        font-size: 32px;
    }

    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .ai-video-hero {
        height: auto;
        padding: 60px 30px;
    }

    .ai-video-hero-container {
        justify-content: center;
    }

    .ai-video-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-video-hero h1 {
        font-size: 32px;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
    }

    .demo-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
        min-height: auto;
    }

    .demo-intro {
        padding: 25px;
        width: 100%;
    }

    .demo-intro h2 {
        font-size: 22px;
    }

    .demo-intro > p {
        font-size: 14px;
    }

    .demo-feature-item {
        padding: 15px;
    }

    .demo-feature-item h4 {
        font-size: 15px;
    }

    .demo-feature-item p {
        font-size: 13px;
    }

    .demo-window {
        flex: 1;
        max-width: 100%;
        width: 100%;
        min-height: 400px;
    }

    .demo-window-body {
        padding: 20px;
    }
}