@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');

:root{
  /*=======Main theme colors=======*/
  --first-color: #161717;
  --second-color: white;
  --third-color: #777;

  /*=======Hover colors=======*/
  --hover-color: white;

  /*=======Background colors=======*/
  --body-bg-color: #fefefe;
  --card-bg-color: #fff;
  --modal-bg-color: #fff;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --line-color: #d7d7d7;

  /*=======Color Filter=======*/
  --color-filter: invert(1);

  /*=======Box shadow=======*/
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);

  /*=======Font size=======*/
  --small-font-size: 0.9em;
  --normal-font-size: 1em;

  /*=======Scroll bar colors=======*/
  --scroll-bar-color: #c5cadf;
  --scroll-thumb-color: #70768a;
  --scroll-thumb-hover-color: #454f6b;
}

.dark-theme{
  /*=======Main theme colors=======*/
  --first-color: #000000;
  --second-color: darkslategray;
  --third-color: #a9afc3;

  /*=======Background colors=======*/
  --body-bg-color: #0e1b31;
  --card-bg-color: #132347;
  --modal-bg-color: #102048;
  --bg-transparent-color: rgba(255, 255, 255, 0.1);
  --transparent-color-01: rgba(255, 255, 255, 0.1);
  --line-color: #454f6b;

  /*=======Color Filter=======*/
  --color-filter: invert(0);

  /*=======Scroll bar colors=======*/
  --scroll-bar-color: #c1ceff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;
}

*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  
}

html{
  scroll-behavior: smooth;
  
}

body{
  color: var(--first-color);
  background: rgb(2, 2, 2);
  transition: .5s ease;
  overflow-x: hidden;

  
}

a{
  text-decoration: none;
}

li{
  list-style: none;
}

/*=======Scroll to top button=======*/
.scrollToTop-btn{
  z-index: 99999;
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: darkslategray;
  color: #fff;
  font-size: var(--small-font-size);
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: .5s ease;
}

.scrollToTop-btn.active{
  right: 20px;
  pointer-events: all;
  opacity: 1;
}

