*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


/* ==========================
   BODY
========================== */

body{
    margin:0;
    min-height:100vh;

    color:white;

    padding:40px;

    position:relative;

    overflow-x:hidden;

    background:#050505;
}


/* ==========================
   BACKGROUND IMAGE
========================== */

body::before{
    content:"";

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url("ITBACKGROUND.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    filter:blur(1px);

    transform:scale(1.05);

    z-index:-2;
}


/* ==========================
   CONTAINER
========================== */

.container{
    max-width:1300px;

    margin:auto;
}


/* ==========================
   CAREER NAVIGATION
========================== */

.career-navigation{
    position:sticky;

    top:15px;

    z-index:1000;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin:0 auto 40px;

    padding:7px;

    width:fit-content;

    max-width:100%;

    background:rgba(17,17,17,0.88);

    border:1px solid rgba(255,255,255,0.10);

    border-radius:14px;

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.35);
}


/* ==========================
   NAVIGATION BUTTONS
========================== */

.career-navigation a{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    min-width:85px;

    text-decoration:none;

    color:#aaa;

    font-size:13px;

    font-weight:500;

    padding:10px 17px;

    border-radius:9px;

    border:1px solid transparent;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* ==========================
   HOME ICON
========================== */

.home-icon{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:17px;

    line-height:1;

    color:#00d9ff;

    transition:0.25s ease;
}


/* ==========================
   NAVIGATION HOVER
========================== */

.career-navigation a:hover{
    color:#00d9ff;

    background:rgba(0,217,255,0.08);

    border-color:rgba(0,217,255,0.18);

    transform:translateY(-2px);

    box-shadow:
        0 5px 15px rgba(0,217,255,0.08);
}


.career-navigation a:hover .home-icon{
    transform:scale(1.08);
}


/* ==========================
   ACTIVE PAGE
========================== */

.career-navigation a.active{
    color:#00d9ff;

    background:rgba(0,217,255,0.12);

    border-color:rgba(0,217,255,0.30);

    box-shadow:
        0 0 15px rgba(0,217,255,0.06);
}


/* ==========================
   HERO
========================== */

.hero{
    margin-bottom:50px;
}


.hero h1{
    font-size:26px;

    font-weight:600;
}


.hero span{
    color:#00d4ff;
}


.hero p{
    margin-top:15px;

    color:#aaa;

    font-size:18px;

    line-height:1.7;

    max-width:850px;
}


/* ==========================
   GENERAL CARD
========================== */

.card{
    background:rgba(17,17,17,0.65);

    padding:35px;

    border-radius:20px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);
}


.card h2{
    color:#00d4ff;

    font-size:20px;

    margin-bottom:10px;
}


.card h3{
    font-size:16px;

    font-weight:500;

    margin-bottom:6px;
}


.card .subtext{
    font-size:15px;

    line-height:1.7;

    color:#aaa;

    margin-bottom:20px;
}


/* ==========================
   FLOW
========================== */

.flow{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
}


.box{
    background:#1a1a1a;

    padding:18px 20px;

    border-radius:12px;

    text-align:center;

    color:#ddd;

    min-width:150px;

    font-size:14px;
}


/* ==========================
   ARROW
========================== */

.arrow{
    color:#00d4ff;

    font-size:28px;

    font-weight:bold;
}


/* ==========================
   NOTE
========================== */

.note{
    margin-top:20px;

    color:#777;

    font-size:14px;

    line-height:1.6;
}


/* ==========================
   DASHBOARD PROJECT
========================== */

.dashboard-project{
    margin-top:30px;

    padding:25px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:16px;

    transition:0.3s ease;
}


.dashboard-project:hover{
    border-color:#00d4ff;

    transform:translateY(-3px);
}


/* ==========================
   MAIN DASHBOARD
========================== */

.main-dashboard{
    padding:28px;
}


/* ==========================
   DASHBOARD HEADER
========================== */

.dashboard-header{
    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    margin-bottom:20px;
}


.dashboard-header h3{
    margin-bottom:5px;
}


.dashboard-purpose{
    color:#777;

    font-size:13px;

    line-height:1.5;
}


/* ==========================
   DASHBOARD TAG
========================== */

.dashboard-tag{
    color:#00d4ff;

    border:1px solid rgba(0,212,255,0.3);

    background:rgba(0,212,255,0.05);

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    white-space:nowrap;
}


/* ==========================
   DASHBOARD IMAGE
========================== */

.dashboard-image{
    width:100%;

    margin-top:20px;
}


