@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
:root{
   --primary-color: #fff;
--primary-shade: #f7f5f2; --seconday-color: #000;
--secondary-shade: #4b4c4c;
--red-color: #d40700;
--red-shade: #b20600;
--accent-color: #ffee63;
}
ul li{
    list-style:none;
}
a{
    text-decoration:none;
}


.layout{
  width: 90%; margin: 0 auto;
  }
  .flex{
  display: flex;
  }
  .space-between{
  justify-content: space-between;
  }
  .align-center{
  align-items: center;
  }
  .justify-center{
  justify-content: center;
  }
  .uppercase{
      text-transform: uppercase;
  }
  .f-w-500{
      font-weight:500;
  }
  .f-w-600{
      font-weight:600;
  }
  .f-w-700{
      font-weight:700;
  }
  .letter-spacing2{
      letter-spacing: 3px;
  }
  .flex2{
      flex: 2;
  }
  .flex3{
      flex: 3;
  }
  .my-t-10{
      margin-top: 10px;
  }
  
  .my-t-20{
      margin-top: 20px;
  }
    header {

        background: rgb(2, 0, 36);
        
        background: linear-gradient (90deg, Orgba(2, 0, 36, 1) 0%, Orgba(50, 50, 51, 1) 35%,rgba(0, 212, 255, 1) 100%); 
        background: linear-gradient(to right, #040404, #242424, #656565); color: var(--primary-color);
        position: absolute;
       
    }
    .nav-bar{
        padding:30px 0;
    }
    SPAN{
        color:red;
    }
       
    ul li a{
        margin: 0 10px;
        padding: 0 5px;
        color:var(--accent-color);
        font-size: 18px;
    cursor:pointer;
    position: relative;
    }
    ul li a::before{
        content: '';
        width: 0;
        position: absolute;
        bottom: -5px;
        left: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: 0.6s ease;
        }
        ul li a:hover::before{ width: 100%;
        }
        .btn{
            width: 100px;
            height: 40;
            border-radius: 8px;
            background-color: var(--red-color);
            color: var(--primary-color);
            outline: none;
            border: none;
            cursor: pointer;
            font-size: 16;
            padding: 0 5px;
            font-weight: 500;
        }

        .btn:hover{
            background-color: var(--red-color);
            color: var(--primary-color);
            border: 2px solid var(--red-color);
        }
        .content {
            height: 90vh;
            position: relative;
            }
        .right img{
            width: 65%;
            position: relative;
            z-index: 999;
            cursor: pointer;
            transition: 0.3s ease;
        }
        .right img:hover{
            filter:drop-shadow(16px 5px 20px burlywood)

        }
        
        
        /* ////........About Me........//// */

.about-me {
  background-color: #0e1415;
  padding: 6rem 0;
}

.about-me .about-heading {
  color: #25b79f;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.about-content img {
  height: 200px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.about-content p {
  font-size: 1.2rem;
  color: #f0f0e6;
  padding: 0 2.3rem;
  text-align: center;
}

.skills .skills-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #25b79f;
  text-align: center;
}

.about-me .about-content {
  display: flex;
  flex-wrap: wrap;
}

.about-content .left-content {
  flex-basis: 45%;
  text-align: center;
}

.about-content .right-content {
  flex-basis: 45%;
}

/* ///.....Skill Bar....../// */

.skills-bar {
  padding: 25px 30px;
}

.skills-bar .bar {
  margin: 25px 0;
}

.skills-bar .bar .info span {
  font-size: 1rem;
  font-weight: 500;
}

.skills-bar .bar .info {
  margin-bottom: 8px;
  color: #f0f0e6;
}

.skills-bar .bar .progress-line {
  position: relative;
  height: 10px;
  width: 550px;
  background: #f0f0f0;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line span {
  position: absolute;
  background: #25b79f;
  height: 100%;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

.progress-line .html {
  width: 80%;
}
.progress-line .css {
  width: 70%;
}
.progress-line .bootstrap {
  width: 50%;
}
.progress-line .javascript {
  width: 50%;
}
.progress-line .c {
  width: 50%;
}

.bar .progress-line span::before {
  position: absolute;
  content: "";
  height: 0;
  right: 0;
  top: -12px;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-style: #f0f0f0;
  border-top-color: #f0f0f0;
}

.bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -28px;
  color: #07374a;
  font-size: 12px;
  font-weight: 700;
  background: #f0f0f0;
  padding: 1px 8px;
  border-radius: 3px;
}

.progress-line .html::after {
  content: "75%";
}
.progress-line .css::after {
  content: "65%";
}
.progress-line .bootstrap::after {
  content: "50%";
}
.progress-line .javascript::after {
  content: "50%";
}
.progress-line .c::after {
  content: "50%";
}

.navbar.solid {
  background-color: #07374a;
  transition: background-color 1s ease 0s;
  box-shadow: 0 0 4px rgb(7 55 74 / 20%);
  z-index: 500;
}

.navbar.solid .navbar-brand {
  display: inline-block;
  color: #f0f0e6;
  transition: color 1s ease 0s;
}

.navbar-brand {
  display: none;
  color: #f0f0e6;
  font-weight: 400;
}

/* ////......Contact......///// */
.contact {
    background: black;
    position: relative;
    height: 92vh;
  }
  
  .contact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .contact-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #25b79f;
    padding-bottom: 0.5rem;
  }
  
  .contact-content .mail {
    color: #f0f0e6;
    padding-bottom: 0.2rem;
    font-size: 1rem;
  }
  
  .contact-content .links {
    color: #25b79f;
    padding: 0.5rem;
    padding-bottom: 1.8rem;
    font-size: 1rem;
  }
  
  .contact-content a {
    text-decoration: none;
    color: #25b79f;
    padding: 0.5rem;
    transition: 0.3s ease-in-out;
  }
  
  .contact-content a:hover {
    color: #f0f0e6;
  }
 