/*=======Light/Dark theme button=======*/
.theme-btn{
  z-index: 999999;
  position: fixed;
  right: 0;
  top: 100px;
  background: var(--transparent-color-01);
  backdrop-filter: blur(20px);
  width: 50px;
  height: 50px;
  font-size: 1.2em;
  border-radius: 5px 0 0 5px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.theme-btn .fa-sun, .theme-btn.sun .fa-moon{
  display: none;
}

.theme-btn.sun .fa-sun{
  display: block;
}

/*=======Scroll bar=======*/
::-webkit-scrollbar {
	display: none;
	}

::-webkit-scrollbar{
  width: 10px;
  background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb{
  background: var(--scroll-thumb-color);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
  background: var(--scroll-thumb-hover-color);
}


/*=======Scroll bar=======*/

.logo{
	color: white;
	font-size: 35px;
	letter-spacing: 1px;
	cursor: pointer;
	
}
span{
	color: rgb(60, 99, 99);
}


/*=======Header=======*/
header{
  z-index: 99999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(3px);
  transition: .6s ease;
  
}

header.sticky{
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
}

.nav-bar{
  position: relative;
  height: calc(4rem + 1rem);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  transition: .6s ease;
}

header.sticky .nav-bar{
  height: calc(2.5rem + 1rem);
}

.nav-bar .logo{
  color: var(--first-color);
  font-size: 1.3em;
  font-weight: 600;
}

.nav-items a{
  color: white;
  font-size: var(--normal-font-size);
  font-weight: 500;
  position: relative;
  right: 4rem;
}

.nav-items a.active{
  color: #ffffff;
  font-weight: bold 500;
}

.nav-items a.active:hover{
  color: rgb(255, 255, 255);
}

.nav-items a:not(:last-child){
  margin-right: 50px;
}

.nav-items a:hover{
 
    background-color: #000000;

    border-radius: 30px;
    color: #ffffff;
    transition: 0.1s;
    height: 10px;
    padding: 1rem;
}

.nav-menu-btn{
  display: none;
}


/*=======Home section=======*/
.home{
  position: relative;
  max-width: 100%;
  max-height: 100vh;
  flex-direction: column;
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(../images/darkWeb2.jpg);
	background-size: cover;
	background-position: center;
	
}

#particle-js{
  position: relative;
  bottom: 15rem;
  height: 100vh;
  
}

.home .home-container{
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
}

.home-container .media-icons{
  display: flex;
  flex-direction: column;
  margin-left: 8rem;
  position: relative;
  top: 23rem;
}

.home-container .media-icons a{
  color: darkslategray;
  font-size: 1.5em;
  margin: 8px 4rem;
  
}

.home-container .media-icons a:hover{
  color: white;
}

.home-container .info h2{
  font-size: 4em;
  font-weight: 600;
  line-height: 70px;
  position: relative;
  top: 23rem;
}

.home-container .info h3{
  color: white;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 50px;
  position: relative;
  top: 23rem;
}

.home-container .info p{
  color: white;
  font-size: var(--normal-font-size);
  max-width: 350px;
  position: relative;
  top: 23rem;
}

.btn{
  background: darkslategray;
  color: #fff;
  font-size: var(--normal-font-size);
  font-weight: 500;
  display: inline-block;
  margin-top: 25px;
  padding: 20px 30px;
  letter-spacing: 1px;
  border-radius: 10px;
 
}

.btn:hover{
  background: black;
}

.home-container .home-img{
  position: relative;
}

.home-container .home-img img{
  width: 100%;
  transform: translate(0, 0);
}

.home .scroll-down{
  color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: 500;
  margin-top: 120px;
  position: relative;
  top: 25rem;
}


@keyframes arrow-down{
  0%{
    transform: translateY(0);
  }
  30%{
    transform: translateY(10px);
  }
}

/*=======into animation=======*/

.slider {
 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}

.intro {
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(../images/darkWeb3.jpg);
	background-size: cover;
	background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items:  center;
}

.hide {

  overflow: hidden;
  
}

.hide span {
  transform: translateY(100%);
  display: inline-block;

}

/*=======Common styles for all sections=======*/
.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}


.section{
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 2rem 2rem;
 
}

.sub-section{
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 0;
  
}

.section-title-01{
  font-size: 4.5em;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(to top, transparent 0%, white 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .2;
}

.section-title-02{
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  transform: translateY(-80px);
}

.section-title-02:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  right: 0;
  bottom: 0;
  background: #0c0c0c;
}

.container{
  position: relative;
  flex-direction: column;
}

#scroll_section{
  position: relative;
  overflow: hidden;
  height: 100vh;
}
/*=======About section=======*/

.about{
  background-color: #0c0c0c;
  padding-top: 1rem;
  height: 100vh;
  position: absolute;
  
}

.about .container .content{
  column-gap: 40px;
  width: 100%;
  
}

.about-img{
  position: relative;
  bottom: 2rem;

}

.about-img img{
  width: 450px;
  border-radius: 10px;
  
  
}


.about-img img:hover{
	transform: scale(1.1);
	transition: .3s;
}
.about-info .description{
  max-width: 600px;
  text-align: justify;
}

.about-info .description h3{
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-info .description h4{
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-info .description h4 span{
  color: var(--second-color);
}

.about-info .description p{
  color: var(--third-color);
  font-size: var(--normal-font-size);
  margin-bottom: 15px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--line-color);
}

.about-info .professional-list{
  display: flex;
  column-gap: 30px;
}

.about-info .professional-list .list-item{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
}

.about-info .professional-list .list-item h3{
  font-size: 2.5em;
  font-weight: 700;
}

.about-info .professional-list .list-item span{
  color: white;
  font-size: var(--small-font-size);
}

/*=======Skills section=======*/
.skills{
    padding-top: 1rem;
}
.skills .container .content{
  width: 100%;
 
}

.skills-description{
  max-width: 700px;
  margin-bottom: 50px;
  margin:  2rem;
  
}

.skills-description h3{
  font-size: 2em;
  
  margin-bottom: 5px;

}

.skills-info{
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
  margin: 0 2rem;
}

.skills-info h4{
  margin-bottom: 20px;
}

.skills-info h4 label{
  background: darkslategray;
  color: rgb(255, 255, 255);
  font-size: var(--normal-font-size);
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 5px;
  position: relative;
  left: 4rem;
}

#stack label{
  background: darkslategray;
  color: rgb(255, 255, 255);
  font-size: var(--normal-font-size);
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 5px;
  position: relative;
  left: 19rem;
}