.image-placeholder{
    width:100%;

    min-height:400px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:rgba(0,0,0,0.35);

    border:1px dashed rgba(0,212,255,0.35);

    border-radius:12px;

    padding:40px 20px;
}


.placeholder-icon{
    font-size:42px;

    margin-bottom:15px;

    opacity:0.8;
}


.image-placeholder h4{
    color:#ddd;

    font-size:18px;

    font-weight:500;

    margin-bottom:6px;
}


.image-placeholder p{
    color:#00d4ff;

    font-size:14px;

    margin-bottom:8px;
}


.image-placeholder span{
    color:#777;

    font-size:13px;

    max-width:450px;

    line-height:1.6;
}


/* ==========================
   ACTUAL SCREENSHOT
========================== */

.dashboard-image img{
    width:100%;

    display:block;

    border-radius:12px;

    height:auto;
}


/* ==========================
   DASHBOARD DESCRIPTION
========================== */

.dashboard-description{
    margin-top:20px;
}


.dashboard-description p{
    color:#aaa;

    font-size:14px;

    line-height:1.7;

    margin:0;
}

.dashboard-description h4{
    font-size:16px;
    font-weight:600;
    color:#ddd;
    margin-bottom:8px;
}

.dashboard-description ul{
    padding-left:20px;
    margin:0;
}

.dashboard-description li{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
    margin-bottom:8px;
}

.dashboard-description li::marker{
    color:#00d4ff;
}


/* ==========================
   DASHBOARD TAGS
========================== */

.dashboard-tags{
    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:18px;
}


.dashboard-tags span{
    background:#1b1b1b;

    padding:6px 12px;

    border-radius:20px;

    color:#aaa;

    font-size:12px;
}


/* ==========================
   SECONDARY DASHBOARD GRID
========================== */

.dashboard-grid{
    display:grid;

    grid-template-columns:1fr;

    gap:20px;
}


.dashboard-grid .dashboard-project{
    margin-top:20px;
}

/* ==========================
   SMALL SCREENSHOT
========================== */

.small-image .image-placeholder{
    min-height:260px;
}


.small-image img{
    min-height:260px;

    object-fit:cover;
}


/* ==========================
   GENERAL LIST
========================== */

.card ul{
    padding-left:20px;
}


.card li{
    margin-bottom:10px;

    color:#ddd;

    line-height:1.7;

    font-size:15px;
}


.card ul li::marker{
    color:#00d4ff;
}


/* ==========================
   SKILLS
========================== */

.skills{
    display:flex;

    flex-wrap:wrap;

    gap:5px;
}


.skills span{
    display:inline-block;

    background:#1b1b1b;

    padding:8px 15px;

    margin:5px;

    border-radius:20px;

    color:#ddd;

    font-size:13px;
}


/* ==========================
   CONFIDENTIALITY
========================== */

.confidentiality{
    text-align:center;

    margin:30px 0 10px;

    padding:0 20px;
}


.confidentiality p{
    color:#666;

    font-size:12px;

    line-height:1.7;
}


/* ==========================
   TABLET
========================== */

@media(max-width:768px){

    body{
        padding:20px;
    }


    /* Navigation */

    .career-navigation{
        top:10px;

        margin:0 auto 30px;

        gap:5px;

        padding:6px;
    }


    .career-navigation a{
        min-width:75px;

        font-size:12px;

        padding:8px 12px;
    }


    .home-icon{
        font-size:16px;
    }


    /* Hero */

    .hero{
        margin-bottom:35px;
    }


    .hero h1{
        font-size:28px;
    }


    .hero p{
        font-size:16px;
    }


    /* Cards */

    .card{
        padding:25px;
    }


    /* Flow */

    .flow{
        flex-direction:column;
    }


    .arrow{
        transform:rotate(90deg);
    }


    .box{
        width:100%;
    }


    /* Dashboard */

    .dashboard-grid{
        grid-template-columns:1fr;
    }


    .dashboard-header{
        flex-direction:column;
    }


    .dashboard-tag{
        align-self:flex-start;
    }


    .main-dashboard{
        padding:20px;
    }


    .image-placeholder{
        min-height:280px;
    }


    .small-image .image-placeholder{
        min-height:230px;
    }


    .dashboard-project{
        padding:20px;
    }
}


/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:600px){

    .career-navigation{
        width:100%;

        max-width:100%;

        top:8px;

        margin:0 auto 25px;

        gap:4px;

        padding:5px;
    }


    .career-navigation a{
        flex:1;

        min-width:0;

        font-size:11px;

        padding:8px 6px;
    }


    .home-icon{
        font-size:16px;
    }
}