/* Custom Styles and Animations for Aventrix Global */

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
}

.glass-panel-dark {
    background: rgba(10, 77, 140, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

html {
    scroll-behavior: smooth;
}

.hover-glow:hover {
    box-shadow: 0 10px 30px rgba(0, 182, 176, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hide scrollbar for a clean look in certain embedded elements */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