.education-all{
  margin-bottom: 80px;
}

.edu-list .item{
  background: rgb(27, 27, 27);
  box-shadow: var(--box-shadow);
  border-bottom: 3px solid var(--second-color);
  padding: 20px;
  margin-top: 15px;
  border-radius: 6px;
  transition: .3s ease;
  position: relative;
  left: 4rem;
}

.edu-list .item .year{

  margin-bottom: 5px;
  color: darkslategrey;
}

.edu-list .item p{
  color: darkslategrey;
  font-size: var(--small-font-size);
  font-weight: 600 bold;
}

.edu-list .item p span{
  color: white;
  font-size: var(--normal-font-size);
  font-weight: 500;
}

.bar{
  background-color: rgb(27, 27, 27);
  box-shadow: var(--box-shadow);
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 6px;
  transition: .3s ease;
  position: relative;
  left: 18rem;
}

.bar .info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: var(--small-font-size);
}

.bar .info span{
  font-weight: 500;
}

.bar .line{
  position: relative;
  width: 100%;
  height: 7px;
  background: #c5cadf;
  border-radius: 2px;
}

.bar .line:before{
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--second-color);
  border-radius: 2px;
}

.bar .html:before{
  width: 95%;
}

.bar .css:before{
  width: 85%;
}

.bar .javascript:before{
  width: 80%;
}

.bar .jquery:before{
  width: 80%;
}

.bar .php:before{
  width: 75%;
}

.experience-card{
  background: rgb(7, 10, 24);
  border-bottom: 3px solid var(--second-color);
  padding: 35px;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
  transition: .3s ease;
}

.experience-card .upper{
  line-height: 30px;
}

.experience-card h3{
  font-size: 1.3em;
  font-weight: 700;
}

.experience-card h5{
  font-size: var(--small-font-size);
  font-weight: 500;
  font-style: italic;
}

.experience-card span{
  color: var(--third-color);
}

.experience-card .hr{
  width: 100%;
  height: 2px;
  background: var(--line-color);
  margin: 10px 0 22px;
}

.edu-list .item:hover, .bar:hover, .experience-card:hover{
  transform: scale(1.03);
}

/*=======Services section=======*/
.services{
  background-color: #0c0c0c;
  padding-top: 1rem;
  padding-bottom: 4rem;
  height: 100vh;
  

}
.services .container .content{
  width: 100%;
}

.services-description h3{
  font-size: 2em;
  margin-bottom: 50px;
  padding-left: 3rem;
}

.service-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
  padding-left: 3rem;
  
}

.service-card{
  background: var(--card-bg-color);
  border-bottom: 3px solid var(--second-color);
  padding: 50px;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
  
}

.service-card > i{
  color: var(--second-color);
  font-size: 3em;
  margin-bottom: 30px;
}

.service-card h3{
  font-size: 1.5em;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
  
}

.service-card .learn-more-btn{
  color: var(--third-color);
  cursor: pointer;
  transition: .3s ease;
}

.service-card .learn-more-btn i{
  transition: .3s ease;
}

.service-card:hover .learn-more-btn i{
  transform: translateX(10px);
}

.service-modal{
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--bg-transparent-color);
  backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
}

.service-modal.active{
  visibility: visible;
  opacity: 1;
}

.service-modal-body{
  position: relative;
  background: var(--modal-bg-color);
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transform: translateY(-50px);
  transition: .5s ease;
}

.service-modal.active .service-modal-body{
  transform: translateY(0);
}

