/* Quickbase Hero Section Styles */
.quickbase-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,82,204,0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.quickbase-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0,82,204,0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 40%, rgba(0,82,204,0.05) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(0,82,204,0.05) 0%, transparent 20%);
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.quickbase-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0,82,204,0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,82,204,0.2);
    backdrop-filter: blur(5px);
}

.qb-icon-wrapper {
    position: relative;
    margin-right: 0.75rem;
}

.qb-icon {
    color: #0052CC;
    font-size: 1.25rem;
}

.qb-gear {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    color: #FFD700;
    animation: gearSpin 4s infinite linear;
}

@keyframes gearSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qb-text {
    color: #0052CC;
    font-weight: 600;
    font-size: 0.9rem;
}

.quickbase-gradient {
    background: linear-gradient(135deg, #0052CC, #00A3BF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.feature-icon {
    color: #0052CC;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Floating Animation for QB Elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.quickbase-badge {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-pill {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .quickbase-badge {
        padding: 0.5rem 1rem;
    }
}