@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: rgb(250, 249, 249);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;

}

#particles-js {
  width: 100%;
  height: 100vh;
  background: rgb(0, 0, 0);
  position: absolute;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}

html::-webkit-scrollbar-thumb {
  background: #000000;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.loader-container.fade-out {
  top: -120%;
}

/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #000000;
  /* box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3); */
}

section {
  min-height: 100vh;
  padding: 2rem 9%;
}

.heading {
  font-size: 3.5rem;
  color: rgb(189, 184, 184);
  font-weight: 800;
  text-align: center;
}

.heading span {
  color: rgb(115, 3, 167);
}

header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffa001;
  animation: logo1 5s ease infinite;
}

header .logo i {
  font-size: 2.2rem;

}

header .logo:hover {
  color: #ffa001;
}

header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .navbar li {
  margin-left: 2.5rem;
}

header .navbar ul li a {
  font-size: 1.57rem;
  color: #ffa001;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #876222;
  border-bottom: 0.2rem solid #80511b;
  padding: 0.5rem 0;
}

/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}

@media (max-width: 768px) {
  #menu {
    display: block;
  }

  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }

  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }

  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }

  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }

  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }

  .fa-times {
    transform: rotate(180deg);
  }

  header .navbar.nav-toggle {
    right: 0;
  }
}

/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}

.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}

.home .image {
  flex: 1 1 40rem;
  z-index: 1;

}

.home .image img {
  width: 60%;
  margin-left: 6rem;
  margin-top: 15%;
  border-radius: 50%;
  box-shadow: 0 4px 6px #ffa001;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
}

.home .image img:hover {
  box-shadow: 0 5px 15px #52b23c;

}

.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #8f8989;
}

.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ffa001;
}

.home .content p {
  font-size: 2.5rem;
  color: #8f8989;
  font-weight: 600;
  padding: 1rem 0;
  /* white-space: nowrap;
  overflow: hidden;
  animation: typewriter 3s steps(13) infinite alternate,
      blink 800ms steps(13) infinite normal;
  border-right: 5px solid black; */
}

/* @keyframes typewriter {
  0% {
      width: 0%;
  }
  100%{
    width: 32%;
  }

 
} */

/* @keyframes blink {
  from {
      border-color: black;
  }

  to {
      border-color: transparent;
  }
} */
.home .content p span {
  font-size: 2.5rem;
  color: #8f8989;
  font-weight: 600;
  padding: 1rem 0;
}

.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #000000;
  background: #ffa001;
  box-shadow: 0px 6px 8px #4c2c01;
  font-family: "Nunito", sans-serif;
}

.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}

.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.home .btn:hover {
  background: #52b23c;
  box-shadow: 6px 6px 8px #11330b;
}

.home .btn:hover i {
  transform: translateX(5px);
}

/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}

.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}

.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #ffa001;
  background-color: #31200a;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #000000;
  background-color: #52b23c;
}

/* .social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
} */
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }

  .socials {
    margin-top: 12rem;
  }

  .home .image img {
    margin-top: -12rem;
  }

  .home .content p {
    font-size: 2.2rem;
  }

  .home .content p span {
    font-size: 2.2rem;
  }
}

/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(0, 0, 0);
  color: #9a9090;

}

.about h2 {
  color: #ffa001;
}

.about span {
  color: #adb8aa;
}

.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}

.about .row .image {
  text-align: center;
  flex: 1 1 35rem;

}

.about .row .imge img {
  margin: 5rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  mix-blend-mode: luminosity;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-color: #ffa001;
  box-shadow: 0px 4px 15px #72460f;
}

.about .row .imge img:hover {
  mix-blend-mode: normal;
  border-color: #52b23c;
  box-shadow: 0px 4px 6px #43bb28;

}

.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}

.about .row .content h3 {
  color: rgb(141, 134, 134);
  font-size: 2.5rem;
}

.about .row .content .tag {
  font-size: 1.4rem;
  color: #ffa001;
  font-weight: 600;
  margin-top: 1rem;
}