.service-modal-body .modal-close-btn{
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
}

.service-modal-body h3{
  font-size: 2em;
}

.service-modal-body h4{
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 0 10px;
  
}

.service-modal-body ul li{
  margin-top: 15px;
}

.service-modal-body ul li i{
  color: var(--second-color);
}

/*=======Portfolio section=======*/
.portfolio .container .content{
  width: 100%;
}

.portfolio-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 100%;
  gap: 35px;
  margin: 0 auto;
}

.portfolio-list .img-card{
  position: relative;
  max-width: 100%;
  height: 360px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-list .img-card .overlay{
  transition: 1s ease;
}

.portfolio-list .img-card:hover .overlay{
  z-index: 777;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.portfolio-list .img-card .info{
  z-index: 777;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: .5s ease;
}

.portfolio-list .img-card:hover .info{
  transform: translateY(0);
  opacity: 1;
}

.portfolio-list .img-card .info h3{
  font-size: 1.5em;
}

.portfolio-list .img-card .info span{
  font-size: 1.2em;
}

.portfolio-list .img-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.porfolio-model{
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--transparent-color-01);
  backdrop-filter: blur(20px);
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
}

.porfolio-model.active{
  visibility: visible;
  opacity: 1;
}

.portfolio-model-body{
  position: relative;
  background: var(--modal-bg-color);
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transform: translateY(-50px);
  transition: .5s ease;
}

.porfolio-model.active .portfolio-model-body{
  transform: translateY(0);
}

.portfolio-close-btn{
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
}

.portfolio-model-body h3{
  font-size: 1.5em;
}

.portfolio-model-body img{
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
}

/*=======Get-in-touch=======*/

.get-in-touch{
  margin-top: 70px;
  
}

.get-in-touch .container .content{
  width: 100%;
}

.get-in-touch .contact-card{
  position: relative;
  width: 90%;
  background: #0c0c0c;
  box-shadow: var(--box-shadow);
  padding: 50px;
  border-radius: 10px;
  column-gap: 50px;
}
#contact{
  padding-top: 2rem;
}
.contact-card .title{
  text-transform: uppercase;
  line-height: 60px;
  
}

.contact-card .title h4{
  font-size: 1.2em;
  font-weight: 300;
  line-height: 20px;
  
}

.contact-card .title h3{
  font-size: 2.3em;
  font-weight: 400;
}

