@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}


:root{
    --main-color:#ddd8d8;
    --second-color:#e9e4e4;
    --box-shadow:rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/*Header*/
header{
    background-color: var(--main-color);
    height: 100vh;
}


/*Hamburger Menu*/
.hamburger{
    cursor: pointer;
    background-color: var(--second-color);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    transition: 0.2s all;
    margin-top: 10px;
    display: none;
    width: 40px;
    height: 30px;
    text-align: center;
   padding: 5px;
}
.hamburger:active { 
    transform: scale(0.98);   
    box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);  
} 
.bi-list{
    font-size: 18px;/*Hamburger Icon*/
}

/*NavBar*/
nav{
display: flex;
justify-content: center;

}
.nav-links{
    display: flex;
    list-style: none;
    font-family: "Roboto", sans-serif;
    gap: 15px;
    background-color: var(--second-color);
    box-shadow: var(--box-shadow);
    border-radius: 30px;
    padding: 10px 20px;
    margin:10px;
    a:visited, a:link{
        color: inherit;
    }
}
.nav-links li{
font-weight: 500;
}
.nav--open{
  transform: translate(0) !important;
}
/*Links*/
.nav-links a {
    position: relative;
    text-decoration: none;
  }
  .nav-links a:hover {
    color: #000;
}
.nav-links a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-links a:hover::before {
    transform: scaleX(1);
  }

/*Header  Text*/
.container-header{
    display: flex;
    margin-top: 100px;
    font-family: "Roboto", sans-serif;  
}
.header-text{
   text-align: center;
   width: 100%;
   margin-left: 100px;
  }

/*SVG Curved Text*/
text{
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;  
    text-shadow: -6px 6px 15px rgba(0,0,0,0.5),
    6px -6px 15px rgba(255,255,255,0.8);
  }
.curved-text{
  position: absolute;
  left: 0;
 }
 /*Text*/
