/* Place your css here */

body {
    background: linear-gradient(180deg, #004B7A 0%, #00263F 5%, #0D1117 100%);
    min-height: 100vh;
    color: #ffffff;
}

a {
    color: #6EC1E4;
    text-decoration: none;
}

a:hover {
    color: #6EC1E4;
    text-decoration: underline;
}

main[data-sfcontainer="Content"] > .sf-zone-widget {
    background: linear-gradient(180deg, #004B7A 0%, #00263F 5%, #0D1117 100%);
    border: 1px solid rgba(110, 193, 228, 0.15);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 12px 0;
}

.section-box {
    background: linear-gradient(180deg, #004B7A 0%, #00263F 5%, #0D1117 100%);
    border: 1px solid rgba(110, 193, 228, 0.15);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 25px 0;
}

h5,
main[data-sfcontainer="Content"] .sf-zone-widget h5,
.section-box h5 {
    color: #6EC1E4;
}

.btn-hover-lighten {
    cursor: pointer;
    transition: filter 0.2s ease;
}

.btn-hover-lighten:hover {
    filter: brightness(1.3);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}








