/* =========================
   AI CHATBOT PAGE-SPECIFIC STYLES ONLY
   ========================= */

/* Only AI chatbot page-specific component overrides below. No .cta-button, section, container, or table rules. */

/* Headings specific to AI Chatbot page */
#ai-chatbot h1, 
#ai-chatbot h3, 
#ai-chatbot h4 {
    font-family: 'Orbitron', 'Inter', Arial, sans-serif;
    color: #00BCD4;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    text-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}
#ai-chatbot h1 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1em;
}
#ai-chatbot h3 {
    font-size: 1.2rem;
    color: #FFD700;
}
#ai-chatbot h4 {
    font-size: 1.05rem;
    color: #E0E0E0;
    margin-top: 1.5em;
}

/* Remove legacy/deprecated h2 rules for #chatbot-development */
#chatbot-development h2, #chatbot-development h2.typewriter {
    display: none !important;
}

/* Intro and details lists */
#ai-chatbot-intro ul,
#ai-chatbot-details ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
#ai-chatbot-intro li,
#ai-chatbot-details li {
    margin-bottom: 0.5em;
}

/* Info-graphic section and cards */
#ai-chatbot .info-graphic-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2em;
    page-break-inside: avoid;
}
#ai-chatbot .info-card {
    background-color: #2C2C4A;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.2);
    text-align: center;
    border: 1px solid #3A3A5A;
    page-break-inside: avoid;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
#ai-chatbot .info-card:hover {
    box-shadow: 0 8px 32px rgba(0,188,212,0.22), 0 0 0 2px #FFD700;
}
#ai-chatbot .info-card .icon {
    font-size: 2em;
    color: #00BCD4;
    margin-bottom: 10px;
}
#ai-chatbot .info-card h4 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 5px;
}
#ai-chatbot .info-card p {
    font-size: 0.9em;
    color: #B0B0B0;
}
@media (max-width: 900px) {
    #ai-chatbot .info-graphic-section {
        flex-direction: column;
        align-items: stretch;
    }
    #ai-chatbot .info-card {
        flex: 1 1 100%;
        min-width: unset;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    #ai-chatbot .info-card {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    #ai-chatbot .info-card {
        flex: 1 1 100%;
        min-width: unset;
    }
}

/* Feature and tools lists */
#ai-chatbot .feature-list ul,
#ai-chatbot .tools-list ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
#ai-chatbot .feature-list li,
#ai-chatbot .tools-list li {
    margin-bottom: 0.5em;
}

/* Process steps */
#ai-chatbot .process-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #2C2C4A;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.1);
    page-break-inside: avoid;
    min-width: 220px;
    max-width: 350px;
    flex: 1 1 250px;
}
#ai-chatbot .process-step .step-icon,
#ai-chatbot .step-icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
    flex-shrink: 0;
    width: 1.5em;
    text-align: center;
}
#ai-chatbot .process-step .step-content h4,
#ai-chatbot .step-content h4 {
    margin: 0;
    color: #00BCD4;
    font-size: 1.1em;
}
#ai-chatbot .process-step .step-content p,
#ai-chatbot .step-content p {
    margin: 5px 0 0;
    font-size: 0.95em;
}

@media (max-width: 900px) {
    #ai-chatbot .process-step {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    #ai-chatbot .info-graphic-section, 
    #ai-chatbot .process-step {
        gap: 10px;
    }
}

/* Animation classes scoped to AI Chatbot page only */
#ai-chatbot .fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
#ai-chatbot .fade-in.visible { opacity: 1; transform: translateY(0); }

#ai-chatbot .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
#ai-chatbot .fade-in-up.visible { opacity: 1; transform: translateY(0); }

#ai-chatbot .slide-in-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.7s, transform 0.7s; }
#ai-chatbot .slide-in-left.visible { opacity: 1; transform: translateX(0); }

#ai-chatbot .slide-in-right { opacity: 0; transform: translateX(60px); transition: opacity 0.7s, transform 0.7s; }
#ai-chatbot .slide-in-right.visible { opacity: 1; transform: translateX(0); }

#ai-chatbot .zoom-in { opacity: 0; transform: scale(0.85); transition: opacity 0.7s, transform 0.7s; }
#ai-chatbot .zoom-in.visible { opacity: 1; transform: scale(1); }

.ai-chatbot-section {
    padding: 40px 0;
    margin-bottom: 32px;
}
.ai-chatbot-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,188,212,0.10);
    padding: 32px 20px 24px 20px;
    text-align: center;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.ai-chatbot-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,188,212,0.18);
}
.ai-chatbot-icon {
    font-size: 2.2rem;
    color: var(--color-accent);
    text-shadow: 0 0 12px #FFD700, 0 0 24px #FFD700;
    margin-bottom: 12px;
    animation: glowPulse 2.5s infinite alternate;
}