/* Hero Image Settings */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1566321635338-79528659dc6b?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #003580; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #dcae1d; 
}