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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition: none !important; }
}

.gradient-text {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-shadow {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.api-card {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.api-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 12px;
    color: #0284c7;
    font-size: 24px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #0284c7;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.chain-demo {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.ai-step {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #0284c7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ai-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: #0284c7;
    border-radius: 50%;
}

.chain-arrow {
    text-align: center;
    color: #0284c7;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* Mobile menu styles */
.mobile-menu-enter {
    transform: translateX(100%);
}

.mobile-menu-enter-active {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.mobile-menu-exit {
    transform: translateX(0);
}

.mobile-menu-exit-active {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.overlay-enter {
    opacity: 0;
}

.overlay-enter-active {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.overlay-exit {
    opacity: 1;
}

.overlay-exit-active {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.mobile-menu {
    z-index: 9999;
}

.mobile-overlay {
    z-index: 9998;
}

#mobile-menu {
    background-color: #ffffff !important;
    backdrop-filter: none !important;
}

#mobile-menu > div {
    background-color: #ffffff !important;
}

#mobile-menu .border-b {
    background-color: #ffffff !important;
}

#mobile-menu nav {
    background-color: #ffffff !important;
}

#mobile-menu .border-t {
    background-color: #ffffff !important;
}
.processing-indicator {
font-size: 0.7rem;
padding: 2px 6px;
border-radius: 4px;
margin-left: 8px;
}

.processing-fast {
background-color: #E8F5E8;
color: #2E7D32;
}

.processing-enhanced {
background-color: #FFF3E0;
color: #F57C00;
}

.tooltip {
position: relative;
cursor: help;
}

.tooltip:hover::after {
content: attr(title);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
z-index: 1000;
}

/* Main Section Styles */
.ai-collaboration-section {
    width: 100%;
    background: #FAF9F5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    background: #FAF9F5;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Diagram Styles */
.diagram {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.user-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    z-index: 20;
}

.user-icon::after {
    content: 'USER';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.ai-model {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: white;
    z-index: 15;
}


.ai-model .logo {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.ai-model .name {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.multiplechat {
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 130px);
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.3);
    border: 1px solid #e2e8f0;
    z-index: 10;
}

.multiplechat .logo {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 6px;
    backdrop-filter: blur(10px);
}

.multiplechat .name {
    font-size: 13px;
    margin-bottom: 3px;
}

.chatgpt {
    top: calc(50% - 150px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.chatgpt .logo {
    background: linear-gradient(135deg, #10a37f, #1a7f64);
}

.claude {
    top: calc(50% - 75px);
    left: calc(50% + 130px);
    transform: translate(-50%, -50%);
}

.claude .logo {
    background: linear-gradient(135deg, #d97706, #ea580c);
}

.gemini {
    top: calc(50% + 75px);
    left: calc(50% + 130px);
    transform: translate(-50%, -50%);
}

.gemini .logo {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.grok {
    top: calc(50% + 150px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.grok .logo {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.perplexity {
    top: calc(50% + 75px);
    left: calc(50% - 130px);
    transform: translate(-50%, -50%);
}

.perplexity .logo {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

/* Collaboration circle */
.collaboration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 2px dashed #c7d2fe;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    animation: collaborationRotate 25s linear infinite;
}
.custom-shadow {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fact-check-demo {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.response-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: 1rem;
}

.issue-badge {
    display: inline-flex;
    align-items: center;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: 1rem;
}

.gemini-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.stat-highlight {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    border: 2px solid #fecaca;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}
.collaboration-circle::before {
    content: 'AI COLLABORATION NETWORK';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: 1px;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Flow lines */
.prompt-line-to-mc {
    position: absolute;
    top: calc(50% - 30px);
    left: 60px;
    width: 290px;
    height: 2px;
    background: #f59e0b;
    z-index: 5;
    transform: rotate(-15deg);
    transform-origin: left center;
    animation: orangeLineShow 8s ease-in-out infinite;
}

.prompt-line-to-mc::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #f59e0b;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    animation: orangeArrowShow 8s ease-in-out infinite;
}

.result-line {
    position: absolute;
    top: calc(50% - 30px);
    left: 60px;
    width: 290px;
    height: 2px;
    background: #10b981;
    z-index: 5;
    transform: rotate(-15deg);
    transform-origin: left center;
    opacity: 0;
    animation: resultLineShow 8s ease-in-out infinite;
}

.result-line::before {
    content: '';
    position: absolute;
    left: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-right: 8px solid #10b981;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    opacity: 0;
    animation: greenArrowShow 8s ease-in-out infinite;
}

/* Animated prompt dot */
.prompt-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
    animation: promptFlow 8s ease-in-out infinite;
    z-index: 25;
}

/* Dynamic text labels */
.dynamic-prompt-text {
    position: absolute;
    top: calc(50% - 60px);
    left: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #fed7aa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 30;
    opacity: 0;
    animation: promptTextShow 8s ease-in-out infinite;
}

.dynamic-result-text {
    position: absolute;
    top: calc(50% - 10px);
    left: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 30;
    opacity: 0;
    animation: resultTextShow 8s ease-in-out infinite;
}

/* Value Proposition */
.value-proposition {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.value-proposition h3 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-proposition p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cost-column {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cost-column h4 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

.cost-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.total {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.total .cost-item {
    color: #dc2626;
    font-weight: 600;
    font-size: 1.1rem;
}

.savings {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.savings .cost-item {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.2rem;
}

.savings-badge {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Animations */
@keyframes collaborationRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes promptFlow {
    0% {
        top: 50%;
        left: 20px;
        opacity: 1;
        background: #f59e0b;
        transform: translateY(-50%);
    }
    12% {
        top: calc(50% - 75px);
        left: calc(50% - 130px);
        opacity: 1;
        background: #f59e0b;
        transform: translate(-50%, -50%);
    }
    15% {
        top: calc(50% - 75px);
        left: calc(50% - 130px);
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    20% {
        top: calc(50% - 150px);
        left: 50%;
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    30% {
        top: calc(50% - 75px);
        left: calc(50% + 130px);
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    40% {
        top: calc(50% + 75px);
        left: calc(50% + 130px);
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    50% {
        top: calc(50% + 150px);
        left: 50%;
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    60% {
        top: calc(50% + 75px);
        left: calc(50% - 130px);
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    70% {
        top: calc(50% - 75px);
        left: calc(50% - 130px);
        opacity: 1;
        background: #c0c0c0;
        transform: translate(-50%, -50%);
    }
    75% {
        top: calc(50% - 75px);
        left: calc(50% - 130px);
        opacity: 1;
        background: #10b981;
        transform: translate(-50%, -50%);
    }
    87% {
        top: 50%;
        left: 20px;
        opacity: 1;
        background: #10b981;
        transform: translateY(-50%);
    }
    100% {
        top: 50%;
        left: 20px;
        opacity: 0;
        background: #10b981;
        transform: translateY(-50%);
    }
}

@keyframes orangeLineShow {
    0% { opacity: 1; }
    74% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes orangeArrowShow {
    0% { opacity: 1; }
    74% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes resultLineShow {
    0% { opacity: 0; }
    74% { opacity: 0; }
    75% { opacity: 1; }
    87% { opacity: 1; }
    88% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes greenArrowShow {
    0% { opacity: 0; }
    74% { opacity: 0; }
    75% { opacity: 1; }
    87% { opacity: 1; }
    88% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes promptTextShow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    15% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes resultTextShow {
    0% { opacity: 0; }
    75% { opacity: 0; }
    80% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-container {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .diagram {
        height: 500px;
        transform: scale(0.8);
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ai-collaboration-section {
        padding: 60px 0;
    }

    .section-container {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .diagram {
        transform: scale(0.6);
        height: 400px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .ai-collaboration-section {
        padding: 40px 0;
    }
}        .her_bg {
    background: #FAF9F5;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.her_card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    position: static;
    z-index: 20;
    padding: 32px;
    height: fit-content;
}

.her_features_card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
}

.her_stats_card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

.her_metric_number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.her_blue_gradient {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.her_feature_icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.her_feature_icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.her_chat_demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    padding: 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

    /* Logo Carousel Section */
    .logo-section {
        background: white;
        padding: 40px 0;
        overflow: hidden;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
      }
  
      .logo-section-title {
        text-align: center;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #64748b;
        margin-bottom: 30px;
      }
  
      .logo-track {
        display: flex;
        width: fit-content;
        animation: scroll 40s linear infinite;
        gap: 60px;
      }
  
      .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 80px;
        padding: 20px;
        opacity: 0.6;
        transition: opacity 0.3s;
      }
  
      .logo-container:hover {
        opacity: 1;
      }
  
      .logo-container img {
        max-width: 140px;
        max-height: 60px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s;
      }
  
      .logo-container:hover img {
        filter: grayscale(0%);
      }
  
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
  
      .logos-wrapper {
        display: flex;
        overflow: hidden;
        mask-image: linear-gradient(
          to right,
          transparent,
          black 10%,
          black 90%,
          transparent
        );
        -webkit-mask-image: linear-gradient(
          to right,
          transparent,
          black 10%,
          black 90%,
          transparent
        );
      }
.logo-container {
    min-width: 120px;
    height: 60px;
  }

  .logo-container img {
    max-width: 100px;
    max-height: 45px;
  }

.her_chat_demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0284c7, #0ea5e9, #38bdf8);
}

.her_animate_typing {
    animation: herTyping 2s ease-in-out infinite;
}

@keyframes herTyping {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}