body{
    background: #f7f4ed;
    cursor: url("img/cursor.png")0 0, auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.header{
width: 100%;
background-color: #0f172a;
margin: 0;
height: 70px;
display: flex;
    align-items: center;
color: rgba(255,255,255,0.78);
position: sticky;
top: 0;
z-index: 5;
position: relative;
}
.header img{
  width: 90px;
  height: 70px;
opacity: 0.78;
    filter: brightness(0) invert(1);
}

.header > a {
  margin: 0;
  /* display: inline-block; */
  text-decoration: none;
  color: rgba(255,255,255,0.78);
padding-bottom: 10px;
margin: 0;
 align-items: center;

    display: flex;

}
.header a h1{
    margin: 0;
    color: rgba(255,255,255,0.78);
}
.header-links{
  display: flex;
  /* gap: 100px;
  justify-content:space-between; */
  margin-left: auto;
}
.header-link{
/* justify-content: space-between; */
display: flex;
    gap: 50px;
  padding-right: 40px;  
}
.header-link a{
  text-decoration: none;
color: rgba(255,255,255,0.78);
}
.title{
    font-family:'Brush Script MT', cursive;
    text-align: center ;
}
.hero{
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: center;
    gap: 90px;
}
.photos{
    width: 250px;
    height: 250px;
    border-radius: 5px;
    
}
.portfolio{
  width: 70%;
  height: 50%;
   margin:0 auto;
}
.projects{
     display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 70px;

    align-items: start;
}

.project{
width: 360px;
    background: #0f172a;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 35px;
   box-shadow:
    0 25px 60px rgba(15,23,42,0.25);
    padding: 18px;

    transition: 0.4s ease;



     display: inline-block;
    width: 100%;
    break-inside: avoid;
}
.project:hover{
    transform: scale(1.02);
}
.project-photo{
  border:#243447 1px solid;
  width: 100%;
  height: 240px;
border-radius: 40px 40px 20px 20px;
 background: #19212b;
   /* box-shadow: 0 10px 20px rgba(0,0,0,0.25); */
   position: relative;

}
.project-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
0 30px 60px rgba(0,0,0,0.35);
}
.project-photo::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;

    background: radial-gradient(
        circle,
        rgba(59,130,246,0.18) 0%,
        rgba(59,130,246,0) 70%
    );
z-index: 0;
    top: -120px;
    left: -80px;
}
.project-photo::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(15,23,42,0) 0%,
        rgba(15,23,42,0.45) 50%,
        rgba(15,23,42,0.95) 100%
    );
}
.content-project{
   border-radius: 18px;
   line-height: 1.6;
    letter-spacing: 0.2px;
padding:3px 10px 5px 10px;
color: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  width: 78%;
  max-width: 300px;
  line-height: 1.8;
  margin: 0 auto;
  font-size: 15px;
  text-align: left;
  margin-left: auto;
margin-right: auto;
  font-family: 'Modern Sans', sans-serif;
  margin-top: 20px;
}
.project-type{
  width: 60%;
  height: 20px;
  border: 1px solid #4a443d;
  margin: 0 auto;
  border-radius: 20px;
  font-family:Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
   color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  text-align: center;
   position: relative;
    margin-top: -12px;
background: #5d8c0f;
    z-index: 10;
 }
h2{
  margin-top:18px;
  text-align: center;
   color: #FFFFFF;
  letter-spacing: 1px;
 font-family: 'Plus Jakarta Sans', sans-serif;
                                                  
}
.link{
   width:100px;
  height:auto;
  border: 1px solid #4a443d;
   border-radius: 20px;
   font-family:Arial, Helvetica, sans-serif;
   margin-top: 5px;
   text-align: center;
   margin-top: 15px;
    margin-bottom: 15px;
     box-shadow: 0 10px 20px rgba(0,0,0,0.25);
   font-weight: 700;
   color: #FFFFFF;
    background-color: #192406;
padding-bottom: 8px;
padding-top: 6px;
    font-size: 16px;   
    margin-left: 15px;
}
.link:hover{
    transform: scale(1.02);
}
.link a{
  color:#FFFFFF ;
  text-decoration: none;
}
.language{
border: 1px solid rgba(255,255,255,0.18);  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
   color: #A1A1AA;
}
.language:hover{
    transform: scale(1.02);
}
.languages{
   display: flex;
   gap: 10px;
     padding-left: 10px;
     padding-bottom: 15px;
}

hr{
    border: none;

    height: 1px;

    background: rgba(255,255,255,0.12);

    margin-top: 28px;
}


