/**
 * Future Career Page - Hero Canvas Styles
 */

.future-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

#future-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.future-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-top: 100px;
    /* Account for navbar */
}

/* Ensure content below hero doesn't overlap */
.future-hero-section+main {
    position: relative;
    z-index: 10;
    background: #020617;
}