/* ////.....Payment form......///// */

.payment{
    background: gray;
    padding: 6rem 0;
  }
  
  .proj-heading h1 {
    text-align: center;
    color: #07374a;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 3rem 0;
  }
  
  .proj-1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .proj-1 img {
    height: 330px;
    width: 380px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 10px -10px rgb(37 41 52 / 31%);
    margin-right: 1.7rem;
  }
  
  .proj-1 .proj1-details {
    width: 32rem;
  }
  
  .proj-1 .proj1-details i {
    font-size: 1.5rem;
    color: #0d12144a;
  }
  
  .proj-1 .proj1-details h2 {
    font-size: 2rem;
    color: #05171d;
  }
  
  .proj-1 .proj1-details p {
    font-size: 1.3rem;
    color: #041921;
    font-weight: 600;
  }
  
  .proj-1 .proj1-details button {
    background: #f0f0e6;
    padding: 0.5rem;
    margin-top: 0.5rem;
    width: 150px;
    border: none;
    border-bottom: 2px solid #07374a;
  }
  
  .proj-1 .proj1-details button a {
    text-decoration: none;
    color: #4a8eab;
    font-size: 1.1rem;
    transition: 0.2s ease-in-out;
    text-align: center;
    transition: 0.3s ease-in-out;
  }
  
  .proj-1 .proj1-details button .fas {
    font-size: 0.7rem;
    padding: 0.3rem;
    transition: 0.2s ease-in-out;
  }
  
  .proj-1 .proj1-details button:hover {
    background: #174454;
  }
  
  .proj-1 .proj1-details button:hover a,
  .proj-1 .proj1-details button:hover .fas {
    color: #f0f0e6;
  }
  .proj-1 img:hover{
    filter:drop-shadow(16px 5px 20px burlywood)
  }
  .proj-2 img:hover{
    filter:drop-shadow(16px 5px 20px burlywood)
  }


    /* ////.....proj2.....//// */

.proj-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
  }
  
  .proj-2 img {
    height: 330px;
    width: 380px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 10px -10px rgb(37 41 52 / 31%);
    margin-right: 1.7rem;
  }
  
  .proj-2 .proj2-details {
    width: 32rem;
  }
  
  .proj-2 .proj2-details i {
    font-size: 1.5rem;
    color: #010608;
  }
  
  .proj-2 .proj2-details h2 {
    font-size: 2rem;
    color: #020c10;
  }
  
  .proj-2 .proj2-details p {
    font-size: 1.3rem;
    color: #07374a;
    font-weight: 600;
  }
  
  .proj-2 .proj2-details button {
    background: #f0f0e6;
    padding: 0.5rem;
    margin-top: 0.5rem;
    width: 150px;
    border: none;
    border-bottom: 2px solid #07374a;
  }
  
  .proj-2 .proj2-details button a {
    text-decoration: none;
    color: #07374a;
    font-size: 1.1rem;
    transition: 0.2s ease-in-out;
    text-align: center;
    transition: 0.3s ease-in-out;
  }
  
  .proj-2 .proj2-details button .fas {
    font-size: 0.7rem;
    padding: 0.3rem;
    transition: 0.2s ease-in-out;
  }
  
  .proj-2 .proj2-details button:hover {
    background: #07374a;
  }
  
  .proj-2 .proj2-details button:hover a,
  .proj-2 .proj2-details button:hover .fas {
    color: #f0f0e6;
  }
  
  .more-work {
    text-align: center;
    margin: 3rem 0 1rem 0;
  }
  
  .more-work p {
    font-size: 1.6rem;
    color: #07374a;
    font-weight: 500;
  }
  
  .more-work a {
    text-decoration: none;
    color: #f0f0e6;
    font-size: 1.3rem;
  }
  
  .more-work a:hover {
    border-bottom: 2px solid #f0f0e6;
  }
  

  .king img {
    height: 330px;
    width: 380px;
    object-fit: cover;
    border-radius: 60%;
    box-shadow: 0 20px 10px -10px rgb(37 41 52 / 31%);
    margin-right: 1.7rem;
}
* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

/* ////......Media query......//// */

@media (max-width: 500px) {
  html {
    font-size: 60%;
  }

  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }

  .about-content .right-content {
    flex-basis: 100%;
  }

  .skills {
    width: 100%;
  }

  .skills-bar .bar .progress-line {
    width: 100%;
  }
  .right-content h1 {
    margin-top: 3.2rem;
  }

  .proj-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .proj-1 img {
    height: 230px;
    width: 290px;
    margin-bottom: 0.5rem;
  }

  .proj-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .proj-2 img {
    height: 250px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .contact-content {
    width: 100%;
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  html {
    font-size: 65%;
  }

  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }

  .about-content .right-content {
    flex-basis: 100%;
  }

  .skills {
    width: 100%;
  }

  .skills-bar .bar .progress-line {
    width: 100%;
  }

  .work-arrow {
    display: none;
  }

  .right-content h1 {
    margin-top: 3.2rem;
  }

  .proj-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .proj-1 img {
    height: 240px;
    width: 290px;
    margin-bottom: 0.5rem;
  }

  .proj-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .proj-2 img {
    height: 240px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .contact-content {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: 70%;
  }

  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }

  .about-content .right-content {
    flex-basis: 100%;
  }

  .skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .left-content h1 {
    margin-top: 3.2rem;
    text-align: center;
  }

  .right-content h1 {
    margin-top: 3.2rem;
    text-align: center;
  }

  .contact-content {
    width: 100%;
  }
}

@media (orientation: 100%) {
  .header {
    height: 90vmax;
  }
}
