/*!
  * Item: Willy Wonka Theme
  * Description: Personal Portfolio Website Template
  * Author/Developer: Sujal
  * Version: v1
  */
@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@700&display=swap');
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
::-webkit-scrollbar{
    width: 4px;
    color:#C69C2D;
    transition: all .4s ease;
}
::-webkit-scrollbar-thumb {
    background: #C69C2D; 
    border-radius: 4px;
    width: 4px;
    transition: all .4s ease;
  }
  ::-webkit-scrollbar-track {
    background: #101010; 
    border-radius: 4px;
    width: 4px;
  }
  input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
  html{
    background: #101010;
    
  }
  :root{
    --bg-cursor-x: 50%;
    --bg-cursor-y: 50%;
    --portrait-ring-rgb: 198,156,45;
    --portrait-tint-rgb: 198,156,45;
  }
  #loader{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height:100vh;
      position: fixed;
      z-index:100;
      font-family: poppins;
      background-color: #202020;
      color: whitesmoke;
      font-size: 70px;
      width: 100%;
  }
body{
    user-select: none;
    height: auto;
    overflow-x: hidden;
    width: 100%;
    background: #171717;
}
#header{
    background:#171717;
    height: 100vh;
    width: 100%;;
    overflow: hidden;
    animation: scale 1.5s ease;
    position:relative;
    display: block;
}
#particles{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background:
      radial-gradient(circle at var(--bg-cursor-x) var(--bg-cursor-y), rgba(210, 42, 24, .16), rgba(210, 42, 24, 0) 44rem),
      linear-gradient(#171717, #171717);
    background-size: cover;
    background-position: center;
    opacity: 1;
    display: block;
    pointer-events: none;
    z-index: 0;
}
#particles::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(to right, rgba(255, 78, 44, .08) 0 1px, transparent 1px 7px),
      repeating-linear-gradient(to bottom, rgba(255, 78, 44, .08) 0 1px, transparent 1px 7px);
    opacity: .22;
    pointer-events: none;
}
#particles::after{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--bg-cursor-x) var(--bg-cursor-y), rgba(255, 82, 45, .12), rgba(255, 82, 45, 0) 22rem);
    filter: blur(20px);
    pointer-events: none;
}
#navigation-content{
    height: 100vh;
    width: 100%;
    position:fixed;
    z-index: 5;
    background-color:#020202;
    transform: translateY(-200%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#navigation-bar{
    position: fixed;
    height: 100px;
    width: 100%;
    z-index: 7;
    padding: 10px;
    background:transparent;
    overflow: hidden;
}
.top-nav{
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(8,8,8,.62);
    box-shadow: 0 8px 20px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}
