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

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

    color:white;

    padding:40px;

    position:relative;

    overflow-x:hidden;

    background:#050505;
}

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

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;
}

/* ==========================
   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:6px;

    width:fit-content;

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

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

    border-radius:12px;

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

    box-shadow:
        0 8px 25px rgba(0,0,0,0.30);
}


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

    align-items:center;

    justify-content:center;

    gap:6px;

    text-decoration:none;

    color:#aaa;

    font-size:13px;

    font-weight:500;

    padding:9px 18px;

    border-radius:8px;

    border:1px solid transparent;

    transition:all 0.3s ease;
}


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

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

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

    transform:translateY(-1px);
}


.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.05);
}


/* HOME ICON */

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

    line-height:1;

    color:#00d9ff;

    display:inline-flex;

    align-items:center;

    justify-content:center;
}
/* ==========================
   HERO
========================== */

.hero{
    margin-bottom:50px;
}

.hero h1{
    font-size:26px;
    font-weight:600;
	line-height:1.3;
}

.hero span{
    color:#00d4ff;
}

.hero p{
    margin-top:15px;

    color:#aaa;

    font-size:18px;

    line-height:1.7;
	max-width:850px;
}

/* ==========================
   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:12px;
}

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

    line-height:1.7;

    color:#aaa;

    margin-bottom:20px;
}

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

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

.card li{
    margin-bottom:10px;

    color:#ddd;

    line-height:1.7;

    font-size:15px;
}

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

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

.flow{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
	margin-bottom: 25px;
}

.box{
    background:#1a1a1a;

    padding:18px 20px;

    border-radius:12px;

    text-align:center;

    color:#ddd;

    min-width:170px;
}

.arrow{
    color:#00d4ff;

    font-size:30px;

    font-weight:bold;
}

/* ==========================
   MONITORING SECTIONS
========================== */

.monitoring-section{
    margin-top:25px;

    padding:22px;

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

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

    border-radius:14px;
}

.monitoring-section h4{
    color:#00d4ff;

    font-size:17px;

    font-weight:600;

    margin-bottom:15px;
}

/* ==========================
   IMPACT
========================== */

.impact{
    display:flex;

    gap:25px;

    flex-wrap:wrap;
}

.metric{
    background:#0d0d0d;

    padding:25px;

    border-radius:15px;

    flex:1;

    text-align:center;
}

.metric h1{
    font-size:40px;

    color:#00d4ff;
}

.metric p{
    color:#aaa;
}

.impact-list{
    margin-top:25px;
}

/* ==========================
   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;
}

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

.note{
    margin-top:15px;

    color:#777;

    font-size:14px;

    line-height:1.6;
}

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

@media(max-width:600px){

    .career-navigation{
        position:sticky;
        top:10px;

        z-index:1000;

        width:calc(100% - 30px);

        gap:5px;

        padding:5px;
    }

    .career-navigation a{
        font-size:12px;

        padding:8px 10px;

        min-width:70px;
    }

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