.container-p1{
    margin-top: 100px;
    font-size: 1.8rem;
    text-indent: 50px;
}
.container-p2{
    margin-top: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.span-p1{
    background-color: #b1dcb1;
    border-radius: 20px;
    padding: 5px;
    font-weight: 500;
    color:  #373535;
    text-shadow: 1px  1px #534e4e;
}
  /* Header Right Side*/
.wrapper-right{
  width: 100%;
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  }
.wrapper-right img{
     width: 300px;
     height: 100%;
     object-fit: cover;
    position: relative;
  }
  /*SVG Curved Background Header*/
.svg-background {
    position: absolute;
     bottom: -20px;
     width: 100%;
     overflow: hidden; 
 }
 .svg-background svg{
     position: relative;
     display: block;
     width: calc(115% + 1.3px);
     height: 200px;
 }
.svg-background .shape-fill {
     fill: #FFFFFF;
 }

 /*Responsive Mobile Header*/  
  @media (max-width:600px){
header{
      height: 100%; /*Header*/
  }
  nav{
    width: 90%;
  }
.nav-links{
  position: relative; /*Nav Ul*/
  top: 65px;
  transform: translateX(-150%);
  transition: all 600ms ease;
  transition-delay: 100ms;
  height: 45px;
  align-items: center;
  width: 100%;
  padding: 0 50px;
  margin:0;
}
.nav-links li{
  text-align: center;
  text-wrap: nowrap;
}
.hamburger{  /*Hamburger Menu*/
   display: block;
}
.container-header{
    flex-direction: column;
}
/*Text*/
.header-text{
  width: 100%;
  margin-left: 0;
  }
.container-p1{
  text-indent: 0;
}
.container-p2{
  padding: 10px 40px;
  text-align: center;
}
.span-p1{
    display: block;
    width: 150px;
    margin: 10px auto;
}
/*SVG Curved Text*/
.curved-text{
width: 100%;
height: 200px;
margin-top: -60px;
margin-left: -20px;
}
text{
  transform: scale(4);
}
.svg-background{
  display: none;
}
.wrapper-right{   /*Right Side*/
   height: 100%;
   width: 100%;
}
}

/*Mobile Responsive 320*/
  @media only screen and (max-width:320px){
    .hamburger{
      padding-top: 10px;
      padding-left: 5px;
      padding-right: 5px;
      margin-left: -50px;
    }
    .nav-links{
    white-space:nowrap;
    }
}


/*Page 2*/
.container-about{
   width: 100%;
   height: 100%;
   margin-top: 50px;
   display: flex;
}
/*Circle*/
.wrapper-circle {
  width: 100%;
  height: 100%;
  border-color: #ffffff;
  border-radius: 10px;
  display: grid;
  justify-content: center;
  align-content: center;
  margin-top: 150px;
}
.wrapper-circle > * {
  grid-column: 1;
  grid-row: 1;
}
.item {
 animation: spinAround 15s linear infinite;
 }
.item img{
 width: 80px;
 display: block;
 margin: 0 auto;
 margin-top: 50px;
}  
 /*Text-My Skills*/
.text-middle{
 border-radius: 50%;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-shadow: -6px 6px 15px rgba(0,0,0,0.5),
  6px -6px 15px rgba(255,255,255,0.8);
  align-self: center;
  justify-self: center;
}
 /*Animation Circle*/
 @keyframes spinAround {
from {
   transform: rotate(0deg) translate(140px) scale(.8);
   }
  to {
  transform: rotate(360deg) translate(140px) scale(.8);
   }
 }

/*Right Side*/
 .card-about{
  height: 350px;
  background-color: white;
  margin: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: all 5s linear
 }
.card-about h2{
   text-align: center;
    padding-top: 20px;
    font-size: 1.8rem;
    font-family: "Roboto", sans-serif;
    color:  #BABECC;
    text-shadow: 1px  1px #070707;
}
.card-about ul{
   margin-top: 20px;
   list-style: none; 
}
.card-about ul li{
 margin-left: 40px;
  line-height: 1.5;
  font-size: 1.1rem;
 font-weight: 500;
 margin-top: 5px;
 font-family: "Roboto", sans-serif;
}
.card-about .resume{
  margin-top: 40px;
  font-size: 1rem;
  color:  #BABECC;
  text-shadow: 1px  1px #070707;
}

/*Responsive Mobile Page 2*/
 @media only screen and (max-width:600px){
.container-about{
  display: flex;
   flex-direction: column;
   margin-top: 100px;
 }
.wrapper-circle{
 width: 50%;
 margin: 50px auto;
 }
 .item{
  width: 30%;
   margin-left:55px;
  }
 .item img{
    width: 100%;
 }
 .text-middle{
     font-size:1.2rem;
 }
 /*Right Side*/
.wrapper_right-about{
   width: 100%;
 }
.card-about{
   width: 100%;
    margin-top: 200px;
    margin-left: 0;
    height: 100%;  
}
.card-about ul li{
   font-size: 1.2rem;
   padding: 10px 10px;
    margin: 10px; }
}

  /*Text Animation*/  
[data-reveal="content"] {
 display: inline-block;
 position: relative;
 }
[data-reveal="cover"] {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     z-index: 1;
     border-radius: 10px;
}
[data-reveal="text"] {
     opacity: 0;
}
[data-js="reveal"].loaded [data-reveal="cover"] {
     -webkit-animation: reveal-cover 1.5s ease-in-out;
             animation: reveal-cover 1.5s ease-in-out;
}
[data-js="reveal"].loaded [data-reveal="text"] {
     opacity: 1;
     -webkit-animation: reveal-text 1.5s ease-in-out;
             animation: reveal-text 1.5s ease-in-out;
}

@-webkit-keyframes reveal-cover {
0% {
  width: 0;
  left: 0;
}
44% {
  width: 100%;
  left: 0;
}
54% {
  width: 100%;
  left: 0;
}
100% {
  width: 0;
  left: 100%;
}
}
@keyframes reveal-cover {
0% {
 width: 0;
left: 0;
}
44% {
  width: 100%;
  left: 0;
}
54% {
  width: 100%;
  left: 0;
}
100% {
  width: 0;
  left: 100%;
}
}
@-webkit-keyframes reveal-text {
0% {
  opacity: 0;
}
44% {
  opacity: 0;
}
54% {
  opacity: 1;
}
}
@keyframes reveal-text {
0% {
  opacity: 0;
}
44% {
  opacity: 0;
}
54% {
  opacity: 1;
}
}

/*SVG Curved Background*/
.svg-s2 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.svg-s2 svg {
    position: relative;
    display: block;
    width: calc(142% + 1.3px);
    height: 228px;
}
.svg-s2 .shape-fill {
    fill: #DDD8D8;
}

/*Third Page-Projects*/
.title-project{   /*Title*/
    position:absolute;
    width: 70px;
    height: 500px;
    text-align: center;
    padding-top: 250px;
    display: block;
    left: 90%;
    font-size: 1.2rem;
    font-family: "Roboto", sans-serif; 
    color:#BABECC;
    text-shadow: 1px 1px 1px #FFF;
   font-weight: bold;
  }
.title-project:before {
    border-left: 1px solid #BABECC;
    content: "";
    display: block;
    height: 200px;
    position: absolute;
    top: 30px;
    width: 1px;
    z-index: 0;
    left: 30px;
    transform: rotate(360deg); text-shadow: 1px 1px 1px #FFF;
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
    
}
.title-project:after {
    border-left: 1px solid #BABECC;
    content: "";
    display: block;
    height: 200px;
    position: absolute;
    top: 323px;
    width: 1px;
    left: 30px;
    text-shadow: 1px 1px 1px #FFF;
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

.third-page{
width: 100%;
height: 100%;
 background-color: var(--main-color); 
}
.container_row-1{
    width: 100%;
    display: flex;
    gap: 50px;
    border-radius: 20px;
    justify-content: center;
}
.item1{
      width: 450px;
      height: 100%;
      position: relative;
      border-radius: 10px;
      transition: all 0.5s ease-in-out;
      margin-top: 50px;
}
.item2{
    width: 450px;
    height: 100%;
    position: relative;
    transition: all 0.5s ease-in-out;
    margin-top: 50px;
}
.container_row-2{
    width: 100%;
   display: flex;
   gap: 50px;
   border-radius: 20px;
   justify-content: center;
   margin-top: 50px;
}
.item3{
    width: 450px;
    height: 100%;
    position: relative;
    transition: all 0.5s ease-in-out;
}
.item4{
    width: 450px;
    height: 100%;
    position: relative;
    transition: all 0.5s ease-in-out;
}
.item1 img,
.item2 img,
.item3 img,
.item4 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.item1:hover img{
  box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1);
}
/*Overlay*/
.overlay{
  position: absolute;
  display: flex;
  flex-direction: column;
  margin: 100px 160px;
  width: 150px;
  gap: 15px;
visibility: hidden;
  transition: 0.1s ease;
}
/*Buttons*/
.overlay button {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    cursor: pointer;
    width: 120px;
    height: 30px;
    border-radius: 30px;
    font-size: 18px;
    color: #000000;
    opacity: 0.9;
    font-family: "Roboto", sans-serif;
  text-shadow: 1px 1px 1px #FFF;
}
.overlay button a{
  text-decoration: none;
  color: inherit;
}
.overlay button:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.overlay button:active {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}
  
 /*Items Hover*/
  .item1:hover,
  .item2:hover,
  .item3:hover,
  .item4:hover{
    cursor: pointer;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;
    filter: grayscale(100%);
  }
  .item1:hover .overlay,
  .item2:hover .overlay,
  .item3:hover .overlay,
  .item4:hover .overlay{
    visibility: visible;
  }
  /*Ribbon*/
  .ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
  }
  .ribbon::before,
  .ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 6px solid #BABECC;
  }
  .ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #BABECC;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
    font-family: "Roboto", sans-serif;
  }
  
  /* Ribbon Left*/
  .ribbon-top-left {
    top: -10px;
    left: -10px;
  }
  .ribbon-top-left::before,
  .ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
  }
  .ribbon-top-left::before {
    top: 0;
    right: 0;
  }
  .ribbon-top-left::after {
    bottom: 0;
    left: 0;
  }
  .ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
  }
