/* Base Styles */
body {
    scroll-behavior: smooth;
}

/* Glass Card Effect */
.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}
/* Logo Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-marquee {
    display: flex;
    width: 200%;
    animation: marquee 40s linear infinite;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

/* Tech Chip Animation */
@keyframes highlight-chip {
    0%, 100% { transform: scale(1); background-color: rgba(255, 255, 255, 0.05); }
    50% { transform: scale(1.05); background-color: rgba(42, 108, 245, 0.2); }
}

.highlight-chip {
    animation: highlight-chip 2s infinite;
}
/* Glow Button Effect */
.glow-button-pulse {
    animation: pulse-glow 2s infinite;
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-marquee {
        width: 400%;
    }
}