.contact-card .title h2{
  font-size: 4.2em;
  font-weight: 700;
  background: linear-gradient(to top, transparent 0%, var(--first-color) 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .9;
}

/*=======Our Clients=======*/

.our-client .container{
  flex-direction: column;
}

.our-client .container .content{
  width: 100%;
}

.client-swiper .swiper-wrapper{
  margin-bottom: 30px;
}

.client-swiper .swiper-slide{
  gap: 50px;
  margin: 20px 0;
}

.client-img{
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.client-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details{
  max-width: 500px;
}

.client-details p{
  font-size: 1.2em;
  color: var(--third-color);
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--line-color);
}

.client-details h3{
  color: var(--first-color);
  font-size: 1.5em;
}

.client-details span{
  color: var(--third-color);
  font-size: 1.1em;
}

.swiper-button-next:after, .swiper-button-prev:after{
  content: '';
}

.swiper-button-next, .swiper-button-prev{
  color: var(--second-color);
  font-size: 3em;
}

.swiper-pagination-bullet, .swiper-pagination-bullet-active{
  background: var(--second-color);
}

/*=======Contact section=======*/

.contact{
  background-color: #0c0c0c;
}
.contact .container .content{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-left h2{
  font-size: 2.1em;
  font-weight: 800;
  margin-bottom: 40px;
}

.contact-list li{
  margin-bottom: 40px;
}

.contact-list li h3{
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-list li h3 i{
  color: var(--second-color);
  font-size: 1.3em;
  margin-right: 10px;
}

.contact-list li span{
  color: var(--third-color);
  margin-left: 40px;
}

.contact-list li span a{
  color: var(--third-color);
}

.contact-right p{
  color: var(--third-color);
  font-size: 1.6em;
  margin-bottom: 30px;
}

.contact-right p span{
  color: var(--first-color);
  font-weight: 700;
}

.contact-form input, .contact-form textarea{
  border: none;
  color: var(--first-color);
  background: var(--transparent-color-02);
  font-size: var(--normal-font-size);
  margin-bottom: 20px;
  padding: 15px 40px 40px 20px;
  border-radius: 5px;
}

.contact-form textarea{
  width: 100%;
  resize: none;
}

::placeholder{
  color: var(--first-color);
}

.contact-form .first-row input{
  width: 100%;
}

.contact-form .second-row{
  display: flex;
  justify-content: space-between;
}

.contact-form .second-row input{
  width: 48%;
}

.contact-form .btn{
  border: none;
  margin-top: 0;
  border-radius: 5px;
  cursor: pointer;
}

/*=======Footer=======*/


footer{
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 100%;
  margin-top: 50px;
  padding: 3rem 2rem;
  color: #fff;
}
footer p:nth-child(1){
	font-size: 30px;
	color: white;
	margin-bottom: 20px;
	font-weight: bold;
}
footer p:nth-child(2){
	color: white;
	font-size: 17px;
	width: 500px;
	text-align: center;
	line-height: 26px;
}
.social{
	display: flex;
}
.social a{
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  darkslategray;
	border-radius: 50%;
	margin: 22px 10px;
	color: white;
	text-decoration: none;
	font-size: 20px;
}
.social a:hover{
	transform: scale(1.3);
	transition: .3s;
}
.end{
	position: absolute;
	color:darkslategray;
	bottom: 35px;
	font-size: 14px; 
}

/*=======Media query max-width 1070px=======*/
@media screen and (max-width: 1070px){
  /*=======Header navigation menu=======*/


  .navigation{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
  }

  .navigation.active{
    visibility: visible;
    opacity: 1;
  }
  
  .nav-items{
    position: relative;
    background: #191919;
    width: 600px;
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transform: translateY(-50px);
    transition: .3s ease;
  }

  .navigation.active .nav-items{
    transform: translateY(0);
  }

  .nav-items a{
    margin: 15px 50px;
  }

  .nav-close-btn{
    position: absolute;
    background: url(../images/close-btn.png)no-repeat;
    filter: var(--color-filter);
    background-size: 12px;
    background-position: center;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
  }

  .nav-menu-btn{
    background: url(../images/menu-btn.png)no-repeat;
    filter: var(--color-filter);
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: block;
  }

  .nav-items a:hover{
 
    display: none;
  }
  
  .scrollToTop-btn{
    
    display: none;
    
  }
  /*=======Home section=======*/


.home .home-container{
  position: relative;
    bottom: 8rem;
}
  .home .home-container .info{
    font-size: 0.85rem;
  }



  .info{
    position: relative;
    left: 15%;
  }

  /*=======About section=======*/
  .about .container {
   height: 100vh;
   width: 100%;
   position: relative;
   bottom: 2rem;
  }

  .about .container .content{
    display: grid;
    width: 70%;
    column-gap: 10px;
    padding-top: 2rem;
  }

  .about-img img{
    position: relative;
    top: 1.5rem;
   
    width: 63%;
  
  }

  #title01{
    position: relative;
    top: 10rem;
    left: 30%;
    font-size: 29px;
  }
  #title02{
    position: relative;
    top: 11.6rem;
    left: 30%;

    font-size: 23px;
  }
 .btn{
    position: relative;
    bottom: 3rem;
   
 }
  .about-info{
    
    width: 100%;
  }


.about .description h3{
  font-size: 20px;
}
  .about-info .professional-list{
    flex-direction: row;
  }

  .about-info .professional-list .list-item{
    justify-content: start;
  }
  /*=======skills=======*/


  .skills-info {
    justify-content: center;
  
  }
  .skills-info .edu-list{
    justify-content: center;
    position: relative;
    right: 10%;
    
  }

  .skills-info .bars{
    justify-content: center;
    
    position: relative;
    right: 46%;
    
  }

  #edustack{
    position: relative;
    right: 8%;
  }

  #stack{
    position: relative;
    right: 46%;
  }
  
  /*=======services=======*/
  .services-description h3{
    text-align: center;
  }

  .service-list{
      
  padding-right: 1.5rem;
      
      
    }
    
   
  /*=======Get-in-touch=======*/
  .get-in-touch .contact-card{
    display: grid;
    width: 100%;
  }

  .contact-card .title{
    font-size: 0.8rem;
    line-height: 50px;
  }

  /*=======Our clients=======*/
  .client-swiper .swiper-slide{
    flex-direction: column;
  }

  .client-details{
    text-align: center;
  }

  /*=======Contact section=======*/
  .contact .content{
    flex-direction: column;
    font-size: 0.9rem;
  }
  
  .contact .contact-left{
    margin-bottom: 40px;
  }

  .contact-form .second-row{
    flex-direction: column;
  }

  .contact-form .second-row input{
    width: 100%;
  }

  /*=======Footer=======*/
  footer .footer-container{
    flex-direction: column;
  }

  .footer-container .about, .footer-container .info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .footer-container .info ul{
    align-items: center;
    flex-direction: column;
  }

  .footer-container .info ul li{
    margin: 5px 0;
  }

  .footer-container .hr{
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0 22px;
  }
}

