/* AlphaDuct Site custom style overrides */

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Ambient Wave Overlays */
.brand-bg-pattern {
    background-color: #fafbfc;
    background-image: radial-gradient(rgba(0, 101, 203, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 101, 203, 0.06);
}

/* Product Showcase Cards */
.product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 101, 203, 0.06);
    box-shadow: 0 4px 20px rgba(0, 101, 203, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 101, 203, 0.08);
    border-color: rgba(0, 101, 203, 0.15);
}

/* Micro Interactive Animations */
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #0065cb;
    border-radius: 4px;
}

/* Sliding Navigation mobile */
.mobile-slide {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}