/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 80%;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-sphere {
    width: 400px;
    height: 400px;
    position: relative;
}

#heroCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.stats-overlay {
    position: absolute;
    display: flex;
    justify-content: space-around;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 2;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    min-width: 100px;
}

.stat-value {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Features Section */
.features-overview {
    background-color: rgba(15, 15, 15, 0.7);
    position: relative;
    overflow: hidden;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}
.feature-card h3{
    text-align: center;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-pink));
    transition: height var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.3);
}

.feature-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--neon-blue);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.feature-card:hover h3 {
    color: var(--neon-blue);
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Live Demo Section */
.live-demo {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.chart-container {
    position: relative;
    min-height: 400px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.7);
    overflow: hidden;
}

.chart-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.market-pulse {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 230, 0.5);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neon-pink);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px var(--neon-pink);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 10px var(--neon-pink);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px var(--neon-pink);
    }
}

.stats-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-box {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.stat-box:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
}

.stat-box h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.prediction, .accuracy, .bot-count {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prediction.up {
    color: var(--neon-green);
}

.prediction.down {
    color: var(--neon-pink);
}

.accuracy {
    color: var(--neon-blue);
}

.bot-count {
    color: var(--neon-pink);
}

.time-frame {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(15, 15, 15, 0.7);
    position: relative;
}

.testimonial-slider {
    padding-top: 20px;
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.testimonial-card {
    
    flex: 0 0 calc(33.333% - 2rem);
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.3);
    border-color: var(--neon-blue);
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--neon-blue);
    margin: 0 auto 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card blockquote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 5rem;
    color: rgba(0, 212, 255, 0.1);
    font-family: sans-serif;
    z-index: -1;
}

.user-info {
    text-align: center;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--neon-blue);
}

.user-info p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}
.home__hero-subtitle {
    text-align: center;
}

.slider-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.prev-btn::before, .next-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
    transition: var(--transition-fast);
}

.prev-btn::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.next-btn::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content {
    padding: 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 80%;
    opacity: 0.8;
}

.cta-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0) 70%);
    border-radius: 50%;
    position: relative;
    animation: hologram-float 6s ease-in-out infinite;
}

.hologram::before, .hologram::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.05);
    animation: hologram-pulse 4s ease-in-out infinite alternate;
}

.hologram::before {
    animation-delay: -2s;
}

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

@keyframes hologram-pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0.7; }
}

/* Parallax Section */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgY3g9IjUwJSIgY3k9IjUwJSIgZng9IjUwJSIgZnk9IjUwJSIgcj0iNTAlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iIzAwRDRGRiIgc3RvcC1vcGFjaXR5PSIuMDMiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMDBENEZGIiBzdG9wLW9wYWNpdHk9IjAiIG9mZnNldD0iMTAwJSIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxnIGZpbGw9Im5vbmUiPjxjaXJjbGUgY3g9IjI1MCIgY3k9IjI1MCIgcj0iMTAwIiBmaWxsPSJ1cmwoI2EpIi8+PC9nPjwvc3ZnPg==');
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}
p {
    text-align: center;
}
/* Media Queries */
@media (max-width: 1024px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cyber-sphere {
        width: 350px;
        height: 350px;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        display: flex;
    }
    .stat-box {
        transform: translate(0) !important;
    }
    .cta-section {
        flex-direction: column;
    }
    .testimonial-slider {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .cyber-sphere {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cta-visual {
        display: none;
    }
    .cyber-sphere {
        width: 250px;
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}


.cta-section {
    display: flex;
    justify-content: center;
}

.user-avatar {
    overflow: hidden;
}








/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

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

.faq-item {
    margin-bottom: 20px;
    border-left: 2px solid var(--neon-green);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--neon-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-header:hover .faq-title {
    color: var(--neon-pink);
}

.faq-toggle {
    width: 20px;
    height: 20px;
    background: transparent;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--neon-green);
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 16px;
    height: 2px;
    top: 9px;
    left: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 16px;
    top: 2px;
    left: 9px;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
}

.faq-content {
    display: none;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--neon-blue);
}

.faq-item.active .faq-content {
    display: block;
}

.faq-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}