* {
    font-family: 'Istok Web', sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: whitesmoke;
    transition: 0.70s;
    list-style: none;
}
body {
    overflow-x: none !important;
    background: linear-gradient(to bottom right, #09001A, #14003B);
}
html{
    scroll-behavior: smooth;
}
button:hover{
    box-shadow: 0px 0px 30px #5900ff48;
}
#scrollTopBtn {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 20px;
    background: linear-gradient(to bottom,#5800FF, #350099);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #scrollTopBtn:hover {
    box-shadow: 0px 0px 30px #8c00ff36;
  }
  
::selection {
    background: #8c00ff;
    color: #fff;
}
::-webkit-scrollbar{
    border-radius: 1000px;
    background: #11001f;
    height: 3px;
    width: 5px;
}
::-webkit-scrollbar-corner{
    opacity: 0;
}
::-webkit-scrollbar-thumb{
    width: 15px;
    background: linear-gradient(#150025, #5800FF, #150025);
}
::-webkit-scrollbar-corner{
    opacity: 0;
}

/*=== Header ===*/
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 43px;
    padding: 19px;
    position: sticky;
    border-radius: 20px;
    top: 20px;
    width: 90%;
    border: 1px solid #ffffff09;
    max-width: 1100px;
    background:#11003171;
    backdrop-filter: blur(5px);
    margin: auto;
    box-shadow: 0px 0px 20px #00000050;
    z-index: 9999999999999999;
    
}
header img {
    width: 65px;
    height: 65px;
}
header a {
    font-size: 22px;
    opacity: 70%;
}
header a:hover{
    filter: drop-shadow(0px 0px 10px #ffffff31);
    font-weight: bold;
    opacity: 1;
}
header button.active{
    background: #5800FF;
    color: #FFF;
}
.nav-link.active {
    font-weight: bold;
    opacity: 1 !important;
    filter: drop-shadow(0px 0px 10px #ffffff31);
  }
  
header .line {
    width: 1px;
    height: 95%;
    border-radius: 100px;
    background: #fff;
    opacity: 50%;
}
header button {
    padding: 8px;
    background: none;
    border: 2px solid #5800FF;
    width: 150px;
    font-size: 19px;
    border-radius: 5px;
}
header #menuToggle{
    font-size: 30px;
    margin-left: 10px;
    display: none;
}
header button:hover {
    background: #5800FF;
}
@media(min-width: 750px) {
    #navMenu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        max-width: 600px;
    }
}
@media(max-width: 955px){
    #navMenu{
        max-width: 450px !important;
    }
    #navMenu a{
        font-size: 17px;
    }
}
@media(max-width: 789px) {
    #menuToggle {
        display: block !important;
    }
    .line {
        display: none;
    }
    #navMenu {
        flex-direction: column;
        gap: 10px;
        background: #070014f6;
        position: fixed;
        width: 100%;
        max-width: 250px !important;
        height: 300px;
        border-radius: 10px;
        margin: auto;
        left: 10px;
        top: -1000px;
        gap: 20px;
        padding: 20px;
    }
    #navMenu li{
        padding: 7px;
        border-radius: 10px;
        margin-top: 20px;
    }
    #navMenu.active {
        top: 100px;
    }
    #navMenu a {
        font-size: 22px;
    }
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 85%;
    }

    header img {
        order: 2;
        margin: 0px auto ;
        transform: translateX(20px);
    }

    header a{
        margin-right: 20px !important;
        order: 3;
        width: 130px;
    }
}

/*=== Timeline ===*/
.main-timeline-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    position: relative;
}
.timeline-container {
    position: fixed;
    top: 130px;
    height: 100%;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    width: 100%;
    max-width: 110px;
    margin: auto;
}
@media(max-height: 650px) {
    .timeline-container {
        height: 470px !important;
    }
}
@media(max-height: 600px) {
    .timeline-container {
        height: 440px !important;
    }
}
@media(max-height: 550px) {
    .timeline-container {
        height: 370px !important;
    }
}
@media(max-height: 500px) {
    .timeline-container {
        height: 320px !important;
    }
    .timeline-dot {
        width: 10px !important;
        height: 10px !important;
    }
}
@media(max-height: 450px) {
    .timeline-container {
        height: 250px !important;
    }
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #20005D;
    left: -10px;
    transform: translateX(-50%);
}
.timeline-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #20005D;
    border-radius: 50%;
    transition: 0.3s ease;
    left: -10px;
    transform: translateX(-50%);
    cursor: pointer;
}
.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    transform: translateY(-50%);
}
.timeline-dot.active {
    background-color: #5800FF;
    box-shadow: 0 0 25px #5900ff48;
}
.dot-1 { top: 0%; }
.dot-2 { top: 30%; }
.dot-3 { top: 50%; }
.dot-4 { top: 70%; }
.dot-5 { top: 100%; transform: translate(-50%, -100%); }

