/* * WZ AUTOMATION - CUSTOM STYLES
 * Location: /www/wwwroot/wzautomation.in/assets/css/style.css
 */

/* =========================================
   Navigation Bar Styling
========================================= */
.nav-link { 
    transition: all 0.3s ease; 
    border-bottom: 2px solid transparent; 
}

.nav-link.active { 
    color: #2563eb; 
    font-weight: 700; 
    border-bottom: 2px solid #2563eb; 
}

/* =========================================
   Scroll Animations (Fade In Up)
========================================= */
.fade-in-up { 
    animation: fadeInUp 0.8s ease-out forwards; 
    opacity: 0; 
    transform: translateY(20px); 
}

@keyframes fadeInUp { 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

/* =========================================
   Global Enhancements
========================================= */
/* Smooth scrolling jab koi anchor link par click kare */
html {
    scroll-behavior: smooth;
}

/* Image Fallback Background (jab tak image load na ho) */
img {
    background-color: #f8fafc;
}