.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
  scroll-behavior: smooth;
}

.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}

.about .row .content .box-container .box p {
  text-transform: none;
}

.about .row .content .box-container .box p span {
  color: #ffa001;
  ;
}

.resumebtn {
  margin-top: 6rem;
}

.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #000000;
  background: #ffa001;
  ;
  box-shadow: 0px 2px 3px #93610b;
  font-family: "Nunito", sans-serif;
}

.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: #000
}

.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}

.resumebtn .btn:hover {
  background: #43a036;
  box-shadow: 0px 2px 5px #a5b8a0;
  color: #000;
}

.resumebtn span:hover {
  color: #000;
}

.resumebtn .btn:hover i {
  transform: translateX(5px);
}

/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }

  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }

  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }

  .about .row .content {
    padding: 1rem;
  }

  .about .row .content .box-container {
    gap: 0;
  }
}

/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  background-color: #000;
  transition: 3s;
 height:50vh;
}

#skillcontainer {
  height: 90vh;
  width: 100%;
  position: absolute;

}

.highcharts-background {
  fill: #000;
}

.highcharts-label {
  font-size: 3rem;

}
.highcharts-label tspan {
  stroke: #ffa001;
  fill: none;
}


/*
.skillcont{
  padding: 12%;
  display:grid;
  grid-template-columns: auto auto auto;
}
.block {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
  
}

.box1 {
  
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	border-radius: 50%;
	background-color: #514b49;
	box-shadow: 0 0 5px 3px #5c5a5a;
}

.box1::before {
	position: absolute;
	content: '';
	width: calc(100% + 28px);
	height: calc(100% + 28px);
	border-radius: 50%;
	border: 3.5px solid #ffffffd1;
}

.box1 .number span {
	color: #000000;
}

.num{
  opacity: 0;
}

.box1 .number .sub {
	font-size: 20px;
}

.box1 .title {
	font-size: 25px;
	font-weight: bold;
	color: #000000;
}

.dots {
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: 2s transform, 2s opacity ease;
}

.dots::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	top: 5px;
	left: 50%;
	border-radius: 50%;
	background-color: #f38135;
	box-shadow: 0 0 5px 2px #944a11;
	transform: translateX(-50%);
}

.svg {
  
	position: absolute;
	width: 100%;
	height: 100%;
	fill: none;
	transform: rotate(-90deg);

}

.circle {
	stroke-width: 4px;
	stroke-dasharray: 503;
	stroke-dashoffset: 503;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	transition: 2s stroke-dashoffset ;
  stroke: #ff7b00;
} */

/* skills media queries ends*/



/* skills section ends */

/* education section starts */
.EducationSection {
  width: 100%;
  height: 100vh;
  background: black;

  
  

}

.EducationSection > div {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.education-container {
  position: relative;
  width: 100%;
  transform: scale(0.9);
}

#EducationTitle {
  font-size: 4rem;
  color: rgb(255, 255, 255);
  text-align: center;
  text-shadow: -0.1em 0.01em 0.0em #ffa001,  0.01em 0.01em 0.0em #24d24f;
  transition: 0.3s ease-out;
  letter-spacing: 8px;
}

#EducationTitle:hover {
  text-shadow: -0.01em 0.01em 0.0em #ffa001,  0.1em 0.01em 0.0em #ffa001;
}

.howToSvgEdu {
  position: absolute;
  width: auto;
  top: 35%;
  right: 45%;
  color: gray;
  border-radius: 10px;
}

.carTrackContainer {
  /* margin-top: 40px; */
  width: 100%;
  min-height: 500px;
  height: auto;
  text-align: center;
}

.carTrack {
  width: 45%;
  min-height: 800px;
  height: auto;
  overflow: visible;
}

.carEdu {
  offset-path: path('M 39.095 98.106 C 211.336 98.106 418.025 98.106 418.025 178.276 C 418.025 258.446 39.095 218.36 39.095 298.531 C 39.095 378.701 349.129 378.701 452.474 378.701');
  offset-distance: 0%;
}

