/* Custom Scroll & Animations */
html { scroll-behavior: smooth; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Original Blue Gradient */
.gradient-bg { 
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%) !important; 
}

/* Tools Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 50;
    top: 100%;
}
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    color: #1e293b !important;
    text-decoration: none;
}
.dropdown-content a:hover { background: #f1f5f9; color: #2563eb !important; }
.dropdown:hover .dropdown-content { display: block; }