.top-nav a{
    text-decoration: none;
    color: rgba(255,255,255,.82);
    font-family: poppins;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all .25s ease;
}
.top-nav a:hover{
    color: #fff;
    background: rgba(255,255,255,.08);
}
.top-nav a.active{
    color: #fff;
    background: rgba(255,255,255,.16);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.menubar{
    position: absolute;
    right:4%;
    top: 40%;
    cursor: pointer;
    opacity: .8;
    transition: all .4s ease;
}
.menubar span{
    position: relative;
    background-color:transparent;
    height:2px;
    width: 20px;
    display: block;
    margin:6px;
    border-radius: 20px;
}
.menubar .first-span{
    width:35px;
}
.menubar .first-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .5s ease;

}
.menubar .second-span{
    width:35px;
}
.menubar .second-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 75%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar .third-span{
    width:35px;
}
.menubar .third-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar:hover .second-span::before , .menubar:hover .first-span::before {
    width: 100%;
}
.menubar:hover{
    opacity: 1;
}
.close-first , .close-second{
 height: 2px;
 width: 35px;
 background-color: whitesmoke;
 display: block;
 margin: 4px;
 cursor: pointer;
 padding: 1px;
 border-radius: 20px;
}
.close-first {
    transform: rotate(45deg);
}
.close-second{
    transform: rotate(-45deg);
}
.navigation-close{
    position: absolute;
    top: 6%;
    right:4%;
    padding: 10px;
    cursor: pointer;
    transition: all.3s ease;
    opacity: .8;
}
.navigation-close:hover{
    opacity: 1;
    transform: rotate(90deg);
}
.logo img{
    height: 80px;
    position: absolute;
    top: 3%;
    left: 2.5%;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
    transition: all .4s ease;
}
.logo img:hover{
    opacity: 1;
    transform: rotate(-45deg);
}
#navigation-bar > img{
    height: 80px;
    position: absolute;
    ;
    top: 15%;
    left: 2.5%;
    opacity: .8;
    transition: all .4s ease;
}
#navigation-bar > img:hover{
    opacity: 1;
    transform:rotate(-45deg);
}
@media all and (max-width: 700px){
    .top-nav{
        top: 22px;
        gap: 6px;
        padding: 6px;
    }
    .top-nav a{
        font-size: 13px;
        padding: 7px 14px;
    }
    #header .header-content .secondline{
        font-size: 16px;
        padding: 8px 10px;
        gap: 4px;
    }
}
.header-image img{
    height: 100vh;
    float: right;
}
.header-image{
    float: right;
    height: auto;
    background-size: cover;
    background-position: center;
    width: 40%;   
    height: 100vh;
    position: relative;
    z-index: 1;
    pointer-events: none;

}
.header-content{
    height: 100vh;
    width: 100%;
    float: left;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    font-family: raleway;
    font-weight: 400;
    letter-spacing: 1px;
    flex-direction: column;
    font-size: 50px;
    z-index: 2;
}
.header-content-box{
    z-index: 2;
    text-align: center;
    height: auto;
    padding-right: 60px;
    width: auto;

}
.header-no-image .header-content-box{
    padding-right: 0;
}
.hero-portrait-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.hero-portrait-frame{
    width: clamp(170px, 24vw, 260px);
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 50%;
    padding: 8px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.2) 0%, rgba(15,15,15,.88) 62%, rgba(0,0,0,.95) 100%);
    box-shadow: 0 18px 45px rgba(0,0,0,.48), 0 0 0 2px rgba(var(--portrait-ring-rgb),.25);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: transform .24s ease, box-shadow .24s ease;
}
.hero-portrait-matrix{
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    background:
      radial-gradient(circle at 50% 50%, rgba(0,0,0,.04) 0%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.62) 100%),
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
}
.hero-portrait-matrix-column{
    position: absolute;
    top: -55%;
    width: 12px;
    color: rgba(var(--portrait-ring-rgb), .28);
    font-family: "Fira Code", Consolas, monospace;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0;
    white-space: pre;
    text-align: center;
    text-shadow: 0 0 8px rgba(var(--portrait-ring-rgb), .18);
    opacity: .55;
    animation: portraitMatrixFall linear infinite;
}
.hero-portrait-matrix-column span{
    display: block;
}
.hero-portrait-frame::before{
    content: "";
    position: absolute;
    inset: -45%;
    background: conic-gradient(from 0deg, rgba(var(--portrait-ring-rgb),0) 0deg, rgba(var(--portrait-ring-rgb),.7) 100deg, rgba(var(--portrait-ring-rgb),0) 220deg);
    animation: portraitRingSpin 5.5s linear infinite;
    opacity: .9;
    z-index: 0;
}
.hero-portrait-frame::after{
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 38%),
      rgba(var(--portrait-tint-rgb), .28);
    mix-blend-mode: color;
    opacity: .72;
    pointer-events: none;
    z-index: 3;
}
.hero-portrait-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 24%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: grayscale(1) contrast(1.08) brightness(.88);
    opacity: .94;
    transform: scale(1.08);
    transition: filter .35s ease, transform .35s ease;
}
@keyframes portraitMatrixFall{
    from{
        transform: translateY(-8%);
    }
    to{
        transform: translateY(118%);
    }
}
@keyframes portraitRingSpin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.header-content .firstline{
    z-index: 2;
    font-weight:700;
    font-family: poppins;
    font-size: 65px;
}
.hero-name{
    display: inline-block;
    position: relative;
    color: #C69C2D;
    letter-spacing: .6px;
    will-change: transform, text-shadow;
    visibility: hidden;
}
.hero-name::before,
.hero-name::after{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}
.hero-name.is-ready{
    animation: nameTremor 3.1s linear infinite;
}
.hero-name.is-ready::before{
    color: rgba(0, 194, 255, .9);
    animation: nameGlitchA 3.1s steps(1, end) infinite;
}
.hero-name.is-ready::after{
    color: rgba(255, 92, 134, .75);
    animation: nameGlitchB 3.1s steps(1, end) infinite;
}
@keyframes nameTremor{
    0%, 85%, 100%{
        transform: translate3d(0,0,0);
        text-shadow: none;
    }
    86%{
        transform: translate3d(-1px, 0, 0);
        text-shadow: .5px 0 rgba(0,194,255,.2), -.5px 0 rgba(255,92,134,.15);
    }
    87%{
        transform: translate3d(1px, 0, 0);
        text-shadow: -1px 0 rgba(0,194,255,.24), 1px 0 rgba(255,92,134,.18);
    }
    88%{
        transform: translate3d(-1.4px, .2px, 0);
    }
    89%{
        transform: translate3d(1.2px, -.2px, 0);
        text-shadow: 0 0 10px rgba(0, 194, 255, .28);
    }
    90%{
        transform: translate3d(-.8px, 0, 0);
    }
    91%{
        transform: translate3d(.8px, 0, 0);
    }
    92%{
        transform: translate3d(-.6px, .1px, 0);
    }
    93%{
        transform: translate3d(.6px, -.1px, 0);
    }
    94%{
        transform: translate3d(-.45px, 0, 0);
    }
    95%{
        transform: translate3d(.45px, 0, 0);
    }
    96%{
        transform: translate3d(-.3px, 0, 0);
    }
    97%{
        transform: translate3d(.3px, 0, 0);
    }
}
@keyframes nameGlitchA{
    0%, 85%, 100%{
        opacity: 0;
        transform: translate3d(0,0,0);
    }
    86%{
        opacity: .68;
        transform: translate3d(-2px,-1px,0) skewX(-3deg);
    }
    87%{
        opacity: .44;
        transform: translate3d(1px,1px,0) skewX(2deg);
    }
    88%{
        opacity: .72;
        transform: translate3d(-1px,0,0);
    }
    89%{
        opacity: .4;
        transform: translate3d(2px,-1px,0);
    }
    90%{
        opacity: .66;
        transform: translate3d(-2px,1px,0);
    }
    91%{
        opacity: .36;
        transform: translate3d(1px,0,0);
    }
    92%{
        opacity: .58;
        transform: translate3d(-1px,0,0);
    }
    93%{
        opacity: .3;
        transform: translate3d(1px,0,0);
    }
    94%{
        opacity: .2;
        transform: translate3d(0,0,0);
    }
}
@keyframes nameGlitchB{
    0%, 85%, 100%{
        opacity: 0;
        transform: translate3d(0,0,0);
    }
    86%{
        opacity: .52;
        transform: translate3d(2px,1px,0) skewX(3deg);
    }
    87%{
        opacity: .3;
        transform: translate3d(-1px,-1px,0) skewX(-2deg);
    }
    88%{
        opacity: .6;
        transform: translate3d(1px,0,0);
    }
    89%{
        opacity: .35;
        transform: translate3d(-2px,1px,0);
    }
    90%{
        opacity: .56;
        transform: translate3d(2px,-1px,0);
    }
    91%{
        opacity: .28;
        transform: translate3d(-1px,0,0);
    }
    92%{
        opacity: .45;
        transform: translate3d(1px,0,0);
    }
    93%{
        opacity: .2;
        transform: translate3d(-1px,0,0);
    }
    94%{
        opacity: .14;
        transform: translate3d(0,0,0);
    }
}
#header .header-content .secondline,
#header .header-content .terminal-line{
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.22);
    background: linear-gradient(180deg, rgba(20,20,20,.95) 0%, rgba(8,8,8,.95) 100%);
    box-shadow: 0 12px 30px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.05);
    font-family: "JetBrains Mono", Consolas, "Courier New", monospace;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, .86);
    letter-spacing: .3px;
}
#header .header-content .secondline .txt-rotate{
    font-family: inherit;
    margin-left: 4px;
}
.terminal-prompt{
    color: #C69C2D;
    font-weight: 700;
}
.slash{
    animation-name: animateslash;
    animation-duration: .8s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
@keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
@-webkit-keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
.social-media-links{
    height: 100vh;
    position: absolute;
    z-index: 5;
    padding: 60px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.social-media-links a{
    pointer-events: auto;
}
.social-media{
    color: white;
    width:  21px;
    ;
    opacity: .6;
    margin: 8px;
    transition: all .4s ease;
}
.social-media:hover{
    opacity: 1;
    transform: scale(1.1);
}
.navigation-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family:poppins;
}
.navigation-links a{
    padding:10px;
    text-decoration: none;
    color: white;
    font-size: 30px;
    opacity: .7;
    transition: all .4s ease;
}
.navigation-links a:hover{
    opacity: 1;
}
.navigation-links a::before{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translate(-50%,-50%);
    align-items: center;
    font-size: 5em;
    font-weight: 400;
    font-family: monoton;
    color:rgb(255, 255, 255,.1);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    letter-spacing: 100px;
    transition: all .4s ease;
}
.navigation-links a:hover::before{
    content: attr(data-text);
    opacity: 1;
    letter-spacing: 10px;
}
.contact{
    display: flex;
    position: absolute;
    width: 10%;
    right: 0;
    top: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 6;
}
.contact a{
    position: relative;
    z-index: 7;
}
.contact img{
    margin:10px;
    height:30px;
    opacity: .6;
    transition: all .4s ease;
}
.contact img:hover{
    opacity: 1;
    transform: scale(1.1);
}
#breaker{
    height: 100vh;
    width: 200%;
    background-color: #C69C2D;
    opacity: 1;
    animation: breakeranimate 2s linear;
    display: none;
    transition: all .4s ease;
    border-radius: 5px;
    z-index: 10;
    position: fixed;
}
@keyframes breakeranimate{
   0%{ transform : translateX(-100%)}
   50%{ transform : translateX(0%) }
   100%{ transform : translateX(100%) }
}
@-webkit-keyframes breakeranimate{
    0%{ transform : translateX(-100%) }
    50%{ transform : translateX(0%) }
    100%{ transform : translateX(100%) }
}
.color{
    color: #C69C2D;
    transition: all .4s ease;
}
#about{
    background:
      radial-gradient(circle at var(--bg-cursor-x) var(--bg-cursor-y), rgba(210, 42, 24, .12), rgba(210, 42, 24, 0) 42rem),
      repeating-linear-gradient(to right, rgba(255, 78, 44, .06) 0 1px, transparent 1px 7px),
      repeating-linear-gradient(to bottom, rgba(255, 78, 44, .06) 0 1px, transparent 1px 7px),
      linear-gradient(#101010, #101010);
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
@keyframes scale{
    0%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1);
    }
}
@-webkit-keyframes breakeranimate{
    0%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1);
    }
}
#about-content{
    display: flex;
    flex-direction:column;
    align-items: center;
    color: whitesmoke;
    justify-content: center;
    height: auto;
    width: 100%;
    padding:30px;
}
.about-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}
.about-first-paragraph{
    color: whitesmoke;
    justify-content: center;
    font-size: 20px;
    font-family: poppins;
    width: 50%;
    padding: 30px;
    font-weight: 400;
}
.about-first-paragraph .color{
    font-size: 40px;
}
.about-first-line{
    font-size: 35px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
}
.about-second-line{
    opacity: .8;
    font-size: 18px;
    font-weight: 200;
}
.about-main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: row;
}
.about-img img{
    width: 100%;
    height:380px;
    padding: 30px;
    border-radius: 40px;
}
.about-img {
    width: 550px;
    height:auto;
    padding: 30px;
    padding-top: 10px;
    border-radius: 40px;
}

#about-content a{
    text-decoration: none;
    font-family: aileron;
    font-weight: 400;
    font-size: 35px;
    color: #C69C2D;
    transition: all .4s ease;
}
.cv {
    padding-top: 40px;
}
.cv a button{
    background: transparent;
    border:none;
    padding: 15px 30px;
    color: whitesmoke;
    background: #C69C2D;
    outline: none;
    font-size:20px;
    font-family: aileron;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;

}
.cv a button:hover{
    opacity: 1;
    transform: scale(1.05);
}
#services{
    position: relative;
}

.services-heading{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 30px;
    font-weight: 900;

}
.about-first-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column ;
}
.colors{
    color: whitesmoke;
}
.services-content{
    height: auto;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding:2.5%;
}
.service{
    height:380px;
    width:28%;
    margin: 1.5%;
    background-color: #191919;
    ;
    display: inline-block;
    box-shadow:0px 0px 25px rgb(0,0,0,.05);
    position: relative;
    text-align: center;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    animation: opacity 1.4s ease ;
}
.service-img{
    text-align: center;
}

