<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Quick Navigation Buttons Styles */
.quick-nav-buttons {
    padding: 20px 0;
    margin: 20px 0;
    position: relative;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem !important;
}

.dark .quick-nav-buttons {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

    .quick-nav-buttons::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
        border-radius: 1px;
    }

.quick-nav-btn {
    position: relative;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 8px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-width: 2px;
    white-space: nowrap;
}

    .quick-nav-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .quick-nav-btn:hover::before {
        left: 100%;
    }

    .quick-nav-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-width: 2px;
    }

        .quick-nav-btn:hover .quick-nav-text {
            color: inherit;
        }

    .quick-nav-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.8;
        margin-right: 0.5rem;
    }

    .quick-nav-btn:hover i {
        transform: scale(1.1);
        opacity: 1;
    }

.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .hover-lift:hover {
        transform: translateY(-3px);
    }

/* Responsive Design */
@media (max-width: 576px) {
    .quick-nav-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 15px 0;
    }

    .quick-nav-btn {
        min-width: 200px !important;
        justify-content: center !important;
        margin: 3px 0 !important;
        width: 90% !important;
        max-width: 250px !important;
    }

    .quick-nav-text {
        font-size: 0.85rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .quick-nav-btn {
        font-size: 0.8rem;
        padding: 8px 16px !important;
        min-width: 140px;
    }
    
    .quick-nav-text {
        font-size: 0.8rem;
    }
}

/* Dark mode adjustments */
.dark .quick-nav-btn {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

    .dark .quick-nav-btn:hover {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

/* Scroll behavior enhancement */
html {
    scroll-behavior: smooth;
}

/* Section highlighting on scroll */
.section-highlight {
    background: linear-gradient(135deg, rgba(39, 87, 253, 0.1), rgba(39, 87, 253, 0.05)) !important;
    border-left: 4px solid #2757fd !important;
    padding-left: 1rem !important;
    transition: all 0.8s ease !important;
    animation: pulse-highlight 1.5s ease;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(39, 87, 253, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(39, 87, 253, 0);
    }
}

.dark .section-highlight {
    background: linear-gradient(135deg, rgba(39, 87, 253, 0.2), rgba(39, 87, 253, 0.1)) !important;
}

/* Button animation */
.btn-pulse {
    animation: btn-pulse-animation 0.3s ease-in-out;
}

@keyframes btn-pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}
</pre></body></html>