.hide {

  text-align: center;
  justify-content: center;
}

/*=======Media query max-width 730px=======*/
@media screen and (max-width: 730px){
  /*=======Common styles for all sections=======*/


  .section-title-01{
    font-size: 3em;
  }

  .section-title-02{
    font-size: 2em;
    transform: translateY(-65px);
  }

  /*=======Home section=======*/
  .home .home-container{
    display: grid;
    position: relative;
    bottom: 8rem;
  }


  .home .home-container .info{
    font-size: 0.7rem;
    
    
  }

  .home .home-container .media-icons{
    display: none;
   
  }
  /*=======Get-in-touch section=======*/
  .get-in-touch .contact-card{
    display: grid;
  }

  .contact-card .title{
    font-size: 0.6rem;
    line-height: 40px;
  }

  .contact-card .contact-btn .btn{
    font-size: 0.8rem;
  }


 
  .skills-info .edu-list{
    justify-content: center;
    position: relative;
    right: 10%;
    
  }
  .skills-info .bars{
    
    
    position: relative;
    right: 58%;

    
  }
}


/*=======Media query max-width 730px=======*/
@media screen and (max-width: 428px){
  /*=======Common styles for all sections=======*/

  .home .home-container .info{
    font-size: 0.7rem;
    padding-right: 2rem;
    width: 80%;

    
    
  }
.media-icons{
  display: visible;
  visibility: visible;
}
  .about{
    background-color: #0c0c0c;
    padding-top: 1rem;
    height: 100vh;
    position: absolute;
    
  }
  
  .about .container .content{
    column-gap: 40px;
    width: 50%;
    
  }
  
  .about-img{
    position: relative;
    bottom: 2rem;
  
  }
  
  .stackmv{
    position: relative;
    right: 4rem;
  }

  .about-img img{
    width: 100%;
    border-radius: 10px;
    
    
  }
  
  #title01{
    display: none;
  }
  #title02{
    display: none;
  }
 .btn {
    position: relative;
    top: 0.5rem;
    
   
 }
  .list-item h3{
    font-size: 22px;
  }

  .skills-info .edu-list{
       position: relative;
    right: 20%;
    
  }
  .skills-info .bars{
    
    position: relative;
    right: 95%;

    
  }
  #rasg{
    position: relative; 
    right: 4rem;
  }

  
  footer p{
    position: relative;
    left: 0.5rem;
  }

 .end{
  position: relative;
    left: 0.5rem;
    top: 1rem;
 }
}
/*=======skills=======*/


#glitch {
 

  text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);

  animation: glitch 500ms infinite;
}



/* https://web.dev/prefers-reduced-motion/#(bonus)-forcing-reduced-motion-on-all-websites */

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}