@media(max-width: 1200px){
    .projects{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 768px){
    .projects{
        grid-template-columns: 1fr;
    }
}

.about{
color: white;
  font-size: 60px;
text-shadow:
0 0 30px rgba(255,255,255,0.04);
 text-align: left;
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 700;
 background: linear-gradient(
        180deg,
        #ffffff 0%,
        #243447 35%,
        #243447 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
padding:0 70px 0 70px;

}


.aboutMe{
color: #243447;
font-weight:300;
  font-size: 20px;
line-height: 1;
letter-spacing: 1px;
padding:0 70px 0 70px;




}




/* From Uiverse.io by vikas7754 */ 
@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}

@keyframes typeAndDelete {
  0%,
  10% {
    width: 0;
  }

  45%,
  55% {
    width: 20em;
  }

  90%,
  100% {
    width: 0;
  }
}

.terminal-loader {
  width: 100%;
  max-width: 400px;
  height: 200px;
  background: #1c1c1c;
  border: 1px solid #ffffff3e;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  flex: 1;
}

.terminal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #343434;
  padding: 6px;
}

.terminal-controls {
  position: absolute;
  left: 10px;
  display: flex;
  gap: 7px;
}

.control {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #777;
}

.control.close {
  background-color: #e33;
}

.control.minimize {
  background-color: #ee0;
}

.control.maximize {
  background-color: #0b0;
}

.terminal-title {
  color: #eeeeeec1;
}

.content {
  padding: 10px;
}
.text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid green;
  animation: typeAndDelete 4s steps(11) infinite,
    blinkCursor 0.5s step-end infinite alternate;
  color: rgb(0, 196, 0);
  font-weight: 600;
}































.skills{
     width: 100%;
    margin-top: 40px;
   display:flex;
    flex-direction:column;
    gap:10px;
 width:80%;
    margin:60px auto;  }

.skill{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    margin-bottom:35px;
}

.skill-name{
    width:140px;
    min-width:140px;
    font-size:18px;
}

.progress{
    flex:1;
    height:12px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.progress-bar{
    width:0;
    height:100%;
    background:#0f172a;
    border-radius:20px;
    /* box-shadow:0 0 10px #00ff66; */
    animation:myAnimation 2s ease-out forwards;
}

.percent{
    width:60px;
    min-width:60px;
    text-align:right;
    font-size:18px;
}

@keyframes myAnimation {
  /* from {width: 0;}
  to {width: 70%;} */
from{
        width:0;
    }

    to{
        width:var(--oran);
    }
}
























































































































































































.menu-toggle{
     display:none;


    right:20px;

    top:20px;

    font-size:35px;

    color:white;

    cursor:pointer;
}
















@media(max-width:768px){

   .menu-toggle{
        display:block;
        margin-left: auto;
        padding-right: 30px;
    }

    .header{
       display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 20px;

    height:auto;

    /* position:relative; */
    }
    /* .header > a{
        flex-direction:column;

        justify-content:center;

        text-align:center;
    } */

    .header img{
        width:70px;
        height:auto;
    }

    .header a h1{
        font-size:28px;
    }

    .header-links{
        display:none;
margin-left: 0;
        width:100%;
    }

    .header-links.active{
       display:flex;

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#0f172a;

        justify-content:center;
    }

    .header-link{
        flex-direction:column;

        align-items:center;

        gap:15px;

        padding:20px 0;
    }

/* 
    .header-link a{
        color:rgba(255,255,255,0.78);

        font-size:18px;
    } */

    .hero{
    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    gap:40px;

    padding:40px 20px;
}

    .terminal-loader{
        margin:0;
    }

    .photos{
        width:220px;
        height:auto;
    }

    .skills{
        width:90%;
    }

    .skill{
        flex-direction:column;

        align-items:flex-start;

        gap:10px;
    }

    .skill-name{
        width:auto;
        min-width:auto;
    }

    .percent{
        width:auto;
        min-width:auto;
    }
























    .skills{
        width:90%;
    }

    .skill{
      display: flex;
        flex-direction:column;

        align-items:flex-start;
width:100%;
        gap:12px;

        margin-bottom:30px;
    }

    .skill-name{
         width:100%;

        min-width:auto;

        font-size:20px;
    }

    .progress{
        width:100%;
  flex:none;
        
                height:16px;
    }

    .percent{
        width:auto;

        min-width:auto;

        text-align:left;

        font-size:16px;
    }

}