.separator{
    display: none;
}

/*Responsive Mobile*/
  @media only screen and (max-width:600px){
    /*Title*/
.title-project{
  display: none;
    }
.title-project:before{
  display: none; 
    }
.title-project:after{
  display: none;
}
.separator{
      display:flex;
      align-items: center;
      font-family: "Roboto", sans-serif;
}
.separator .line{
    flex: 1;
background: rgb(191, 185, 185);
    height: 1px;
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.separator h2{
    padding: 0 2rem;
    color:#BABECC;
    text-shadow: 1px 1px 1px #FFF;
}
.third-page{
    width: 100%;
    margin-top: -1px;
    }
.container_row-1{
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.container_row-2{
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 100px;
}
.item1,
.item2,
.item3,
.item4{
width: 100%;
}
.overlay{
  margin: 80px 150px;
  }
.overlay button{
    width: 80px;
    height: 20px;
  }
.item1:hover,
.item2:hover,
.item3:hover,
.item4:hover{
   transform: none;
}
}

  /*4*/
.devider{ /*Empty Div*/
 width: 100%;
 background-color: var(--main-color);
  height: 180px;
}
.four-page{
  background-color: rgb(255, 255, 255);
  width: 100%;
  position: relative;
}
.svg-form {
  position: absolute;
  top: -1px;
  width: 100%;
  overflow: hidden;
  transform: rotate(180deg);
}
.svg-form svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
.svg-form .shape-fill {
  fill: #DDD8D8;
}

/*Form*/

.form-title {   /*Form Title*/
  padding: 32px 0;
  text-align: center;
  margin-top: 50px;
}
.form-title h2{
  font-size: 2rem;
}
.form-title h2,
label{
  color: #BABECC;
  text-shadow: 1px 1px 1px #FFF;
  font-family: "Roboto", sans-serif;
  display: block;
  margin: 15px;
}
form {
  padding: 16px;
  width: 320px;
  margin: 0 auto;
}
 form button, input {
  border: 0;
  outline: 0;
  font-size: 1rem;
  border-radius: 320px;
  padding: 16px;
  background-color: #EBECF0;
  text-shadow: 1px 1px 0 #FFF;
}

input {
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  width: 100%;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}
input:focus {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}
 .form-btn{
  box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  margin-top: 30px;
  font-family: "Roboto", sans-serif;
  color: #BABECC;
  text-shadow: 1px 1px 1px #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  
}
textarea{
  border: 0;
  outline: 0;
  font-size: 1rem;
  border-radius: 320px;
  padding: 16px 50px;
  background-color: #EBECF0;
  text-shadow: 1px 1px 0 #FFF;
  width: 280px;
  height: 100px;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  word-wrap: break-word;
  resize: none;
}
 form button:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
 form button:active {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}

.footer-ul,
.footer-ul2{
  display: flex;
  margin: 50px;
 position: absolute;
 top: 400px;
 font-family: "Roboto", sans-serif;
 color: #BABECC;
 text-shadow: 1px 1px 1px #FFF;
}
.skills,
.links-top{
  margin: -50px 30px;
  list-style: none;
}
.skills :first-child,
.links-top :first-child{
font-weight: bold;
padding-bottom: 10px;
font-size: 1.1rem;
}
.links-top li{
  padding-bottom: 10px;
}
.footer-ul2{
right: 0;
}
.links-top{
  margin-right: 80px;
}

.links-top li a:visited,
.links-top li a{
  color: #BABECC;
}

.copy{
  font-family: "Roboto", sans-serif;
  color: #BABECC;
}

.left-line{
  border-left: 1px solid #BABECC;
  content: "";
  display: block;
  height: 200px;
  position: absolute;
  top: -60px;
  width: 1px;
  z-index: 0;
  left: 300px;
  transform: rotate(360deg); text-shadow: 1px 1px 1px #FFF;
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.right-line{
  border-left: 1px solid #BABECC;
  content: "";
  display: block;
  height: 200px;
  position: absolute;
  top: -60px;
  width: 1px;
  z-index: 0;
  right: 300px;
  transform: rotate(360deg); text-shadow: 1px 1px 1px #FFF;
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
/*Responsive Mobile*/
@media only screen and (max-width:600px){
  .form-title{
    margin-top: 50px;
  }
  .copy{
   margin-top: 350px;
   padding: 10px;
 
  }
  input{
    margin: 10px;
  }
  .footer-ul,
  .footer-ul2{
   margin-top: 450px;
   white-space: nowrap;

   width: 100px;
  }
  .footer-ul{
   margin-right: 200px;
  }
  .nav-links{
    padding-right: 80px;
  }
  .devider{
    margin-top: -1px;
  }
  .right-line{
    display: none;
  }
  .left-line{
    left: 150px;
  }
}

/*Responsive Tablet*/
@media only screen and (min-width:768px) and (max-width:1200px){
  text{
    transform: scale(2);
  }
  .curved-text{
    width: 100%;
    height: 200px;
    margin-top: -60px;
    margin-left: -20px;
    }
    .span-p1{
      display: block;
      width: 200px;
      margin: 10px auto;
  }
  .container-p1{
    text-indent: 0;
  }
  .container-p2{
    text-align: center;
  }
  /*Page 2*/
  .container-about{
    display: flex;
     flex-direction: column;
     margin-top: 100px;
   }
  .wrapper-circle{
   width: 50%;
   margin: 0px 300px;
   }
   .item{
    width: 30%;
     margin-left:55px;
    }
   .item img{
      width: 100%;
   }
   .text-middle{
       font-size:1.8rem;
       margin-left: -140px;
   }
   /*Right Side*/
  .wrapper_right-about{
     width: 100%;
     margin-top: 10px;
   }
  .card-about{
     width: 100%;
      margin-top: 150px;
      height: 100%;
      padding: 10px;  
  }
  .card-about ul li{
     font-size: 1.2rem;
     padding: 10px 10px;
      margin: 10px; }

      /*Page 3*/

      .title-project{
        display: none;
          }
      .title-project:before{
        display: none; 
          }
      .title-project:after{
        display: none;
      }
      .separator{
            display:flex;
            align-items: center;
            font-family: "Roboto", sans-serif;
      }
      .separator .line{
          flex: 1;
          background-color: #000;
          height: 1px;
          margin-top: 30px;
      }
      .separator h2{
          padding: 0 2rem;
          margin-top: 30px;
      }
      .third-page{
          width: 100%;
          }
      .container_row-1{
        display: flex;
        flex-direction: column;
        padding: 20px;
      }
      .container_row-2{
          display: flex;
          flex-direction: column;
          padding: 20px;
          gap: 100px;
      }
      .item1,
      .item2,
      .item3,
      .item4{
      width: 100%;
      }
      .overlay{
        margin: 180px 320px;
        }
      .overlay button{
          width: 120px;
          height: 50px;
        }
      .item1:hover,
      .item2:hover,
      .item3:hover,
      .item4:hover{
         transform: none;
      }
    
      .form-title{
        margin-top: 50px;
      }
      .copy,
      .pp{
        margin: 10px;
        padding: 10px;
      }
      input{
        margin: 10px;
      }
      .links-top{
        margin-right: 10px;
      }
      .left-line{
        left: 130px;
      }
      .right-line{
        right: 120px;
      }
      .skills{
        margin-left: 10px;
      }
  }
           

 