@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");


/* font size
heading = 2.5
normal = 2 
line height = 120%
*/


* {
  /* font-family: 'Nunito', sans-serif; */
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #333;
}

html::-webkit-scrollbar-thumb {
  background: #000;
}

body {
  background: #111;
  overflow-x: hidden;
  padding-left: 35rem;
}

section {
  min-height: 100vh;
  padding: 1rem;
}

/* header section starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 35rem;
  /* background: rgb(39, 39, 39); */
  /* background: rgb(250, 250, 250); */
  background:darkslategray;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-flow: column;
  text-align: center;
}

header .user img {
  height: 17rem;
  width: 17rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

header .user .name {
  font-size: 2.7rem;
  color: #000;
}

header .user .post {
  font-size: 2rem;
  color: #111;
}

header .user .navbar {
  width: 100%;
}

header .navbar ul {
  list-style: none;
  padding: 2rem 3rem;
}

header .navbar ul li a {
  display: block;
  margin: 1.5rem 0;
  /* background: #333; */
  color: darkturquoise;
  /* color:darkcyan; */
  font-size: 1.8rem;
  border-radius: 5rem;
  /* padding: 0.5rem 2rem; */
}

header .navbar ul li a:hover {
  /* background: darkturquoise; */
  /* color: #fff; */
  color: #111;
  padding: 0.7rem 2rem;
  border-bottom: 0.3rem solid #222;
}

/* need to work */
header .navbar ul li a.active {
  color: #fff;
  background: #222;
  padding: 0.7rem 2rem;
}



#menu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #222;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: none;
}

/* header section ends */





body {
  background: #fff;
}

.heading {
  font-size: 3rem;
  text-align: center;
  color: darkturquoise;
  padding: 2rem 0;
}

/* home section starts*/
.home {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 10rem;
  text-align: justify;
}

.home .intro h3 {
  font-size: 2.5rem;
  color: #000;
}

.home .intro h1 {
  font-size: 2.5rem;
}

.home .intro p {
  font-size: 1.8rem;
  padding: 2rem 0rem;
  line-height: 120%;
}

.home .intro .download-cv {
  padding: .7rem 3rem;
  background: #111;
  color: #fff;
  cursor: pointer;
  margin: 1rem 0 2rem 0;
  font-size: 1.6rem;
  border-radius: 5rem;
}

.home .intro .download-cv:hover {
  background: #fff;
  color: #000;
}

.home .research-interest h1 {
  font-size: 2.5rem;
  padding: 4rem 0rem 1rem 0rem;
}

.home .research-interest ul {
  font-size: 1.8rem;
  /* list-style: none; */
  line-height: 150%;
  padding-left: 4rem;
}

/* home section ends */

/* experience section starts */
.experience {
  display: flex;
  flex-flow: column;
  padding: 0 10rem;
  text-align: justify;
  justify-content: center;
}

.experience .box {
  padding-bottom: 2rem;
  /* border-left: #111 solid 0.1rem; */
}

.experience .box span {
  font-size: 1.3rem;
  background: #111;
  color: #fff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 5rem;
}

.experience .box h3 {
  font-size: 1.8rem;
  padding: 1.5rem 0 1rem 0;
}

.experience .box h4 {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}

.experience .box p {
  font-size: 1.8rem;
  line-height: 120%;
}

.experience .box ul {
  margin-left: 1.5rem;
}

.experience .box ul h4{
  list-style: none;
  font-weight: normal;
  margin-left: 5rem;
}

/* experience section ends here */

/* education starts here */
.education {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 10rem;
}

.education .box-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.education .box-container .box {
  width: 100%;
  margin: 2rem 1rem;
  padding-left: 5rem;
  border-left: .2rem solid #222;
  position: relative;
}

.education .box-container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: .5rem 2.5rem;
}

.education .box-container .box .degree {
  font-size: 1.8rem;
  color: #000;
  padding-top: 1.5rem;
}

.education .box-container .box .institute {
  font-size: 1.8rem;
  color: #111;
  padding: 0.5rem 0;
}

.education .box-container .box .result {
  font-size: 1.5rem;
  color: #111;
  padding: 0.5rem 0;
}

.education .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: #555;
  background: rgb(245, 245, 245);
}

/* education ends here */


/* skill starts here */

.skill {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 10rem;
}

.skill .box-container {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 1rem 0; */
}

.skill .box-container .container {
  width: 45%;
  /* margin: 2rem 0rem; */
  margin-bottom: 4rem;
  padding: 3rem;
  border-left: .2rem solid #222;
  position: relative;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0, 0, 0, .3);
}

.skill .box-container .container .category {
  font-size: 1.8rem;
  padding-bottom: 2rem;
}

/* .skill .box-container .container .info {
  font-size: 1.8rem;
  text-align: justify;
} */

.skill .box-container .container li {
  line-height: 120%;
  font-size: 1.8rem;
}

/* skill section ends here */


/* research section starts here */
.research {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0rem 10rem;
}

.research .container {
  font-size: 1.8rem;
  text-align: justify;
}

.research .container li {
  padding-bottom: 4rem;
}

.research .container h4 {
  padding-bottom: 1rem;
}