.service-img img{
    display: inline-block;
    z-index: 2;
    position: relative;
    margin: 20px;
    border-radius: 30%;
    padding: 10px;
    border: 0px solid #C69C2D;
    background: #C69C2D;
    box-shadow:0px 0px 0px 0px #C69C2D ;
    height:100px;
    transition: all .8s ease;
}
.service:hover .service-img img{
    box-shadow:0px 0px 0px 400px #C69C2D ;
}
.service-description{
    font-family: poppins;
    color:whitesmoke;
    position: relative;
    display: inline-block;
    z-index:2;
}
.service-description h2{
    padding: 10px;
    margin: 5px;
    font-weight: 200;
    font-size: 25px;
}
.service-description p{
    padding: 10px;
    font-weight: 200;
    font-size: 16px;
    opacity: .8;
}
#skills{
    width: 100%;
    height:auto;
}
.skills-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 30px;
    font-weight: 900;
}
.skills-content{
    height: auto;
    width:100%;
    margin-top: 20px;
    margin-bottom: 80px;
}
.skill-html{
    height: auto;
    width: 45%;
    padding: 0%;
    position: relative;
    font-family: poppins;
    color:whitesmoke;
    display: inline-block;
    padding:1.5%;
}
.skill-text{
    width:80%;
    position: relative;
    height: 50px;
}
.html{
    display: inline-block;
    position: absolute;
    left: 5%;
    top:30%;
}
.html-prog{
   width:100%;
   height:40px;
   border-radius: 10px;
   background: #191919;
   box-shadow:0px 0px 25px rgb(0,0,0,.1);
   position: relative;
   overflow: hidden;
}
.html-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:95%;
    border-radius: 10px;
    background: #C69C2D;
}
.js-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    font-family: poppins;
    justify-content: center;
    transition: all .4s ease;
    width:90%;
    border-radius: 10px;
    background: #C69C2D;
}
.adobe-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:83%;
    border-radius: 10px;
    background: #C69C2D;
}
.php-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:85%;
    border-radius: 10px;
    background: #C69C2D;
    transition: all .4s ease;
}
.jquery-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:94%;
    border-radius: 10px;
    background: #C69C2D;
}
.seo-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:84%;
    border-radius: 10px;
    transition: all .4s ease;
    background: #C69C2D;
}
.portfolio-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    transition: all .4s ease;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}

.header-caption{
    opacity:.8;
    display: block;
    font-size: 20px;
    font-family: raleway;
    padding: 8px;
    padding-top: 15px;
    color: whitesmoke;
    font-weight: 400;
}
.portfolio{
    height:auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1.5%;
    padding-right: 2%;
padding-top: 50px;
padding-bottom: 40px;
}

.portfolio-text{
    width: 40%;
    padding-left: 1%;
    margin: 1%;
    margin-left: -40px;
    margin-top: 160px;
    z-index: 3;
    opacity: 1;
    background: #080808;
    padding-top: 10px;
    padding-bottom: 10px;
}

.portfolio-text h2{
    font-size: 35px;
    font-family: poppins;
    font-weight: 200;
    padding: 20px;
    color: #C69C2D;
    transition: all .4s ease;
}
.portfolio-text p{
    font-size: 16px;
    opacity: .8;
    font-family: poppins;
    font-weight: 200;
    padding: 20px;
}
.portfolio-text button{
    font-size: 16px;
    opacity: .8;
    font-family: poppins;
    font-weight: 200;
    padding: 10px 20px;
    background:transparent;
    color:#C69C2D;
    transition: all .4s ease;
    outline: none;
    margin: 20px;
    border: 1.5px solid #C69C2D;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all .4s ease;
}
.portfolio-text button::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    transform: rotate(-15deg) translateY(-20px);
    top: 0;
    left: 0;
    z-index: 3;
    background: #C69C2D;
    transition: all .7s ease;
}
.portfolio-text button:hover{
    opacity: 1;
    color:whitesmoke;
}
 button:hover .index{
     position: relative;
    z-index: 4;
}
.portfolio-text button:hover::before{
    opacity: 1;
    width: 120%;
}
.button{
    text-align: center;
}
    .portfolio-image img{
        height: 400px;
        width: 100%;
        position: relative;
    }
    .portfolio-image{
        height: 400px;
        width: 40%;
    }
.portfolio-image img::before{
    content: "";
    height: 100%;
    width: 100%;
    background: #C69C2D;
    opacity: .1;
    top: 0;
    left: 0;
    transition: all .4s ease;
    position: absolute;
    z-index: 2;
}
#portfolio-content{
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
#portfolio{
    display: none;
    height: auto;
    overflow-x: hidden;
    background-color: #101010;
    width: 100%;
    color:whitesmoke;
}
.blog-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}
.cursor{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: .6;
    transition:  scale .5s ease;
}
.cursor-small{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: .6;
    transition:  scale .4s ease;
}

