@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#05010f;
    color:white;
    overflow-x:hidden;
    position:relative;

}



/* ===== Animated Silk Background ===== */


body::before{

    content:"";
    position:fixed;

    width:900px;
    height:900px;

    top:-300px;
    left:-250px;

    background:
    radial-gradient(circle,
    rgba(0,220,255,0.45),
    transparent 60%);

    filter:blur(90px);

    animation:
    blueMove 12s infinite alternate;

    z-index:-1;

}



body::after{

    content:"";
    position:fixed;

    width:900px;
    height:900px;

    bottom:-350px;
    right:-250px;

    background:
    radial-gradient(circle,
    rgba(170,0,255,0.5),
    transparent 60%);


    filter:blur(100px);

    animation:
    purpleMove 14s infinite alternate;


    z-index:-1;

}



@keyframes blueMove{

from{
    transform:translate(0,0);
}

to{
    transform:translate(350px,200px);
}

}



@keyframes purpleMove{

from{
    transform:translate(0,0);
}

to{
    transform:translate(-300px,-200px);
}

}





/* ===== Header ===== */


header{

    padding:30px 8%;

    animation:down 1s ease;

}



nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.logo{

    font-size:32px;
    font-weight:800;

}



.logo span{

    color:#00ffff;

}



.links a{

    color:white;
    text-decoration:none;

    margin-left:25px;

    font-weight:500;

    transition:.4s;

}



.links a:hover{

    color:#00ffff;

}





/* ===== Hero ===== */


.hero{

    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:80px;

    padding:50px 10%;

}



.hero-text{

    animation:left 1.5s ease;

}



.hero h1{

    font-size:60px;

    line-height:1.1;

    font-weight:800;

}



.hero h1 span{

    background:
    linear-gradient(90deg,#00ffff,#b000ff);

    -webkit-background-clip:text;

    color:transparent;

}



.hero p{

    margin:30px 0;

    font-size:18px;

    line-height:1.8;

    color:#d0d0df;

    max-width:650px;

}



.btn{

    display:inline-block;

    background:
    linear-gradient(90deg,#00ffff,#9900ff);

    color:black;

    padding:15px 35px;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}



.btn:hover{

    transform:scale(1.1);

    box-shadow:0 0 30px #00ffff;

}





/* ===== Terminal ===== */


.terminal{

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 0 40px rgba(161, 109, 243, 0.3);

    animation:
    float 4s infinite;

 text-align:left;
}


.terminal p{
    text-align:left;
    margin:15px 0;
}




.terminal p{

    color:#00ffff;

    margin:20px 0;

    font-family:monospace;

}





/* ===== Sections ===== */


section{

    padding:90px 10%;

    text-align:center;

}



section h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:45px;

}





section p{

    color:#ccccdd;

    line-height:1.9;

    font-size:17px;

}





/* ===== Cards ===== */


.cards{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}



.card,
/* ===== Future Learning Path ===== */

#courses .course{

    width:320px;
    min-height:360px;

    display:inline-flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

    margin:15px;

    background:
    rgba(255,255,255,0.06);

    backdrop-filter:blur(20px);

    border-radius:25px;

    border:1px solid rgba(255,255,255,0.12);

    padding:35px;

    transition:.5s;

    animation:appear 1s ease;

}


#courses{

    text-align:center;

}


#courses .course:hover{

    transform:
    translateY(-15px)
    scale(1.03);

    box-shadow:
    0 0 35px rgba(0,255,255,.4);

}



#courses .course i{

    font-size:55px;

    color:#00ffff;

    margin-bottom:25px;

    animation:pulse 2s infinite;

}



#courses .course h3{

    font-size:23px;

    margin-bottom:20px;

}



#courses .course p{

    font-size:15px;

    line-height:1.8;

    color:#d5d5e5;

}



#courses .course span{

    margin-top:20px;

    color:#ffae00;

    font-weight:800;

    letter-spacing:2px;

}



/* Mobile */

@media(max-width:900px){

    #courses .course{

        width:90%;

        margin:15px auto;

    }

}





/* ===== Social ===== */


.social i{

    font-size:55px;

    margin:20px;

    color:white;

    transition:.4s;

}



.social i:hover{

    color:#00ffff;

    transform:
    scale(1.3)
    rotate(10deg);

}




footer{

    padding:30px;

    text-align:center;

    background:#020005;

}





/* ===== Animations ===== */


@keyframes pulse{

50%{

transform:scale(1.15);

}

}



@keyframes float{

50%{

transform:translateY(-15px);

}

}



@keyframes appear{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}



@keyframes left{

from{

opacity:0;

transform:translateX(-80px);

}

to{

opacity:1;

transform:translateX(0);

}

}



@keyframes down{

from{

opacity:0;

transform:translateY(-40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  header{
    padding:20px 6%;
  }

  nav{
    flex-direction:column;
    gap:15px;
  }

  .links a{
    margin-left:12px;
    margin-right:12px;
    font-size:14px;
  }

  .hero{
    flex-direction:column;
    gap:40px;
    padding:40px 6%;
    text-align:center;
  }

  .hero-text{
    width:100%;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
    max-width:100%;
  }

  .terminal{
    width:100%;
    padding:20px;
  }

  section{
    padding:60px 6%;
  }

  section h2{
    font-size:28px;
  }
}