.research .container h4 a{
  color: #000;
}

.research .container h4 a:hover{
  color: darkturquoise;
}

.research .container .description {
  line-height: 120%;
  padding-bottom: 1rem;
}

.research .container .tools {
  padding-bottom: 1rem;
  color: darkturquoise;
}

.research .container img {
  height: 10rem;
}

/* research section ends here */

/* projects starts here */
.projects {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0rem 10rem;
  text-align: justify;
}

.projects li {
  font-size: 1.8rem;
}

.projects h4 {
  padding: 1.5rem 0 0.5rem 0;
}

.projects li .tools span{
  font-weight: bold;
}

.projects img {
  height: 5rem;
}

/* projects ends here */

/* Acheivements starts here */
.achievements {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0rem 10rem;
  text-align: justify;
}

.achievements .accomplishments {
  padding-bottom: 3rem;
  font-size: 1.8rem;
}

.achievements .accomplishments h1 {
  padding-bottom: 2rem;
}

.achievements .accomplishments ul {
  /* list-style: none; */
  padding-bottom: 2rem;
  padding-left: 4rem;
}

.achievements .accomplishments ul .date {
  font-size: 1.3rem;
  background: rgb(243, 243, 243);
  color: #333;
  border-radius: 5rem;
  padding: .5rem 2rem;
}

.achievements .accomplishments ul li span {
  font-weight: bold;
}

.achievements .accomplishments ul li {
  line-height: 150%;
  padding: 0.5rem 0 1rem 0;
}

.achievements .accomplishments ul li a {
  color: darkturquoise;
}

.achievements .accomplishments ul li a:hover {
  text-decoration: underline;
}


/* Slideshow container */
.achievements .slideshow-container {
  /* max-width: 1000px; */
  position: relative;
  margin: auto;
}

.achievements .slideshow-container .fade {
  text-align: center;
}

.achievements .slideshow-container img {
  width: 80%;
  align-items: center;
}

/* Next & previous buttons */
.achievements .prev, .achievements .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  /* height: 5rem;
  width: 5rem; */
  /* padding: 16px; */
  margin-top: -22px;
  color: rgb(224, 224, 224);
  font-weight: bold;
  font-size: 3.8rem;
  transition: 0.6s ease;
  /* border-radius: 0 3px 3px 0; */
  /* border-radius: 50%; */
  user-select: none;
}

/* Position the "next button" to the right */
.achievements .next {
  right: 0;
  /* border-radius: 3px 0 0 3px; */
  /* border-radius: 50px; */
}

/* On hover, add a black background color with a little bit see-through */
.achievements .prev:hover, .achievements .next:hover {
  color: rgba(0,0,0,0.8);
}

/* Caption text */
.achievements .text {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(211, 52, 52, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Number text (1/3 etc) */
.achievements .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.achievements .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.achievements .active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.achievements .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



.achievements .awards {
  font-size: 1.8rem;
}

.achievements .awards h1 {
  padding-bottom: 2rem;
}

.achievements .awards ul {
  line-height: 150%;
  padding-left: 4rem;
}

.achievements .awards span {
  font-weight: bold;
}

/* acheivements section ends here */

/* contact starts here */
.contact {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0rem 10rem;
}

.contact .info {
  padding-bottom: 4rem;
  /* line-height: 200%; */
  font-size: 1.8rem;
}

.contact .info p {
  padding-bottom: 1rem;
}

.contact .social .link {
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  flex-wrap: wrap;
  padding: 1rem 0;
  font-size: 4rem;
  color: #111;
}

.contact .social .link a {
  color: #111;
  margin-right: 4rem;
  /* background: #fff; */
  /* box-shadow: 0 0.5rem 1rem #111;
  padding: 2rem;
  border-radius: 10rem; */
}

.contact .social .link a:hover {
  list-style: none;
  color: darkturquoise;
  margin-right: 4rem;
}












/* media queries */

@media (max-width:1200px) {

  html {
    font-size: 55%;
  }

  .home {
    padding: 1rem 4rem;
  }

  .experience {
    padding: 1rem 4rem;
  }

  .education {
    padding: 1rem 4rem;
  }

  .skill {
    padding: 1rem 4rem;
  }


  /* .skill .container .category{
    font-size: 80%;
  } */


  .research {
    padding: 1rem 4rem;
  }

  .projects {
    padding: 1rem 4rem;
  }

  .achievements {
    padding: 1rem 4rem;
  }

  .contact {
    padding: 1rem 4rem;
  }

}

@media (max-width:991px) {

  header {
    left: -120%;
  }

  #menu {
    display: block;
  }

  header.toggle {
    left: 0%;
  }

  body {
    padding: 0;
  }

}

@media (max-width:768px) {

  /* html {
    font-size: 60%;
  } */



}

@media (max-width:681px) {

  .skill .box-container .container {
    width: 100%;
  }

  /* .skill .container .category{
    font-size: 80%;
  } */

  .skill .container li {
    font-size: 90%;
  }
}

@media (max-width:400px) {

  header {
    width: 100vw;
  }

  .heading {
    margin: 0 3rem;
  }

}