/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background-color: #f9fafb;
    overflow-x: hidden;
}
.chart-bar{
    border-radius: 15px;
    color: white;
    padding-left: 12px ;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Navbar - Professional styles now in HTML inline <style> tag */
/* Old basic navbar styles removed - using new glassmorphic design */

/* Hero section */
.hero {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* 3D Background Container */
.threejs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tag {
    display: inline-block;
    background-color: rgba(124, 58, 237, 0.2);
    color: #e9d5ff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #7c3aed;
    color: white;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.25);
}

.btn-secondary {
    background-color: #f3e8ff;
    color: #7c3aed;
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.1);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
}

/* Typewriter effect */
.typewriter {
    display: inline-block;
    position: relative;
    min-height: 4rem;
}

.typed-text {
    font-weight: 700;
    color: #111827;
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 3rem;
    background-color: #7c3aed;
    margin-left: 4px;
    animation: blink 0.7s infinite;
    position: relative;
    top: 6px;
}

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

/* Video container */
.video-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f3e8ff;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    transition: transform 0.3s;
}

.video-container:hover {
    transform: translateY(-4px) scale(1.01);
}

.video-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.video-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.video-badge {
    background-color: rgba(124, 58, 237, 0.8);
    font-size: 0.675rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
}

/* Network Animation */
.network-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.network-node {
    position: absolute;
    background-color: #7c3aed;
    border-radius: 50%;
    opacity: 0.4;
}

.network-connection {
    position: absolute;
    height: 1px;
    background-color: #a78bfa;
    transform-origin: left center;
    opacity: 0.3;
}

/* Trusted by section */
.trusted-by {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 3;
}

