@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    color:white;
    background:#000;
    overflow-x:hidden;
    position:relative;
}


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

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

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

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    filter:blur(1px);
    transform:scale(1.05);

    z-index:-1;
}


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

nav{
    width:100%;
    padding:25px 10%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(8px);

    position:sticky;
    top:0;
    z-index:100;
}

nav h2{
    font-size:20px;
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:15px;
    transition:.3s;
}

nav ul li a:hover{
    color:#00d4ff;
}


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

.hero{
    min-height:80vh;

    display:flex;
    align-items:center;

    padding:80px 10%;
}

.hero-left{
    max-width:650px;
}

.hero h1{
    font-size:36px;
    font-weight:600;
}

.hero h3{
    margin-top:15px;
    color:#00d4ff;
    font-size:18px;
}

.hero p{
    margin-top:20px;
    color:#ccc;
    line-height:1.8;
    font-size:17px;
}


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

.career{
    padding:80px 10%;

    text-align:center;

    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(6px);
}

.career h2,
.projects h2,
.personal h2,
.about h2{
    font-size:30px;
    margin-bottom:15px;
}

.career-intro,
.personal-intro{
    color:#aaa;
    margin-bottom:40px;
}

.career-cards{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.career-card{
    width:450px;

    background:#111;

    border:1px solid #222;

    padding:30px;

    border-radius:20px;

    text-decoration:none !important;
    color:white !important;

    display:block;

    transition:.3s;
}


/* =====================
   CLAIMS PROGRAMMES
===================== */

.programmes{
    margin-top:18px;
    text-align:left;
}

.programmes h4{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
    color:#00d9ff;
}

.programmes ul{
    margin:0;
    padding-left:18px;
}

.programmes li{
    font-size:13px;
    line-height:1.5;
    margin-bottom:4px;
}


/* =====================
   CAREER CARD LINKS
===================== */

.career-card:link,
.career-card:visited,
.career-card:hover,
.career-card:active{
    color:white !important;
    text-decoration:none !important;
}

.career-card:hover{
    transform:translateY(-8px);
    border-color:#00d4ff;
}

.career-card i{
    font-size:40px;
    color:#00d4ff;
    margin-bottom:20px;
}

.career-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.career-card p{
    color:#bbb;
    font-size:14px;
    line-height:1.7;
}


/* =====================
   FEATURED PROJECTS
===================== */

.projects{
    padding:80px 10%;

    text-align:center;

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

.cards{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.card{
    width:450px;

    background:#111;

    border:1px solid #222;

    padding:30px;

    border-radius:20px;

    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#00d4ff;
}

.card i{
    font-size:40px;
    color:#00d4ff;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:10px;
}

.card p{
    color:#bbb;
}


/* =====================
   PERSONAL DEVELOPMENT
===================== */

.personal{
    padding:80px 10%;

    text-align:center;

    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(6px);
}

.personal-card{
    max-width:700px;
    margin:auto;

    background:#111;

    border:1px solid #222;

    padding:35px;

    border-radius:20px;

    transition:.3s;

    cursor:pointer;

    display:block;

    outline:none;

    text-decoration:none !important;
    color:white !important;
}

.personal-card:hover{
    transform:translateY(-5px);
    border-color:#00d4ff;
}

.personal-card:focus,
.personal-card:focus-visible{
    outline:none;
    box-shadow:none;
}

.personal-card:link,
.personal-card:visited,
.personal-card:hover,
.personal-card:active{
    color:white !important;
    text-decoration:none !important;
}

.personal-card i{
    font-size:45px;
    color:#00d4ff;
    margin-bottom:20px;
    display:inline-block;
}

.personal-card p{
    color:#bbb;
    line-height:1.8;
}

.skill-tags{
    margin-top:25px;
}

.skill-tags span{
    display:inline-block;

    background:#222;

    padding:8px 15px;

    margin:5px;

    border-radius:20px;

    font-size:13px;
}


/* =====================
   ABOUT
===================== */

.about{
    padding:80px 10%;

    text-align:center;

    background:rgba(0,0,0,0.55);
}

.about p{
    max-width:800px;

    margin:auto;

    color:#bbb;

    line-height:1.8;
}


/* =====================
   PERSONAL PROJECTS PAGE
===================== */

.projects-page{
    padding:80px 10%;

    min-height:80vh;

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

    backdrop-filter:blur(6px);
}


/* =====================
   PAGE HEADER
===================== */

.projects-page-header{
    max-width:850px;

    margin:0 auto 50px;

    text-align:center;
}

.projects-page-header .eyebrow{
    color:#00d4ff;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;
}

.projects-page-header h1{
    font-size:38px;

    font-weight:600;

    margin-bottom:18px;
}

.projects-page-header p{
    color:#aaa;

    line-height:1.8;

    font-size:15px;
}


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

.project-list{
    max-width:1000px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:25px;
}


/* =====================
   PROJECT ITEM
===================== */

.project-item{
    display:flex;

    align-items:flex-start;

    gap:30px;

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

    border:1px solid #222;

    border-radius:20px;

    padding:35px;

    transition:.3s;
}

.project-item:hover{
    transform:translateY(-5px);

    border-color:#00d4ff;
}


/* =====================
   PROJECT ICON
===================== */

.project-icon{
    min-width:70px;

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#151515;

    border:1px solid #222;

    border-radius:15px;

    transition:.3s;
}

.project-item:hover .project-icon{
    border-color:#00d4ff;
}

.project-icon i{
    font-size:30px;

    color:#00d4ff;
}


/* =====================
   PROJECT CONTENT
===================== */

.project-content{
    flex:1;

    text-align:left;
}

.project-number{
    color:#00d4ff;

    font-size:12px;

    letter-spacing:1.5px;

    margin-bottom:10px;
}

.project-content h2{
    font-size:24px;

    font-weight:600;

    margin-bottom:12px;
}

.project-content p{
    color:#bbb;

    font-size:14px;

    line-height:1.8;

    max-width:800px;
}


/* =====================
   PROJECT TAGS
===================== */

.project-tags{
    margin-top:20px;
}

.project-tags span{
    display:inline-block;

    background:#222;

    color:#ccc;

    padding:7px 13px;

    margin:4px;

    border-radius:20px;

    font-size:12px;
}


/* =====================
   PROJECT BUTTON
===================== */

.project-button{
    display:inline-block;

    margin-top:20px;

    padding:9px 17px;

    border:1px solid #00d4ff;

    border-radius:8px;

    color:#00d4ff !important;

    background:transparent;

    text-decoration:none !important;

    font-size:13px;

    transition:.3s;
}

.project-button:hover{
    background:#00d4ff;

    color:#000 !important;
}


/* =====================
   FOOTER
===================== */

footer{
    padding:30px;

    text-align:center;

    color:#888;
}


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

@media(max-width:768px){

    nav{
        flex-direction:column;

        gap:20px;

        padding:20px;
    }

    nav ul{
        gap:15px;

        flex-wrap:wrap;

        justify-content:center;
    }

    .hero{
        padding:60px 20px;
    }

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

    .hero h3{
        font-size:18px;
    }

    .career,
    .projects,
    .personal,
    .about{
        padding:60px 20px;
    }

    .career h2,
    .projects h2,
    .personal h2,
    .about h2{
        font-size:28px;
    }

    .career-card,
    .card{
        width:100%;

        max-width:350px;
    }

    .hero-buttons a{
        margin-bottom:15px;
    }


    /* =====================
       PERSONAL PROJECTS MOBILE
    ===================== */

    .projects-page{
        padding:60px 20px;
    }

    .projects-page-header h1{
        font-size:30px;
    }

    .projects-page-header p{
        font-size:14px;
    }

    .project-list{
        gap:20px;
    }

    .project-item{
        flex-direction:column;

        gap:20px;

        padding:25px;
    }

    .project-icon{
        min-width:60px;

        width:60px;

        height:60px;
    }

    .project-icon i{
        font-size:25px;
    }

    .project-content h2{
        font-size:21px;
    }

    .project-content p{
        font-size:14px;
    }

}