/*=== Hero Section ===*/
.hero{
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 80px auto 0 !important;
    max-width: 1100px;
    width: 100%;
}
.hero-content{
    margin-left: 50px;
}
.hero-content h3 {
    font-size: 25px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 55px;
    color: #5800FF;
    filter: drop-shadow(0px 0px 20px #5900ff46);
    font-weight: bold;
    margin-bottom: 10px;
}
.hero-img img{
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-top: 20px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}
.hero-buttons i{
    font-size: 23px;
    padding-right: 5px;
}
.btn-purple {
    background: #5800FF;
    padding: 10px;
    border: none;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 180px;
    height: 40px;
}

.btn-outline {
    background: transparent;
    padding: 10px;
    border: 2px solid #5800FF;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 180px;
    height: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    position: absolute;
    margin: auto;
    gap: 20px;
    font-size: 24px;
    bottom: -30px;
}
.social-icons i{
    font-size: 30px;
}
span{
    color: #5800FF;
}
@media(max-width:500px){
    .hero h3{
        font-size: 19px;
    }
    .hero h1{
        font-size: 2.7em;
    }
    .btn-purple{
        width: 130px;
        font-size: 12px;
    }
    .btn-outline{
        width: 130px;
        font-size: 12px;
    }
    .hero-buttons i{
        font-size: 15px;
    }
}
@media(max-width: 570px){
    .hero h1{
        font-size: 2.5rem;
    }
}
@media(max-width: 450px){
    .hero h1{
        font-size: 2.3rem;
    }
}
@media(max-width: 440px){
    .hero h1{
        font-size: 2.1rem;
    }
}
@media(max-width: 430px){
    .hero h1{
        font-size: 2.0rem;
    }
    .hero h3{
        font-size: 19px;
    }
}
@media(max-width: 420px){
    .hero h1{
        font-size: 2rem;
    }
}


/*=== About Section ===*/
section{
    margin: auto;
}
.title{
    padding: 10px;
    text-align: center;
    position: relative !important;
    margin-top: 100px;
}
.title h1{
    color: #5800FF;
    margin: auto;
    font-size: 100px;
    z-index: 0;
    opacity: 0.10;
    font-weight: 500;
}
@media(max-width: 553px){
    .title h1{
        font-size: 80px;
    }
}
@media(max-width:446px){
    .title h1{
        font-size: 70px;
    }
}
@media(max-width: 394px){
    .title h1{
        font-size: 60px;
    }
    .title h2{
        font-size: 35px !important;
    }
}
.title h2{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-size: 40px;
    color: #5800FF;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.about {
    max-width: 1200px;
    width: 100%;
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}
.about img{
    width: 100%;
    max-width:430px;
    height: 390px;
    border-radius: 20px;
    object-fit: cover;
}
.about h1{
    font-size: 60px;
}
.about p{
    opacity: 0.70;
    font-size: 20px;
    width: 100%;
    max-width:600px;
    font-weight: bold;
    text-align: left;
    font-weight: bold;
}
@media(max-width:750px){
    .about h1{
        font-size: 50px;
    }
    .about p{
        font-size: 22px;
        max-width: 470px;
    }
}
@media(max-width:650px){
    .about h1{
        font-size: 40px;
    }
    .about p{
        font-size: 20px;
    }
}
@media(max-width:467px){
    .title h2{
        font-size: 35px;
    }
    .about h1{
        font-size: 35px;
    }
}
@media(max-width: 415px){
    .about h1{
        font-size: 30px;
    }
    .about p{
        font-size: 18px;
    }
}
.skills-wrapper{
    max-width: 1100px;
    margin: auto;
}
.skills{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-left: 50px;
    gap: 0px;
}
#skill{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    width: 90%;
    max-width: 480px;
    height: 230px;
    border-radius: 20px;
    background: #080016;
    box-shadow: inset 0px 0px 10px #ffb87515;
    margin-top: 10px;
}

