@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #1A1E23 !important; 
}

/* Custom Electric Gradient for Headers */
h1, h2, h3, .text-xl {
    background: linear-gradient(90deg, #00E5FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Custom Application Cards */
.block {
    background-color: #212529 !important;
    border-left: 4px solid #00E5FF !important;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.block:hover {
    border-left: 4px solid #0066FF !important;
    transform: translateX(4px);
}