#blog{
    background: #101010;
    display: none;
    color:whitesmoke;
    width: 100%;
    height: auto;
}
.blog-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.blogs{
    height: 420px;
    width: 40%;
    margin: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.blogs .img{
    height: 80%;
    width: 100%;
    overflow: hidden;
    transition: all .65s ease;
    position: relative;
}
.blog-date{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #C69C2D;
    color: whitesmoke;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    font-family: poppins;
    padding: 3px;
    transition: all .4s ease;
    width: 25%;
    height: auto;
}
.blogs .img img{
    height: 100%;
    width: 100%;
    transition: all .65s ease;
}
.blog-text{
  height: 80%;
  width: 100%;
  text-align: center;
  vertical-align: center;
  font-family: poppins;
  color: whitesmoke;
  background-color: #050505;
  transition: all .5s ease;
}
.blog-text h3{
  font-size: 28px;
  font-weight: 500;
  height: 20%;
  padding: 20px;
  letter-spacing: 1px;
}
.blog-text p{
    font-size: 18px;
    opacity: .9;
    font-weight: 400;
    height: 80%;
    padding: 30px;
    letter-spacing: 1px;
  }
.blogs:hover .img{
      transform: translateY(-70%);
  }
.blogs:hover .blog-text{
    transform: translateY(-70%);
}
.blogs a{
    text-decoration: none;
    color: whitesmoke;
}
#contact{
    display: none;
    height: auto;
    text-align: center;
    width: 100%;
    background: #101010;
    position: relative; 
}
.contact-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: whitesmoke;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}
.contact-header-caption{
    padding: 10px;
    color: whitesmoke;
    opacity: .9;
    font-family:raleway;
    font-size: 18px;
}
.contact-content{
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.contact-info{
    width: 40%;
    height: 500px;
    background: url(../images/contact-back.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.contact-info::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: .8;
    pointer-events: none;
}
.contact-form{
    height: 550px;
    padding-right:40px;
    width: 60%;
    display: flex;
    flex-direction: column;
}
form{
    display: flex;
    flex-direction: column;
    height: auto;
    width:auto;
    align-items: center;
    position: relative;
}
.input-line{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.input-name{
    width: 40%;
    padding:10px 20px;
    margin:14px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: whitesmoke;
    font-family: poppins;
    font-size: 18px;
}
.form-header{
    font-size: 24px;
    font-family: poppins;
    font-weight: 400;
    color: whitesmoke;
    padding: 28px;
}
.input-subject{
    width: 84%;
    padding:10px 20px;
    margin:24px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: whitesmoke;
    font-family: poppins;
    font-size: 18px;
}
.input-textarea{
    width: 84%;
    padding:10px 20px;
    margin:15px;
    height: 150px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: whitesmoke;
    font-family: poppins;
    font-size: 18px;
}
form button{
    padding:8px 24px;
    font-family: poppins;
    font-size:20px;
    color: whitesmoke;
    background:#BB0035;
    opacity: .8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all .4s ease;
}
form button:hover{
  opacity: 1;
}
.contact-info-header{
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-family: poppins;
    font-weight: 400;
    color: whitesmoke;
    padding: 30px;
}
.contect-info-content-line{
    height: auto;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-left: 100px;
}
.contact-info-icon-text{
    color: whitesmoke;
    padding:15px;
    font-family: poppins;
}
.contact-info-icon-text h6{
    font-size: 15px;
    opacity: .8;
}
.contact-info-icon-text p{
    font-size: 14px;
    opacity: .7;
}
.icon{
    height:40px;
    opacity: .8;
}

.footer{
    background: #080808;
    width: 100%;
    padding: 20px;
    color: whitesmoke;
    display: flex;
    flex-direction: row;
    font-family: poppins;
    align-items: center;
    justify-content: center;
}
.footer .footer-text{
    position: relative;
    display: inline;
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
}
.color-changer{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    position: fixed;
    right:-150px;
    top:40%;
    z-index: 4;
    color:black;
    transition:all .4s ease;
}
.color-changer-active{
    right:0px;
    transition:all .4s ease;
}
.color-panel{
    height: 45px;
    cursor: pointer; 
    width:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    background: whitesmoke;
}
.color-panel img{
    height: 40px; 
    width:40px;
    padding:2px;
    animation: rotate 2s linear infinite;
}
.colors ul{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    max-width: 150px;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}
.colors li{
    height: 30px;
    width: 30px;
    margin: 5px;
    border-radius: 20%;
    position: relative;
    overflow: hidden;
}
.colors li a{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.color-red{
    background: #C69C2D;
}
.color-purple{
    background: #481380;
}
.color-green{
    background: #04A777;
}
.color-blue{
    background: #035aa6;
}
.color-malt{
    background: #00909e;
}
.color-orange{
    background: #dd7631;
}
@keyframes rotate{
    0%{
   transform: rotate(0deg);
    }
    100%{
   transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate{
    0%{
        transform: rotate(0deg);
         }
         100%{
        transform: rotate(360deg);
         }
}
.color-selector{
    height:auto;
    width:150px;
    padding: 10px;
    background: whitesmoke;
    font-family: poppins;
    font-size: 16px;
    display: flex;
    color: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.color-selector li{
  list-style: none;
}

/*

For devices with smaller width like mobile phone


*/





@media only screen and (max-width: 550px){
    .header-content{
        height: 100vh;
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: whitesmoke;
        font-family: raleway;
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 40px;
    }
    .contact{
        display: none;
    }
    .header-image{
        float: none;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-image img{
        float: none;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
    .social-media-links{
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
        padding: 10px;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .header-content-box{
        padding-left: 0px;
        z-index: 2;
        text-align: center;
    }
    #contact{
        display: none;
    }
    #breaker{
        height: 50vh;
        width: 200%;
        background-color: #C69C2D;
        opacity: 1;
        animation: breakeranimate 2s linear;
        display: none;
        transition: all .4s ease;
        z-index: 10;
        position: fixed;
    }
    @keyframes breakeranimate{
       0%{ transform : translateX(-100%)}
       50%{ transform : translateX(0%) }
       100%{ transform : translateX(100%) }
    }
    @-webkit-keyframes breakeranimate{
        0%{ transform : translateX(-100%) }
        50%{ transform : translateX(0%) }
        100%{ transform : translateX(100%) }
    }
    .header-content-box{
        z-index: 2;
        text-align: center;
        height: auto;
        padding-right: 0px;
        width: auto;
    
    }
    #about-content{
        display: flex;
        flex-direction:column;
        align-items: center;
        color: whitesmoke;
        justify-content: center;
        height: auto;
        width: 100%;
        padding:30px;
    }
    .about-header{
        color: whitesmoke;

        justify-content: center;
        font-size: 35px;
        font-family: raleway;
        padding:10px;
        font-weight: 900;
    }
    .about-first-paragraph{
        color: whitesmoke;
        justify-content: center;
        font-size: 20px;
        font-family: poppins;
        width: 95%;
        padding: 10px;
        font-weight: 400;
    }
    .about-first-paragraph .color{
        font-size: 30px;
    }
    .about-first-line{
        font-size: 28px;
        opacity: 1;
        margin-bottom: 10px;
        display: block;
    }
    .about-second-line{
        opacity: .8;
        font-size: 15px;
    }
    .about-main{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        flex-direction: column-reverse;
    }
    .about-img img{
        width: 280px;
        height:220px;
        padding: 5px;
        border-radius: 10%;
    }
    .about-img {
        width: 100%;
        height:250px;
        text-align: center;
        overflow: hidden;
        border-radius: 10%;
    }
    .service{
        height:320px;
        width:90%;
        margin: 1.5%;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.1);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        overflow: hidden;
    }
    .service-img img{
        display: inline-block;
        z-index: 2;
        position: relative;
        margin: 20px;
        border-radius: 30%;
        padding: 10px;
        height:80px;
        transition: all .8s ease;
    }
    .skill{
        width:80%;
    }
    .prog{
        height:30px;
    }
    .skills-content{
        height: auto;
        width:100%;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .portfolio{
        height:auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5%;
        padding-right: 2%;
    padding-top: 50px;
    padding-bottom: 40px;
    }
    .portfolio-text{
        width: 90%;
        padding-left: 0%;
        margin: 0%;
        margin-left: 0px;
        margin-top: 0px;
        z-index: 1;
        background: #070707;
        padding-top: 10px;
        padding-bottom: 10px;
    }
        .portfolio-image{
            position: relative;
        }
            .portfolio-text h2{
                font-size: 22px;
                font-family: poppins;
                font-weight: 200;
                padding: 10px;
            }
            .portfolio-text p{
                font-size: 15px;
                opacity: .8;
                font-family: poppins;
                font-weight: 200;
                padding: 15px;
            }
            .cursor{
                display: none;
            }
            .service:hover .service-img img{
                box-shadow:0px 0px 0px 0px #C69C2D ;
            }
            .portfolio-image img{
                height: 300px;
                width: 100%;
            }
            .portfolio-image{
                height: 300px;
                width: 90%;
            }
            #navigation-bar > img{
                height: 80px;
                position: absolute;
                top: 15%;
                left: 2.5%;
                opacity: .8;
                transition: all .4s ease;
                display: none;
            }
            .blogs{
                height: auto;
                width: 90%;
                margin: 10px;
                margin-top: 20px;
                margin-bottom: 20px;
                position: relative;
            }
            .blogs .img{
                height: 80%;
                width: 100%;
                overflow: hidden;
                transition: all .65s ease;
                position: relative;
            }
            .blog-date{
                position: absolute;
                left: 0;
                bottom: 0;
                color: whitesmoke;
                font-size: 18px;
                text-align: center;
                font-weight: 400;
                font-family: poppins;
                padding: 3px;
                width: 35%;
                height: auto;
            }
            .blogs .img img{
                height: 100%;
                width: 100%;
                transition: all .65s ease;
            }
            .blog-text{
              height: auto;
              width: 100%;
              text-align: center;
              vertical-align: center;
              font-family: poppins;
              color: whitesmoke;
              background-color: #000000;
              transition: all .5s ease;
            }
            .blog-text h3{
              font-size: 24px;
              font-weight: 200;
              height: 15%;
              padding: 10px;
              letter-spacing: 1px;
            }
            .blog-text p{
                font-size: 15px;
                opacity: .9;
                font-weight: 200;
                height: 85%;
                padding: 20px;
                letter-spacing: 1px;
              }
            .blogs:hover .img{
                  transform: translateY(0%);
              }
            .blogs:hover .blog-text{
                transform: translateY(0%);
            }
            .contact-content{
                width: 90%;
                margin: auto;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .contact-info{
                width: 90%;
                height: 500px;
                background-position: center;
                background-size: cover;
                border-radius: 16px;
                margin-bottom: 25px;
                position: relative;
                overflow: hidden;
            }
            .contact-info::before{
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: #101010;
                opacity: .7;
                pointer-events: none;
            }
            .contact-form{
                height: auto;
                width: 90%;
                display: flex;
                padding-bottom: 40px;
                padding-right:0px;
                flex-direction: column;
            }
            form{
                display: flex;
                flex-direction: column;
                height: auto;
                width:auto;
                align-items: center;
                position: relative;
            }
            .input-line{
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .input-name{
                width: 90%;
                padding:10px 20px;
                margin:14px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            .form-header{
                font-size: 22px;
                font-family: poppins;
                font-weight: 400;
                color: whitesmoke;
                padding: 20px;
                padding-top: 0px;
            }
            .input-subject{
                width: 90%;
                padding:10px 20px;
                margin:24px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            .input-textarea{
                width: 90%;
                padding:10px 20px;
                margin:15px;
                height: 140px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            form button{
                padding:8px 24px;
                font-family: poppins;
                font-size:20px;
                color: whitesmoke;
                opacity: .8;
                margin: 20px;
                cursor: pointer;
                border: none;
                border-radius: 8px;
                transition: all .4s ease;
            }
            form button:hover{
              opacity: 1;
            }
            .contact-info-header{
                position: relative;
                z-index: 2;
                font-size: 24px;
                font-family: poppins;
                font-weight: 400;
                color: whitesmoke;
                padding: 20px;
            }
            .contect-info-content-line{
                height: auto;
                padding: 10px;
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: row;
                align-items: center;
                text-align: left;
                margin-left: 5%;
            }
            .contact-info-icon-text{
                color: whitesmoke;
                padding:15px;
                font-family: poppins;
            }
            .contact-info-icon-text h6{
                font-size: 15px;
                opacity: .8;
            }
            .contact-info-icon-text p{
                font-size: 14px;
                opacity: .7;
            }
            .hire-me-section{
                display: none;
            }
           
}
       
/*

for tabs and large phones

*/



@media all and (max-width: 1025px) and (min-width: 551px){
    .header-content{
        height: 100vh;
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: whitesmoke;
        font-family: raleway;
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 40px;
    }
    .header-image{
        float: right;
        height: auto;
        width: 0%;   
    }
    .social-media-links{
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
        padding: 10px;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .header-content-box{
        padding-left: 0px;
        z-index: 2;
        text-align: center;
    }
    .contact{
        display: none;
    }
    #breaker{
        height: 50vh;
        width: 200%;
        background-color: #C69C2D;
        opacity: 1;
        animation: breakeranimate 2s linear;
        display: none;
        transition: all .4s ease;
        z-index: 10;
        position: fixed;
    }
    @keyframes breakeranimate{
       0%{ transform : translateX(-100%)}
       50%{ transform : translateX(0%) }
       100%{ transform : translateX(100%) }
    }
    @-webkit-keyframes breakeranimate{
        0%{ transform : translateX(-100%) }
        50%{ transform : translateX(0%) }
        100%{ transform : translateX(100%) }
    }
    .header-content-box{
        z-index: 2;
        text-align: center;
        height: auto;
        padding-right: 0px;
        width: auto;
    
    }
    #about-content{
        display: flex;
        flex-direction:column;
        align-items: center;
        color: whitesmoke;
        justify-content: center;
        height: auto;
        width: 100%;
        padding:10px;
    }
    .about-header{
        color: whitesmoke;
        justify-content: center;
        font-size: 45px;
        font-family: raleway;
        padding:15px;
        font-weight: 900;
    }
    .about-first-paragraph{
        color: whitesmoke;
        justify-content: center;
        font-size: 40px;
        font-family: poppins;
        width: 95%;
        padding: 25px;
        font-weight: 400;
    }
    .about-first-paragraph .color{
        font-size: 35px
    }
    .about-first-line{
        font-size: 32px;
        opacity: 1;
        margin-bottom: 10px;
        display: block;
    }
    .about-second-line{
        opacity: .8;
        font-size: 24px;
    }
    .about-main{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        flex-direction: column-reverse;
    }
    .about-img img{
        width: 100%;
        height:380px;
        padding: 30px;
        border-radius: 40px;
    }
    .about-img {
        width: 550px;
        height:auto;
        padding: 30px;
        padding-top: 10px;
        border-radius: 40px;
    }
    .cv a button{
        border:none;
        padding: 20px 30px;
        color: whitesmoke;
        outline: none;
        font-size:20px;
        font-family: aileron;
        border-radius: 8px;
        font-weight: 400;
        cursor: pointer;
        position: relative;
        transition: all .4s ease;
    
    }
    .service{
        height:auto;
        width:45%;
        margin: 2%;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.1);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        padding: 10px;
        overflow: hidden;
    }
    .service-description h2{
        padding: 10px;
        margin: 5px;
        font-weight: 200;
        font-size: 22px;
    }
    .service-description p{
        padding: 10px;
        font-weight: 200;
        font-size: 15px;
        opacity: .8;
    }
    .skill{
        width:40%;
    }
    .prog{
        height:35px;
    }
    .skills-content{
        height: auto;
        width:100%;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .portfolio{
        height:auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5%;
        padding-right: 2%;
    padding-top: 50px;
    padding-bottom: 40px;
    }
    .portfolio-text{
        width: 70%;
        padding-left: 0%;
        margin: 0%;
        margin-left: 0px;
        margin-top: 0px;
        z-index: 1;
        background: #080808;
        padding-top: 15px;
        padding-bottom: 15px;
    }
        .portfolio-image{
            position: relative;
        }
            .portfolio-text h2{
                font-size: 35px;
                font-family: poppins;
                font-weight: 200;
                padding: 15px;
            }
            .portfolio-text p{
                font-size: 20px;
                opacity: .8;
                font-family: poppins;
                font-weight: 200;
                padding: 15px;
            }
            .cursor{
                display: none;
            }
            .service:hover .service-img img{
                box-shadow:0px 0px 0px 0px #C69C2D ;
            }
            .portfolio-image img{
                height: 380px;
                width: 100%;
                position: relative;
            }
            .portfolio-image{
                height: 380px;
                width: 70%;
            }
            #navigation-bar > img{
                height: 80px;
                position: absolute;
                top: 15%;
                left: 2.5%;
                opacity: .8;
                transition: all .4s ease;
            }
            .blogs{
                height: auto;
                width: 75%;
                margin: 10px;
                margin-top: 20px;
                margin-bottom: 20px;
                position: relative;
            }
            .blogs .img{
                height: 60%;
                width: 100%;
                overflow: hidden;
                transition: all .65s ease;
                position: relative;
            }
            .blog-date{
                position: absolute;
                left: 0;
                bottom: 0;
                color: whitesmoke;
                font-size: 18px;
                text-align: center;
                font-weight: 400;
                font-family: poppins;
                padding: 3px;
                width: 35%;
                height: auto;
            }
            .blogs .img img{
                height: 100%;
                width: 100%;
                transition: all .65s ease;
            }
            .blog-text{
              height: auto;
              width: 100%;
              text-align: center;
              vertical-align: center;
              font-family: poppins;
              color: whitesmoke;
              background-color: #050505;
              padding: 10px;
              transition: all .5s ease;
            }
            .blog-text h3{
              font-size: 28px;
              font-weight: 200;
              height: 15%;
              padding: 10px;
              letter-spacing: 1px;
            }
            .blog-text p{
                font-size: 17px;
                opacity: .9;
                font-weight: 200;
                height: 85%;
                padding: 20px;
                letter-spacing: 1px;
              }
            .blogs:hover .img{
                  transform: translateY(0%);
              }
            .blogs:hover .blog-text{
                transform: translateY(0%);
            }
            .contact-content{
                width: 90%;
                margin: auto;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .contact-info{
                width: 70%;
                height: 500px;
                background-position: center;
                background-size: cover;
                border-radius: 16px;
                margin-bottom: 50px;
                position: relative;
                overflow: hidden;
            }
            .contact-info::before{
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: #101010;
                opacity: .7;
                pointer-events: none;
            }
            .contact-form{
                height: auto;
                width: 90%;
                display: flex;
                padding-bottom: 40px;
                padding-right:0px;
                flex-direction: column;
            }
            form{
                display: flex;
                flex-direction: column;
                height: auto;
                width:auto;
                align-items: center;
                position: relative;
            }
            .input-line{
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .input-name{
                width: 80%;
                padding:10px 20px;
                margin:14px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            .form-header{
                font-size: 22px;
                font-family: poppins;
                font-weight: 400;
                color: whitesmoke;
                padding: 20px;
                padding-top: 0px;
            }
            .input-subject{
                width: 80%;
                padding:10px 20px;
                margin:24px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            .input-textarea{
                width: 80%;
                padding:10px 20px;
                margin:15px;
                height: 140px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: whitesmoke;
                font-family: poppins;
                font-size: 16px;
            }
            form button{
                padding:8px 24px;
                font-family: poppins;
                font-size:20px;
                color: whitesmoke;
                opacity: .8;
                margin: 20px;
                cursor: pointer;
                border: none;
                border-radius: 8px;
                transition: all .4s ease;
            }
            form button:hover{
              opacity: 1;
            }
            .contact-info-header{
                position: relative;
                z-index: 2;
                font-size: 24px;
                font-family: poppins;
                font-weight: 400;
                color: whitesmoke;
                padding: 20px;
            }
            .contect-info-content-line{
                height: auto;
                padding: 10px;
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: row;
                align-items: center;
                text-align: left;
                margin-left: 30%;
            }
            .hire-me-section{
                display: none;
            }
            
            
}








@media all and (max-width: 9000px) and (min-width: 1441px){

    .portfolio-image img{
        height: 500px;
        width: 100%;
        position: relative;
    }
    .portfolio-image{
        height: 500px;
        width: 40%;
    }
    .about-img img{
        width: 100%;
        height:450px;
        padding: 30px;
        border-radius: 40px;
        animation: opacity 1.4s ease ;
    }
    .about-img {
        width: 40%;
        height:450px;
        padding: 30px;
        border-radius: 40px;
    }
    .about-first-line{
        font-size: 45px;
        opacity: 1;
        margin-bottom: 10px;
        display: block;
    }
     .about-first-line .color{
         font-size: 46px;
     }
    .about-second-line{
        opacity: .8;
        font-size: 28px;
        font-weight: 200;
    }
    .cv a button{
        background: transparent;
        border:none;
        padding: 25px 35px;
        color: whitesmoke;
        outline: none;
        font-size:30px;
        font-family: aileron;
        border-radius: 4px;
        font-weight: 400;
        cursor: pointer;
        position: relative;
        transition: all .4s ease;
    
    }
    .service{
        height:400px;
        width:28%;
        margin: 1.5%;
        padding: 10px;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.05);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        overflow: hidden;
        animation: opacity 1.4s ease ;
    }
    .service-img{
        text-align: center;
    }
    
    .service-img img{
        display: inline-block;
        z-index: 2;
        position: relative;
        margin: 20px;
        border-radius: 30%;
        padding: 10px;
        height:120px;
        transition: all .8s ease;
    }
    .service-description h2{
        padding: 10px;
        margin: 5px;
        font-weight: 200;
        font-size: 32px;
    }
    .service-description p{
        padding: 10px;
        font-weight: 200;
        font-size: 18px;
        opacity: .8;
    }
    .blogs{
        height: 420px;
        width: 30%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }
    .blogs .img{
        height: 80%;
        width: 100%;
        overflow: hidden;
        transition: all .65s ease;
        position: relative;
    }
    .blog-date{
        position: absolute;
        left: 0;
        bottom: 0;
        color: whitesmoke;
        font-size: 18px;
        text-align: center;
        font-weight: 400;
        font-family: poppins;
        padding: 3px;
        width: 25%;
        height: auto;
    }
    .blogs .img img{
        height: 100%;
        width: 100%;
        transition: all .65s ease;
    }
    .blog-text{
      height: 80%;
      width: 100%;
      text-align: center;
      vertical-align: center;
      font-family: poppins;
      color: whitesmoke;
      background-color: #050505;
      transition: all .5s ease;
    }
    .blog-text h3{
      font-size: 28px;
      font-weight: 500;
      height: 20%;
      padding: 20px;
      letter-spacing: 1px;
    }
    .blog-text p{
        font-size: 18px;
        opacity: .9;
        font-weight: 400;
        height: 80%;
        padding: 30px;
        letter-spacing: 1px;
      }
    .blogs:hover .img{
          transform: translateY(-70%);
      }
    .blogs:hover .blog-text{
        transform: translateY(-70%);
    }
    .contact-header{
        height: auto;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        font-family: raleway;
        color: whitesmoke;
        padding:10px;
        padding-bottom: 30px;
        padding-top: 60px;
        font-weight: 900;
    }
    .contact-header-caption{
        padding: 10px;
        color: whitesmoke;
        opacity: .9;
        font-family:raleway;
        font-size: 18px;
    }
    .contact-content{
        width: 90%;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .contact-info{
        width: 40%;
        height: 600px;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }
    .contact-info::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #101010;
        opacity: .7;
        pointer-events: none;
    }
    .contact-form{
        height: 600px;
        width: 60%;
        display: flex;
        flex-direction: column;
    }
    form{
        display: flex;
        flex-direction: column;
        height: auto;
        width:auto;
        align-items: center;
        position: relative;
    }
    .input-line{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .input-name{
        width: 60%;
        padding:10px 20px;
        margin:14px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: whitesmoke;
        font-family: poppins;
        font-size: 18px;
    }
    .form-header{
        font-size: 24px;
        font-family: poppins;
        font-weight: 400;
        color: whitesmoke;
        padding: 20px;
        padding-top: 0px;
    }
    .input-subject{
        width: 60%;
        padding:10px 20px;
        margin:24px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: whitesmoke;
        font-family: poppins;
        font-size: 18px;
    }
    .input-textarea{
        width: 60%;
        padding:10px 20px;
        margin:15px;
        height: 150px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: whitesmoke;
        font-family: poppins;
        font-size: 18px;
    }
    form button{
        padding:8px 24px;
        font-family: poppins;
        font-size:20px;
        color: whitesmoke;
        opacity: .8;
        margin: 20px;
        cursor: pointer;
        border: none;
        border-radius: 8px;
        transition: all .4s ease;
    }
}

/* Theme toggle + galaxy theme */
#navigation-bar .theme-toggle{
    position: absolute;
    top: 15%;
    left: 2.5%;
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 14px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    opacity: .95;
    z-index: 4;
    pointer-events: auto;
    transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease, transform .2s ease;
}
#navigation-bar .theme-toggle:focus-visible{
    outline: 2px solid rgba(181, 133, 255, .9);
    outline-offset: 2px;
}
#navigation-bar .theme-toggle:hover{
    transform: translateY(-1px);
}
#navigation-bar .theme-toggle img{
    position: static;
    display: block;
    height: 76px;
    opacity: .9;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
}
#navigation-bar .theme-toggle:hover img,
#navigation-bar .theme-toggle:focus-visible img{
    opacity: 1;
    transform: rotate(-16deg);
}
body,
#header,
#particles,
#particles::before,
#particles::after,
#navigation-content,
#breaker,
.top-nav,
.top-nav a,
.terminal-prompt,
.color,
.cv a button,
.service-img img,
.html-progress,
.js-progress,
.adobe-progress,
.php-progress,
.jquery-progress,
.seo-progress,
.portfolio-text h2,
.portfolio-text button,
.blog-date,
form button,
::-webkit-scrollbar,
::-webkit-scrollbar-thumb{
    transition: color .2s ease, background-color .24s ease, background .28s ease, border-color .22s ease, box-shadow .24s ease;
}

body.theme-galaxy{
    --portrait-ring-rgb: 190,159,255;
    --portrait-tint-rgb: 170,150,220;
}
body.theme-galaxy,
body.theme-galaxy #header,
body.theme-galaxy #about,
body.theme-galaxy #services,
body.theme-galaxy #skills{
    background: #090816;
}
body.theme-galaxy #navigation-content{
    background-color: #070415;
}
body.theme-galaxy #particles{
    background:
      radial-gradient(90rem 50rem at 16% 20%, rgba(151, 82, 255, .2), rgba(151, 82, 255, 0) 70%),
      radial-gradient(78rem 48rem at 82% 76%, rgba(74, 114, 255, .18), rgba(74, 114, 255, 0) 72%),
      linear-gradient(#090816, #120d2a);
}
body.theme-galaxy #particles::before{
    background-image:
      repeating-linear-gradient(to right, rgba(150, 103, 255, .13) 0 1px, transparent 1px 8px),
      repeating-linear-gradient(to bottom, rgba(92, 126, 255, .13) 0 1px, transparent 1px 8px);
    opacity: .26;
}
body.theme-galaxy #particles::after{
    background:
      radial-gradient(circle at var(--bg-cursor-x, 50%) var(--bg-cursor-y, 50%), rgba(193, 127, 255, .2), rgba(193, 127, 255, .06) 16rem, rgba(193, 127, 255, 0) 32rem),
      radial-gradient(circle at var(--bg-cursor-x, 50%) var(--bg-cursor-y, 50%), rgba(91, 115, 255, .16), rgba(91, 115, 255, 0) 44rem),
      radial-gradient(34rem 34rem at 18% 24%, rgba(169, 109, 255, .14), rgba(169, 109, 255, 0) 72%),
      radial-gradient(30rem 30rem at 80% 74%, rgba(93, 114, 255, .12), rgba(93, 114, 255, 0) 74%);
    opacity: .34;
    animation: galaxyPulse 4.8s ease-in-out infinite alternate;
}
body.theme-galaxy ::-webkit-scrollbar{
    color: #9d76ff;
}
body.theme-galaxy ::-webkit-scrollbar-thumb{
    background: #9d76ff;
}
body.theme-galaxy #breaker{
    background-color: #9d76ff;
}
body.theme-galaxy .color,
body.theme-galaxy #about-content a,
body.theme-galaxy .portfolio-text h2,
body.theme-galaxy .portfolio-text button,
body.theme-galaxy .blog-read-more{
    color: #be9fff;
}
body.theme-galaxy .hero-name{
    color: #d2bbff;
    text-shadow: 0 0 12px rgba(201, 145, 255, .4), 0 0 28px rgba(141, 122, 255, .32);
}
body.theme-galaxy .terminal-line .color,
body.theme-galaxy .terminal-line .terminal-prompt{
    color: #99a8ff;
}
body.theme-galaxy .cv a button,
body.theme-galaxy .service-img img,
body.theme-galaxy .html-progress,
body.theme-galaxy .js-progress,
body.theme-galaxy .adobe-progress,
body.theme-galaxy .php-progress,
body.theme-galaxy .jquery-progress,
body.theme-galaxy .seo-progress,
body.theme-galaxy .portfolio-text button::before,
body.theme-galaxy .portfolio-image img::before,
body.theme-galaxy .blog-date,
body.theme-galaxy form button{
    background: linear-gradient(135deg, #8d63ff, #495fff);
}
body.theme-galaxy .portfolio-text button{
    border-color: #8d63ff;
}
body.theme-galaxy .service-img img{
    box-shadow: 0 0 0 0 #8d63ff;
}
body.theme-galaxy .service:hover .service-img img{
    box-shadow: 0 0 0 400px #6e55da;
}
body.theme-galaxy .top-nav{
    border-color: rgba(162,128,255,.42);
    box-shadow: 0 10px 24px rgba(0,0,0,.42), inset 0 0 0 1px rgba(162,128,255,.2);
}
body.theme-galaxy .top-nav a:hover{
    background: rgba(162,128,255,.2);
}
body.theme-galaxy .top-nav a.active{
    background: rgba(162,128,255,.28);
    box-shadow: inset 0 0 0 1px rgba(162,128,255,.34);
}
body.theme-galaxy #navigation-bar .theme-toggle{
    box-shadow: none;
}

body.theme-cyber{
    --portrait-ring-rgb: 0,194,255;
    --portrait-tint-rgb: 108,144,156;
}
body.theme-cyber,
body.theme-cyber #header,
body.theme-cyber #about,
body.theme-cyber #services,
body.theme-cyber #skills{
    background: #0b1118;
}
body.theme-cyber #navigation-content{
    background-color: #03080f;
}
body.theme-cyber #particles{
    background: linear-gradient(#0b1118, #0f1722);
}
body.theme-cyber #particles::before{
    background-image:
      repeating-linear-gradient(to right, rgba(0, 194, 255, .14) 0 1px, transparent 1px 8px),
      repeating-linear-gradient(to bottom, rgba(0, 194, 255, .14) 0 1px, transparent 1px 8px);
    opacity: .2;
}
body.theme-cyber #particles::after{
    background:
      radial-gradient(circle at var(--bg-cursor-x, 50%) var(--bg-cursor-y, 50%), rgba(0, 194, 255, .14), rgba(0, 194, 255, .04) 16rem, rgba(0, 194, 255, 0) 30rem),
      radial-gradient(circle at var(--bg-cursor-x, 50%) var(--bg-cursor-y, 50%), rgba(45, 226, 166, .08), rgba(45, 226, 166, 0) 42rem),
      radial-gradient(36rem 36rem at 18% 28%, rgba(0, 194, 255, .1), rgba(0, 194, 255, 0) 70%),
      radial-gradient(30rem 30rem at 78% 72%, rgba(45, 226, 166, .08), rgba(45, 226, 166, 0) 72%);
    opacity: .2;
    animation: none;
}
body.theme-cyber ::-webkit-scrollbar{
    color: #00c2ff;
}
body.theme-cyber ::-webkit-scrollbar-thumb{
    background: #00c2ff;
}
body.theme-cyber #breaker{
    background-color: #00c2ff;
}
body.theme-cyber .color,
body.theme-cyber #about-content a,
body.theme-cyber .portfolio-text h2,
body.theme-cyber .portfolio-text button,
body.theme-cyber .blog-read-more,
body.theme-cyber .hero-name{
    color: #00c2ff;
    text-shadow: none;
}
body.theme-cyber .terminal-line .color,
body.theme-cyber .terminal-line .terminal-prompt{
    color: #C69C2D;
}
body.theme-cyber .cv a button,
body.theme-cyber .service-img img,
body.theme-cyber .html-progress,
body.theme-cyber .js-progress,
body.theme-cyber .adobe-progress,
body.theme-cyber .php-progress,
body.theme-cyber .jquery-progress,
body.theme-cyber .seo-progress,
body.theme-cyber .portfolio-text button::before,
body.theme-cyber .portfolio-image img::before,
body.theme-cyber .blog-date,
body.theme-cyber form button{
    background: #00c2ff;
}
body.theme-cyber .portfolio-text button{
    border-color: #00c2ff;
}
body.theme-cyber .service-img img{
    box-shadow: 0 0 0 0 #00c2ff;
}
body.theme-cyber .service:hover .service-img img{
    box-shadow: 0 0 0 400px #00c2ff;
}
body.theme-cyber .top-nav{
    border-color: rgba(0,194,255,.34);
    box-shadow: 0 10px 24px rgba(0,0,0,.38), inset 0 0 0 1px rgba(0,194,255,.16);
}
body.theme-cyber .top-nav a:hover{
    background: rgba(0,194,255,.12);
}
body.theme-cyber .top-nav a.active{
    background: rgba(0,194,255,.2);
    box-shadow: inset 0 0 0 1px rgba(0,194,255,.24);
}

