/* Decorative Dot Pattern */
.bg-pattern-dots {
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
}
/* Industry Tags */
.industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.industry-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.industry-tag.footertag { background: rgba(255, 255, 255, 0.11); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.329); }
/* Background Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Floating Badge Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scroll Entrance Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-left.visible, 
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Dark Glass Card Effect */
.glass-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Styles */
.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}
.faq-item.active .faq-button {
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #e5e7eb;
}
.faq-item.active .faq-icon {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}
.faq-item.active .faq-content {
    opacity: 1;
}