/* Specstech Solution Custom Styles */

body {
    background-color: #0B0F19;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0F19;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0066FF;
}

/* Utilities */
.text-brand-blue { color: #0066FF; }
.bg-brand-blue { background-color: #0066FF; }
.bg-brand-dark { background-color: #0B0F19; }

/* 3D Canvas */
#canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}