.music-dock{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    pointer-events: none;
}
.music-shell{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    max-width: min(320px, calc(100vw - 24px));
    padding: 8px 10px 8px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
    box-shadow: 0 8px 20px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(10px) saturate(115%);
    overflow: hidden;
    pointer-events: auto;
    transform-origin: right bottom;
    transition: min-width .45s ease, max-width .45s ease, padding .45s ease, gap .45s ease, border-radius .45s ease, background .45s ease, box-shadow .45s ease, transform .45s ease;
    will-change: transform;
}
.music-shell::before,
.music-shell::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.music-shell::before{
    width: 80px;
    height: 80px;
    top: -34px;
    right: 26px;
    background: radial-gradient(circle, rgba(255,255,255,.28), rgba(255,255,255,0) 70%);
}
.music-shell::after{
    width: 56px;
    height: 56px;
    bottom: -28px;
    left: 42px;
    background: radial-gradient(circle, rgba(255,255,255,.2), rgba(255,255,255,0) 70%);
}
.music-cover{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 0 0 2px rgba(255,255,255,.06);
    flex: 0 0 48px;
    transition: width .45s ease, height .45s ease, flex-basis .45s ease, transform .45s ease, border-radius .45s ease;
}
.music-dock.playing .music-cover{
    animation: spinCover 6.6s linear infinite;
}
@keyframes spinCover{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}
.music-now-label{
    font-family: poppins;
    font-size: 11px;
    color: rgba(255,255,255,.84);
    opacity: .9;
    transition: opacity .3s ease, transform .3s ease;
}
.music-now-title{
    font-family: "JetBrains Mono", Consolas, "Courier New", monospace;
    font-size: 12px;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    transition: opacity .3s ease, transform .3s ease, max-width .4s ease;
}
.music-meta{
    min-width: 0;
    transition: opacity .3s ease, transform .3s ease, max-width .4s ease, margin .4s ease;
}
.music-btn{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    transition: opacity .3s ease, transform .3s ease, width .35s ease, margin .35s ease;
}
.music-btn-main{
    margin-left: auto;
    color: #C69C2D;
}
.music-dock.is-collapsed .music-shell{
    min-width: 64px;
    width: 64px;
    max-width: 64px;
    height: 64px;
    padding: 6px;
    gap: 0;
    border-radius: 50%;
    transform: scale(1);
    justify-content: center;
}
.music-dock.is-collapsed .music-shell::before,
.music-dock.is-collapsed .music-shell::after{
    opacity: 0;
    transition: opacity .2s ease;
}
.music-dock.is-collapsed .music-cover{
    width: 52px;
    height: 52px;
    flex-basis: 52px;
}
.music-dock.is-collapsed .music-meta{
    opacity: 0;
    transform: translateX(10px);
    max-width: 0;
    margin: 0;
    pointer-events: none;
}
.music-dock.is-collapsed .music-now-label,
.music-dock.is-collapsed .music-now-title{
    opacity: 0;
    transform: translateX(10px);
    max-width: 0;
}
.music-dock.is-collapsed .music-btn{
    width: 0;
    opacity: 0;
    transform: translateX(10px);
    margin-left: 0;
    border-width: 0;
    pointer-events: none;
}
.music-dock.is-expanded .music-shell{
    transform: scale(1);
}
.music-dock.is-booting .music-shell{
    animation: musicDockIntro .65s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes musicDockIntro{
    from{
        opacity: 0;
        transform: translateY(18px) scale(.92);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
body.theme-galaxy .music-shell{
    border-color: rgba(171,134,255,.42);
    background: linear-gradient(180deg, rgba(127,102,255,.24), rgba(127,102,255,.1));
    box-shadow: 0 8px 20px rgba(0,0,0,.35), inset 0 0 0 1px rgba(171,134,255,.2);
}
body.theme-galaxy .music-cover{
    border-color: rgba(171,134,255,.7);
    box-shadow: 0 0 0 2px rgba(171,134,255,.22);
}
body.theme-galaxy .music-now-label{
    color: rgba(226, 214, 255, .92);
}
body.theme-galaxy .music-now-title{
    color: #efe7ff;
}
body.theme-galaxy .music-btn-main{
    color: #be9fff;
}
body.theme-cyber .music-shell{
    border-color: rgba(0,194,255,.3);
    background: linear-gradient(180deg, rgba(0,194,255,.18), rgba(0,194,255,.07));
    box-shadow: 0 8px 20px rgba(0,0,0,.35), inset 0 0 0 1px rgba(0,194,255,.18);
}
body.theme-cyber .music-cover{
    border-color: rgba(0,194,255,.55);
    box-shadow: 0 0 0 2px rgba(0,194,255,.16);
}
body.theme-cyber .music-now-label{
    color: rgba(214, 246, 255, .9);
}
body.theme-cyber .music-now-title{
    color: #e9fbff;
}
body.theme-cyber .music-btn-main{
    color: #00c2ff;
}
.intro-sticker{
    position: fixed;
    left: 0;
    bottom: -92px;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    z-index: 110;
    opacity: 0;
    transform: translate3d(-34px, 12px, 0);
    pointer-events: none;
}
.intro-sticker.is-visible{
    animation: stickerSlideIn .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-sticker.is-hidden{
    animation: stickerFadeOut .6s ease forwards;
}
.intro-sticker-avatar{
    width: 240px;
    height: 410px;
    border-radius: 0;
    object-fit: contain;
    object-position: left bottom;
    border: 0;
    box-shadow: none;
}
.intro-sticker-bubble{
    position: relative;
    margin-top: 24px;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #ececec);
    border: 2px solid #111111;
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: .25px;
    transform: rotate(-1deg);
    color: #0f0f0f;
    box-shadow: 0 10px 20px rgba(0,0,0,.22);
    text-shadow: none;
    white-space: nowrap;
}
.intro-sticker-bubble::before{
    content: "";
    position: absolute;
    left: -8px;
    top: 26px;
    width: 14px;
    height: 14px;
    background: #f5f5f5;
    border-left: 2px solid #111111;
    border-bottom: 2px solid #111111;
    transform: rotate(45deg);
}
@keyframes stickerSlideIn{
    0%{
        opacity: 0;
        transform: translate3d(-34px, 12px, 0);
    }
    100%{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes stickerFadeOut{
    0%{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    100%{
        opacity: 0;
        transform: translate3d(-24px, 8px, 0);
    }
}
@keyframes galaxyPulse{
    from{
        filter: blur(18px) saturate(112%);
    }
    to{
        filter: blur(25px) saturate(135%);
    }
}
@media all and (max-width: 700px){
    .intro-sticker{
        left: -4px;
        bottom: -54px;
        gap: 5px;
    }
    .intro-sticker-avatar{
        width: 160px;
        height: 270px;
    }
    .intro-sticker-bubble{
        margin-top: 10px;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 12px;
        letter-spacing: .2px;
    }
    .hero-portrait-frame{
        width: clamp(135px, 42vw, 185px);
        padding: 6px;
    }
    .hero-portrait-wrap{
        margin-bottom: 14px;
        gap: 8px;
    }
    #header .header-content .terminal-line,
    #header .header-content .secondline{
        font-size: 16px;
        padding: 8px 11px;
        gap: 3px;
        letter-spacing: 0;
        white-space: nowrap;
    }
    #header .header-content .terminal-line .txt-rotate,
    #header .header-content .terminal-line .txt-rotate .wrap{
        font-size: inherit;
        line-height: inherit;
        white-space: nowrap;
    }
    .social-media-links{
        left: 0;
        right: 0;
        width: 100%;
        justify-content: flex-end;
        padding: 10px 12px;
        min-height: 62px;
        gap: 2px;
    }
    .social-media{
        margin: 5px;
    }
    .music-dock{
        left: 50%;
        right: auto;
        bottom: 72px;
        transform: translateX(-50%);
    }
    .music-shell{
        min-width: 160px;
        max-width: min(210px, calc(100vw - 24px));
        gap: 7px;
        padding: 7px 9px 7px 7px;
    }
    .music-dock.is-collapsed .music-shell{
        min-width: 56px;
        width: 56px;
        max-width: 56px;
        height: 56px;
        padding: 5px;
        border-radius: 50%;
    }
    .music-cover{
        width: 40px;
        height: 40px;
    }
    .music-dock.is-collapsed .music-cover{
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
    .music-now-title{
        max-width: 90px;
        font-size: 11px;
    }
    .music-btn{
        width: 30px;
        height: 30px;
    }
}
@media all and (max-width: 420px){
    #header .header-content .terminal-line,
    #header .header-content .secondline{
        font-size: 15px;
        padding: 8px 10px;
        gap: 3px;
    }
}

@media only screen and (max-width: 768px){
    #navigation-bar{
        height: 84px;
        padding: 10px 12px;
    }
    #navigation-bar .theme-toggle{
        top: 12px;
        left: 12px;
    }
    #navigation-bar .theme-toggle img{
        height: 58px;
    }
    .top-nav{
        top: 16px;
        max-width: calc(100vw - 96px);
    }
    #header{
        min-height: 100svh;
        height: auto;
    }
    .header-content{
        position: relative;
        min-height: 100svh;
        padding: 96px 16px 96px;
    }
    .header-content-box{
        width: min(100%, 34rem);
        padding-right: 0;
    }
    .header-content .firstline{
        font-size: clamp(2.3rem, 11vw, 3.9rem);
        line-height: 1.05;
    }
    .hero-portrait-frame{
        isolation: isolate;
        display: block;
        padding: 6px;
    }
    .hero-portrait-matrix{
        inset: 6px;
        z-index: 1;
    }
    .hero-portrait-img{
        position: absolute;
        inset: 6px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        display: block;
        border-radius: 999px;
        object-fit: cover;
        object-position: center 24%;
        clip-path: none;
        overflow: hidden;
        z-index: 2;
        transform: none;
    }
    .hero-name{
        white-space: normal;
    }
    #header .header-content .terminal-line,
    #header .header-content .secondline{
        width: min(100%, 30rem);
        margin-top: 14px;
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    #header .header-content .terminal-line .txt-rotate,
    #header .header-content .terminal-line .txt-rotate .wrap{
        white-space: normal;
    }
    .social-media-links{
        width: 100%;
        left: 0;
        right: 0;
        bottom: 12px;
        height: auto;
        padding: 10px 14px;
        flex-direction: row;
        justify-content: center;
    }
    .contact{
        display: none;
    }
    #about-content{
        padding: 24px 16px;
    }
    .about-main{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
    }
    .about-first-paragraph{
        width: min(100%, 42rem);
        padding: 10px 0 0;
        font-size: 18px;
    }
    .about-first-line{
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }
    .about-second-line{
        font-size: 16px;
        line-height: 1.7;
    }
    .services-content{
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 12px 16px 0;
    }
    .service{
        width: 100%;
        height: auto;
        margin: 0;
        display: block;
    }
    .service-description{
        display: block;
        width: 100%;
        padding-bottom: 24px;
    }
    .skill-html{
        width: 100%;
        display: block;
        padding: 10px 0;
    }
    .skill-text{
        width: 100%;
    }
    .html-prog{
        width: 100%;
    }
    .footer{
        padding: 0 16px 28px;
    }
    .footer .footer-text{
        text-align: center;
    }
    .music-dock{
        left: 50%;
        right: auto;
        bottom: 72px;
        transform: translateX(-50%);
    }
    .music-shell{
        width: auto;
        max-width: min(240px, calc(100vw - 24px));
        min-width: 0;
    }
}