#skill h1{
    font-size: 40px;
    text-align: center;
}
#skill p{
    text-align: center;
    opacity: 0.70;
}
#skill i{
    font-size: 140px;
    padding: 20px;
    color: #FF3300;
    margin-top: 20px;
}
#skill .line{
    width: 1px;
    height: 100%;
    height: 150px;
    background: #FF3300;
    display: block !important;
}
.html span{
    color: #FF3300;
}
.skill-logo{
    position: relative;
    text-align: center;
}
.skill-logo h2{
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    font-size: 40px;
    font-weight: 900;
}
.css{
    box-shadow: inset 0px 0px 10px #0077ff25 !important;
}
.css span{
    color: #0077FF;
}
.css .skill-logo i{
    color: #0077FF !important;
}
.css .line{
    background: #0077FF !important ;
}
.js{
    box-shadow: inset 0px 0px 10px #fffb001e !important;
}
.js span{
    color: #FFE100;
}
.js .skill-logo svg{
    width: 130px;
    margin-top: 20px;
    padding: 20px;
    fill: #FFE100 !important;
}
.js .skill-logo h2{    
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    top: 7px;
    font-size: 28px;
}
.js .line{
    background: #FFE100 !important ;
}

.bootstrap{
    box-shadow: inset 0px 0px 10px #a200ff34 !important;
}
.bootstrap span{
    color: #A100FF;
}
.bootstrap .skill-logo i{
    color: #A100FF !important;
}
.bootstrap .line{
    background: #A100FF !important;
}
.bootstrap h2{
    top: 12px;
    font-size: 27px;
}
.react{
    max-width: 370px !important;
    padding: 0px 20px 0px 10px!important;
    gap: 0px !important;
    box-shadow: none !important;
}
.react h1{
    font-size: 30px !important;
    font-weight: 500;
}
.react .skill-logo i{
    color: #00e1ff !important;
}
.react .line{
    background: #00e1ff !important ;
}

.php{
    max-width: 370px !important;
    padding: 0px 20px 0px 10px!important;
    gap: 0px !important;
    box-shadow: none !important;
    position: relative !important;
}
.php h1{
    font-size: 30px !important;
    font-weight: 500;
}
.php .skill-logo i{
    color: #ff9f60 !important;
    font-size: 60px !important;
}
.php .skill-logo .line{
    height: 1px !important;
    width: 120px !important;
    margin: auto;
    background: #fccfb1 !important;
    opacity: 0.3;
}
.php .line{
    background: #ff9f60 !important ;
}
.figma{
    max-width: 200px !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.figma img{
    width: 200px;
}
.github{
    max-width: 200px !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.github i{
    font-size: 170px !important;
    color: #fff !important;
}

@media(max-width:500px){
    #skill h1{
        font-size: 30px;
    }
}
@media(max-width:490px){
    #skill{
        flex-wrap: wrap;
        height: 100%;
        width: 100%;
        max-width: 250px;
        padding: 30px !important;
        justify-content: center;
    }
    .react, .php, .figma, .github{ 
        width: 100%;
        max-width: 250px !important;
    }
    #skill h1{
        margin-top: 30px;
    }
    .line{
        height: 1px !important;
        width: 100% !important;
    }
}