.trusted-by h3 {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.logo-grid img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-grid img:hover {
    opacity: 1;
}

/* Stats section */
.stats {
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
    z-index: 3;
}

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

.stat-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-icon.up {
    color: #10b981;
}

.stat-icon.down {
    color: #8b5cf6;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7c3aed;
}

.stat-card h3 {
    margin-bottom: 1rem;
}

.stat-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-text {
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.btn-text:hover {
    color: #6d28d9;
}

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

/* Memory integration section */
.memory-integration {
    padding: 6rem 0;
    background-color: #f5f3ff;
    position: relative;
    z-index: 3;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6d28d9;
    font-weight: 600;
    margin-bottom: 2rem;
}

.integration-content, .reasoning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.integration-text h2, .reasoning-text h2 {
    color: #111827;
}

.integration-text p, .reasoning-text p {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    background-color: #7c3aed;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-action:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.25);
}

.integration-image img, .reasoning-demo img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

/* Agent reasoning section */
.agent-reasoning {
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
    z-index: 3;
}

.chat-example {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7c3aed;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.chat-content {
    flex-grow: 1;
}

.chat-header {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chat-date {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.chat-text {
    background-color: white;
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.highlight {
    background-color: #f3e8ff;
    color: #7c3aed;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.facts-extracted {
    background-color: white;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    margin-left: 3rem;
    border-left: 3px solid #7c3aed;
}

.facts-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #7c3aed;
}

.facts-list li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.facts-list li:last-child {
    margin-bottom: 0;
}

/* State of art section */
.state-of-art {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 50%, #ede9fe 100%);
}

.state-content {
    max-width: 800px;
}

.btn-paper {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    background-color: #7c3aed;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-paper:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.25);
}

/* Use case section */
.use-case {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    color: #4b5563;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
}

.author-title {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #d1d5db;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #9ca3af;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #e5e7eb;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container, .integration-content, .reasoning-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        grid-row: 1;
    }
    
    .hero-content {
        text-align: center;
        grid-row: 2;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-login {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .tag {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Animation for newly visible sections */
.animated {
    animation: fadeInUp 0.8s forwards;
}

/* Additional CSS enhancements */

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text-animated {
    background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 33%, #c084fc 66%, #7c3aed 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced card effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.2);
}

.card-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(120deg, #7c3aed 0%, transparent 100%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-hover:hover::after {
    opacity: 0.1;
}

/* Floating animation */
.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulsing animation */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Enhanced buttons */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-glow:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateY(-70%);
}

/* Animated border */
.border-animated {
    position: relative;
    border: none;
    border-radius: 0.375rem;
}

.border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #7c3aed, #c084fc, #7c3aed) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 300% 100%;
    animation: gradient-shift 4s linear infinite;
}

/* Active nav link */
.nav-active {
    position: relative;
    color: #7c3aed !important;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #c084fc);
}

/* 3D card effect */
.card-3d {
    perspective: 1000px;
    transition: transform 0.5s;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(124, 58, 237, 0.2);
}

/* Frosted glass effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Interactive highlight */
.highlight-interactive {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.highlight-interactive::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(196, 181, 253, 0.5);
    transition: height 0.3s ease;
}

.highlight-interactive:hover::after {
    height: 100%;
}

/* Network node additional styles */
.network-node {
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.network-node.pulse {
    animation: network-pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes network-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(124, 58, 237, 0.5);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#8b5cf6, #6d28d9);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#7c3aed, #5b21b6);
}

/* Text selection */
::selection {
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
}

/* Enhancement for stat cards */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #c084fc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

/* Enhanced typewriter cursor */
.cursor {
    background: linear-gradient(to bottom, #7c3aed, #c084fc);
}

/* Enhanced section transitions */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #f9fafb);
    pointer-events: none;
}

/* Animated tag pill */
.tag {
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: tag-shine 6s ease-in-out infinite;
}

@keyframes tag-shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Text gradient loading effect */
.text-loading {
    background: linear-gradient(90deg, #f5f3ff 0%, #7c3aed 50%, #f5f3ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: text-loading 2s infinite;
}

@keyframes text-loading {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Gradient border for images */
.gradient-border-img {
    position: relative;
    padding: 5px;
    background: linear-gradient(to right, #7c3aed, #c084fc);
    border-radius: 0.5rem;
}

.gradient-border-img img {
    border-radius: 0.3rem;
    display: block;
}

/* Enhanced typewriter with active character styles */
.typewriter-text {
    display: inline-block;
    min-height: 1.2em;
    position: relative;
}

.typewriter-text span {
    display: inline-block;
    transition: all 0.2s ease;
}

.typewriter-text .active-char {
    position: relative;
    z-index: 2;
}

.typewriter-text .active-char::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #c084fc);
    animation: width-pulse 0.5s infinite alternate;
}

@keyframes width-pulse {
    from { transform: scaleX(0.8); opacity: 0.7; }
    to { transform: scaleX(1.1); opacity: 1; }
}

/* Custom cursor for typewriter */
.typewriter-container {
    position: relative;
}



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

/* Character-by-character gradient effect */
.typewriter-text .gradient-char {
    background: linear-gradient(90deg, #7c3aed, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Typewriter effect styling */
#typewriter-generic .gradient-char {
    background: linear-gradient(90deg, #f5f5f5, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#typewriter-personal .gradient-char {
    background: linear-gradient(90deg, #8b5cf6, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* AI Agents Carousel Styles */
.ai-agents-carousel {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.ai-agents-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.05), transparent 60%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 50px;
    font-weight: 700;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    opacity: 0.8;
}

.carousel-card.active {
    transform: scale(1);
    opacity: 1;
}

.carousel-card:hover {
    transform: translateY(-8px) scale(1);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(124, 58, 237, 0.15);
}

.card-content {
    padding: 40px;
    text-align: center;
}

.agent-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    
    background: linear-gradient(135deg, #f3cbfb 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.carousel-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.carousel-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.stats-bar {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 12px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 10px;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed 0%, #6d28d9 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 18px;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: #7c3aed;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%;
        min-width: 300px;
        padding: 30px 24px;
    }

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

    .service-icon-container {
        width: 90px !important;
        height: 90px !important;
    }

    .service-title {
        font-size: 20px !important;
    }
}

/* ============================================
   GLASSMORPHIC CARD COMPONENTS
   ============================================ */

/* Service Icon Container */
.service-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.service-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.4));
}

/* Service Title with Gradient Underline */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4, transparent);
    border-radius: 2px;
}

/* Feature Pills (replacing emoji lists) */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.feature-pill {
    padding: 8px 14px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: #5b21b6;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-pill:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Service Stats */
.service-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.stat-item {
    flex: 1;
    padding: 12px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    text-align: center;
}

.stat-item .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 4px;
}

.stat-item .stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ECOSYSTEM INFOGRAPHIC
   ============================================ */

.ecosystem-infographic {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.infographic-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.15));
}

.infographic-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.legend-text {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .ecosystem-infographic {
        padding: 24px 16px;
        margin-bottom: 40px;
    }

    .infographic-svg {
        transform: scale(0.9);
    }

    .service-stats {
        flex-direction: column;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .carousel-card,
    .feature-pill,
    .service-icon,
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animation classes */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.slide-out {
    animation: slideOut 0.5s ease-out forwards;
}