@media only screen and (max-width: 480px){
    .top-nav{
        left: auto;
        right: 12px;
        transform: none;
        max-width: calc(100vw - 86px);
    }
    .top-nav a{
        padding: 7px 12px;
        font-size: 12px;
    }
    .header-content{
        padding: 92px 14px 88px;
    }
    .hero-portrait-frame{
        width: min(170px, 46vw);
        padding: 5px;
    }
    .hero-portrait-matrix{
        inset: 5px;
    }
    .hero-portrait-img{
        inset: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        object-position: center 22%;
        border-radius: 999px;
        transform: none;
    }
    #header .header-content .terminal-line,
    #header .header-content .secondline{
        font-size: 14px;
        line-height: 1.5;
    }
    .about-header,
    .services-heading,
    .skills-header{
        font-size: 34px;
    }
    .service-description h2{
        font-size: 24px;
    }
    .service-description p{
        font-size: 15px;
        line-height: 1.7;
    }
    .music-now-title{
        max-width: 112px;
    }
    .intro-sticker{
        left: -8px;
        bottom: 96px;
        display: inline-flex;
        z-index: 109;
    }
    .intro-sticker-avatar{
        width: 128px;
        height: 216px;
    }
    .intro-sticker-bubble{
        margin-top: 8px;
        padding: 7px 10px;
        font-size: 11px;
    }
}