/*=== Projects section ===*/
.project{
    width: 80%;
    max-width: 1000px;
    margin: auto;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    background: linear-gradient(to right,#0C0022, #20005D);
    gap: 15px;
    border: 1px #ae00ff1e solid;
    position: relative;
}

.project a{
    position: absolute;
    left: 52%;
    bottom: -10px;
    transform: translate(-50%, 0);
    background: linear-gradient(#5800FF, #8c00ff);
    padding: 10px;
    border-radius: 5px;
    width: 25px;
}
.project i{
    font-size: 40px !important;
}
.project a i{
    font-size: 28px !important;
}
@media(max-width:1215px){
    .project{
        max-height: 600px !important;
        width: 100%;
        max-width: 400px;
        height: 100%;
        padding: 10px;
        flex-wrap: wrap;
    }
    .project h1{
        margin-top: 20px;
        font-size: 30px !important;
    }
    .project .line{
        display: block;
    }
    .project img{
        max-height: 500px;
        max-width: 100%;
        border-radius: 10px 10px 0px 0px !important;
    }
}
@media(max-width:426px){
    .project{
        max-width: 300px;
    }
    .project h1{
        font-size: 25px !important;
    }
    .project p{
        font-size: 17px !important;
    }
    .project i, .project svg{
        font-size: 30px !important;
        width: 25px !important;
    }
    .project a{
        width: 20px;
        height: 20px;
    }
    .project a i{
        font-size: 21px !important;
    }
    .feature p{
        font-size: 22px !important;
    }
    .title h1{
        font-size: 50px !important;
    }
}
.project h1{
    font-size: 27px;
    font-weight: bold; 
}
.project-link{
    display: flex;
    align-items: center;
    gap: 7px;
}

.project-link i{
    color: #5800FF;
    font-size: 20px !important;
}
.project .line{
    width: 90%;
    height: 1px;
    background: #fff;
}
.project p{
    opacity: 0.70;
    font-size: 20px;
    max-width: 420px;
    font-weight: 600;
}
.project img{
    height: 100% !important;
    border-radius: 10px;
}
.tools{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.project svg, .project i{
    font-size: 40px;
    width: 33px;
    fill: #FFE100;
}
#html{
    color: #FF3300;
}
#css{
    color: #0077FF;
}
#section3 ul h2{
    font-size: 30px;
    margin-top: 50px;
    text-shadow: 0px 0px 50px #5800FF;
    background: #5800FF;
    max-width: 500px;
}
#section3 ul li a{
    font-weight: bold;
    text-decoration: 2px underline #5800FF;
    font-size: 22px;
    margin-top: 10px;
}
/*=== Features section ===*/
.features-wrapper{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.features{
    flex-wrap: wrap;
    gap: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 130px;
}
@media(max-width:930px){
    .features{
        margin-left: 40px !important;
    }
}
.features .feature{
    position: relative;
    background: linear-gradient(#300286, #180046);
    width: 100%;
    max-width: 350px;
    height: 420px;
    border-radius: 20px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid #08001609;
    padding: 10px;
}
.feature:hover{
    transform: scale(0.95) !important;
    box-shadow: 0px 0px 50px #0000001a;
}
.feature .line{
    width: 90% !important;
    margin: auto;
    height: 1px;
    background: #fff;
    display: block !important;
    margin-top: 50px;
}
.feature h1{
    margin-top: 60px;
    font-size: 30px;
}
.feature p{
    margin-top: 50px;
    font-size: 24px;
    opacity: 0.70;
    font-weight: 600;
    max-width: 350px;
    text-align: center;
    margin: 30px auto 0px;
}
.feature .f-number{
    position: absolute;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 60px;
    top: -20px;
    left: -20px;
    font-size: 25px;
    background: linear-gradient(to left, #0A011D, #2D0583);
}

/*=== Contact section ===*/
.contact-wrapper{
    max-width: 1200px !important;
    margin: auto;
    width: 100%;
}
.contact{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
form{
    width: 90%;
    max-width: 500px;
    height: 350px;
    margin-top: 20px;
}
form .input-container{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-bottom: 2px #5800FF solid;
    background: #15003E;
    border-radius: 7px;
    width: 100%;
    padding: 7px;
    margin-top: 30px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
form button{
    background: linear-gradient(to right top,#5800FF, #8c00ff);
    border-radius: 7px;
    width: 104%;
    height: 40px;
    border: none;
    font-size: 20px;
    font-weight: bold;
}
form textarea{
    border: 1px #5800FF solid;
    background: #15003E;
    border-radius: 7px;
    width: 100%;
    padding: 7px;
    margin-top: 30px;
    height: 120px;
    outline: none;
    font-size: 18px;
}
form textarea::placeholder{
    color: #FFF;
    font-size: 18px;
    opacity: 0.90;
}
form .input-container input{
    background: none;
    border: none;
    width: 90%;
    max-width: 400px;
    height: 35px;
    outline: none;
    font-size: 18px;
}
form .input-container i{
    font-size: 25px;
    color: #5800FF;
    margin-left: 10px;
}
form .input-container input::placeholder{
    font-size: 18px;
    color: #fff;
    position: absolute;
    opacity: 0.90;
}
.contact-info{
    background: #15003E;
    max-width: 500px;
    width: 90%;
    border: 10px;
    height: 350px;
    border-radius: 10px;
    position: relative;
}
.contact-info iframe{
    width: 80%;
    max-width: 440px;
    height: 200px !important;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 10px;
    border: 2px #5800FF solid;
    margin-top: 20px;
}
.contact-info .c-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    background: #0000002f;
    max-width: 200px;
    color: #5800FF;
}
.c-icon-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}
.c-icon i{
    color: #5800FF;
    font-size: 40px;
}
.c-icon h3{
    color: #5800FF;
}

/*=== Footer :) ===*/
footer{
    background: linear-gradient( #15003E, #0e0029);
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    text-align: center;
    padding: 20px 0px 20px 0px;
}
footer h2{
    color: #5800FF;
    font-size: 30px;
}
footer li{
    padding: 05px;
    opacity: 0.80;
    font-size: 18px;
}
footer li:hover{
    opacity: 1;
}
footer img{
    width: 100px;
    justify-content: center;
    text-align: center;
    margin: auto;
}
footer i{
    font-size: 30px;
    margin-left: 10px;
    margin-top: 10px;
}
footer i:hover{
    color: #5800FF;
}
@media(max-width:650px){
    footer{
        flex-direction: column !important;
    }
    footer div, footer ul{
        margin-top: 50px;
    }
    .title h1{
        font-size: 80px;
    }
}