#carEdu {
  animation: move 9s ease-in-out forwards;
}

@keyframes move {
  33% {
      offset-distance: 27%;
  }

  66% {
      offset-distance: 58%;
  }

  100% {
      offset-distance: 96%;
  }
}



.education hr, .clg hr {
  width: 100%;
}

.education h1 {
  margin: 10px;
}

.education-details {
  padding: 5px;
}

.education-details p {
  margin: 5px;
} 

.school10  {
  position: absolute;
  top: 4%;
  right: 12%;
  opacity: 0;
  z-index: 1;
  background-color: #ffa001;
  /* animation: educard 4s ease-out forwards; */
}

.school12 {
  position: absolute;
  top: 30%;
  left: 12%;
  opacity: 0;
  z-index: 1;
  background-color: #ffa001;
  /* animation: educard 8s ease-out forwards; */
}

.clg {
  position: absolute;
  top: 52%;
  right: 2%;
  opacity: 0;
  z-index: 1;
  background-color: #ffa001;
  /* animation: educard 12s ease-out forwards; */
}

@keyframes educard {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 0;
  }
  70% {
      opacity: 0;
  }
  95% {
      opacity: 1;
  }
  100% {
      opacity: 1;
  }
}

.education-fadeInRight {
 animation: education-fadeInRight 0.5s ease-out 0.5s both;
}
@media (prefers-reduced-motion) {
 .education-fadeInRight .education-fadeAnimated {
   animation: unset !important;
   transition: none !important;
}
}
.education-fadeInLeft {
 animation: education-fadeInLeft 0.5s ease-out 0.5s both;
}
@media (prefers-reduced-motion) {
 .education-fadeInLeft .education-fadeAnimated {
   animation: unset !important;
   transition: none !important;
}
}

@keyframes education-fadeInRight {
 from {
   opacity: 0;
   transform: translate3D(0, 10%, 0);
}
 to {
   opacity: 1;
   transform: translate3D(0, 0, 0);
}
}

@keyframes education-fadeInLeft {
 from {
   opacity: 0;
   transform: translate3D(0, -10%, 0);
}
 to {
   opacity: 1;
   transform: translate3D(0, 0, 0);
}
}

/* education section ends */

/* Project Start   */
.project1 {
  background-color: #000;
}
.project1 > h1{
  color: #acaba9;
  font-size: 40px;
 text-align: center;
 font-weight: 800;

}


/* project end  */



/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: #f8dec5;
}

.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #000000;
  padding-bottom: 1rem;
  font-weight: normal;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: #000;
  padding: 0.7rem 0;
  text-transform: none;
}

.footer .box-container .box p i {
  padding-right: 1rem;
  color: #000000;
}

.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  padding: 0.3rem 0;
  display: block;
}

.footer .box-container .box a:hover {
  color: #566cc2;
}

.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(0, 0, 0);
  color: #566cc2;
  border: none;
}

.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(47, 44, 44);
  color: #000000;
}

.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #0c0c0c;
  border-top: 0.1rem solid #fff3;
}

.footer .credit a {
  color: #566cc2;
}

.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}

@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }

  .footer .box-container .box p {
    padding: 0.7rem;
  }

  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}

/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }

  body {
    padding-right: 0;
  }

  section {
    padding: 2rem;
  }
}

/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffa001;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}

#scroll-top.active {
  top: calc(100% - 12rem);
}

/* #map {
  height: 400px;
  width: 100%;
} */

/* scroll top ends */
section {
  /* display: grid; */
  place-items: center;
  align-content: center;
  min-height: 100vh;
  min-width: 80%;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-10%);
  transition: all 2s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.under {
  position: absolute;
  left: 97px;
  margin-top: 160px;
  animation: under 5s ease infinite;


}

@keyframes under {
  from {


    transform: rotateY(360deg);

  }

  to {

    transform: rotateY(0deg);


  }
}

.im1 {
  background-size: cover;
}
