@import "./fontscss/fonts/font.css";

:root {
  --text-theme-primary: #c9c9c9;
  --text-theme-secondary: #a8a8a8;

  --bg-theme-primary: #0e0e0e;
  --bg-theme-secondary: rgb(19, 19, 19);
}

* {
  user-select: none;

}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg-theme-primary);
  scroll-behavior: smooth;

}


body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #333;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0a0a0a1f, #d2d2d2);
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #eaedf08d;
}


.full-vh {
  min-height: 100vh;
}

.neutralFonts {
  font-family: "Neutral Face", sans-serif;
}

.primaryFontColor {
  color: var(--text-theme-primary);
}

.secondaryFontColor {
  color: var(--text-theme-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neutral Face", sans-serif;
  color: var(--text-theme-primary);
}

.titleFont {
  font-family: "Neutral Face", sans-serif;
  font-size: 36px;
  color: var(--text-theme-primary);
}

.subtitleFont {
  font-size: 20px;
  color: var(--text-theme-primary);
}

.headingFont {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-theme-primary);
}

.normalFont {
  font-size: 16px;
  font-weight: 200;
  color: var(--text-theme-primary);
}


.flex-row-wise {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-col-wise {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.navsection {
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;

}

.nav-link:not(:last-child) {
  margin-right: 10px !important;
}

.bg-blur {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.heroSection {
  background: rgb(255, 255, 255);
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.8) 5%);
  background-position: 50% 75%;
  background-size: 200% 100%;
}

canvas {
  display: block;
}

#dustCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.herotitle {
  font-size: 150px;
  text-align: center;
  background: rgb(0, 0, 0);
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), rgba(68, 61, 61, 0.8) 104%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 10%;
  font-family: "Neutral Face", sans-serif;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  padding: 0px;

}

.marque-gradiant {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to right, black, transparent 10%, transparent 90%, black);
  pointer-events: none;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  overflow: clip;
  animation: marquee-move-text var(--speed, 25s) linear infinite var(--direction,
      forwards);
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

.marqueeText {
  font-size: 18px;
  color: var(--text-theme-secondary);
  padding: 3px 15px;
}


.summary-details {
  position: relative;
  background-color: var(--bg-theme-secondary);
}

.displaycontentdiv {
  min-height: 350px;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.text-justify {
  text-align: justify;
}

.center_Div {
  width: 100%;
  max-width: 800px;
  height: 100%;
}

.circleContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

#center_circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 251, 251, 0.2);
}

.circle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #333;
  transition: top 1s ease, left 1s ease;
  z-index: 999;

}

.circle svg {
  height: 50px;
  width: 50px;
}

.circle_img {
  user-select: none;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
}

.typewriter p {
  padding: 5px;
  font-size: 18px;
  display: inline-block;
  max-width: 330px;
  overflow: hidden;
  color: var(--text-theme-primary);
  border-right: .15em solid transparent;
  white-space: nowrap;
  letter-spacing: .15em;
  animation: typing 1s steps(40, end), blink-caret .75s step-end;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

@media only screen and (max-width: 600px) {
  #center_circle {
    width: 180px;
    height: 180px;
    background-color: #333;
  }

  .circle {
    width: 70px;
    height: 70px;
  }

  .herotitle {
    padding-top: 25%;
    font-size: 70px;
    ;
  }

  .skills,
  .experienceSection,
  .projects,
  .summary-details,
  .connect {
    padding: 50px 0px;
  }
}

.projects {
  background-color: var(--bg-theme-primary);
}

.projectContainer {
  width: 100%;
}

.projectItem {
  height: 200px;
}

.card {
  background-color: var(--bg-theme-secondary);
  height: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

.experienceSection {
  background-color: var(--bg-theme-secondary);
}

.experienceCard {
  padding-bottom: 20px;
  ;
}

.experienceCard:not(:last-child) {
  border-bottom: 1px solid #cccccc2b;
}

.bubbleData {
  display: inline-block;
  padding: 3px 15px;
  border: 1px solid #949494;
  border-radius: 5px;
}

.collapsible {
  cursor: pointer;

}
/* nikhil savant  */
.active,
.collapsible:hover {
  /* background-color: #555; */
}

.content {
  display: none;
  overflow: hidden;
}

.skills {}

.skillsContainer {}

.skillsContainer div {}

.skillsContainer div p {
  margin: 5px 5px;
  padding: 15px;
  cursor: pointer;
  background-color: var(--bg-theme-secondary);
  border-radius: 5px;
  ;
  color: var(--text-theme-secondary);
}

.skillsContainer div p:hover {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09287464985994398) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(255, 255, 255, 0.20772058823529416) 100%);
}

.skillpara {}

.skillsDiscription {
  margin: 5px 0px;
  padding: 20px;
  border-radius: 5px;
  ;
  background-color: rgba(188, 186, 186, 0.126);
  min-height: 300px;
}

.skillsDiscription div {
  margin: 5px 5px;
  padding: 5px;
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 0.3s ease;
  background-color: rgba(188, 186, 186, 0.126);
  color: var(--text-theme-secondary);
}

.main-content {
  border-radius: 5px;
  height: 100%;
}

.main-content.active {
  opacity: 1;
  /* transform: translateY(0); */
}


.connect {
  width: 100%;
  background-color: var(--bg-theme-secondary);
}

.contactForm div  {
  position: relative;
}
.contactForm div input {
  font-size: 18px;
  width: 100%;
  display: inline-block;
  padding: 15px;
  border-radius: 5px;
  border:  none;
  color: var(--text-theme-primary);
  background-color:   var(--bg-theme-primary);
  border: 1px solid var(--bg-theme-secondary);
  cursor: pointer;
}

.contactForm div textarea {
  font-size: 18px;
  display: inline-block;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  border:  none;
  color: var(--text-theme-primary);
  background-color:   var(--bg-theme-primary);
  border: 1px solid var(--bg-theme-secondary);
  cursor: pointer;
}
.contactForm div button {
  display: inline-block;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  border:  none;
  color: var(--text-theme-primary);
  background-color:   var(--bg-theme-primary);
  border: 1px solid var(--bg-theme-secondary);
}
.contactForm div button:hover {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09287464985994398) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(255, 255, 255, 0.20772058823529416) 100%);
}

.connectMessage span{
  display: inline;
  color: var(--text-theme-secondary);


}
.connectMessage p{
  font-size:25px;
  letter-spacing: 3px;
  text-align: justify;
  color: var(--text-theme-secondary)

}
footer{
 
}
footer a{
  display: inline-block;
text-decoration: none;
color: var(--text-theme-secondary)
}
