body {
    font-family: 'Segoe UI', sans-serif;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.navbar-brand {
    font-weight: bold;
}

h1, h2, h3, h4 {
    font-weight: 600;
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

/* Fade-in Animations */
.animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.animate-fade.delay-1 { animation-delay: 0.3s; }
.animate-fade.delay-2 { animation-delay: 0.6s; }
.animate-fade.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}