body {
  background-color: black;
  height: 100vh;
  margin: 0rem;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
a:link { text-decoration: none; }


a:visited { text-decoration: none; }


a:hover { text-decoration: none; }


a:active { text-decoration: none; }

.disable{
  text-decoration: line-through;
  cursor: default;
}

/* Hidden Animations */
.hidden {
  opacity: 0;
  filter: blur(5px);
  /* transform: translateX(-100%); */
  transition: all 2s;
}
.show {
  opacity: 1;
  filter: blur(0);
  /* transform: translateX(0); */
}
/* progress bar  */
.progress-container {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0);
}

.progress-bar {
  height: 8px;
  background-image: linear-gradient(to right, #7fffd4, #926fd8);
  width: 0%;
}
/* 1 Navbar */
.navbar{
  width: 100%;
  min-height: 60px;
  /* background-color: red; */
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/* 1.1 Name */
.names{
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  color: white;
  font-size: 40px;
  padding: 5px;
  padding-left: 15px;
}
/* 1.2 Icons */
.icons {
  padding: 5px;
  filter: invert(100%);
}
.icons img{
  height: 20px;
  aspect-ratio: 1;
}
.icons a{
  padding: 5px;
}
/* Into section + photo */
.main {
  display: grid;
  height: calc(100vh - 68px);
}
.child-main{
  width: 100%;
  height: calc(100vh - 108px);
  max-height: 1300px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#deskPng {
  animation: moveDown 2s;
}
.down{
  display: flex;
  justify-content: center;
  align-items: center;
}
.down img{
  padding: 5px;
  height: 30px;
  width: 30px;
  filter: invert(100%);
  /* mix-blend-mode: color-burn; */
}
.intro{
  font-size: 50px;
  color: white;
  font-family: 'Raleway', sans-serif;
}
.intro p{
  margin: 0px;
}
.intro span{
  font-weight: 900;
}
.desk-photo img{
  max-height: 500px;
  /* aspect-ratio: 4/3.05; */
  object-fit: contain;
}

/* About Me Section */
.aboutMe-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  /* display: grid;
  grid-template-columns: 1fr 4fr 1fr; */
  display: flex;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
}

.aboutMe{
  padding: 40px;
  max-width: 1000px;
  margin: 20px 50px;
  background-color: white;
  border-radius: 30px;

}
.aboutMe h1{
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 50px;
  margin: 0px;
}

.aboutMe-titles{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0px;
}
.aboutMe-titles h1{
  margin: 0px;
  cursor: pointer;
  position: relative;
}
.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  /* background: linear-gradient(to right, #7fffd4, #926fd8); */
  background: #000000;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}
.tab-links.active-link::after{
  width: 100%;
}
h1.tab-links.active-link{
  background: linear-gradient(to right, #7fffd4,#926fd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.tab-contents ul li{
  list-style: none;
  margin: 10px 0;
}
.tab-contents ul li span{
  font-weight: 900;
  color: black;
  font-size: 20px;
}
.tab-contents{
  display: none;
}
.tab-contents.active-tab{
  display: block;
}
.lists{
  margin: 10px 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 5px;
}
.lists > div{
  background-color: lightgrey;
  padding: 5px;
  border-radius: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
}
@media only screen and (max-width: 500px) {
  .lists > div{
    font-size: 20px;
  }
}
/* Add to style.css */

.lists div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  transition: all 0.3s ease;
}

.lists div:hover {
  transform: translateY(-2px);
}

.devicon {
  font-size: 1.5rem;
  vertical-align: middle;
}
.icon-font {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Specific icon classes */
.icon-python:before { content: "\e900"; }
.icon-c:before { content: "\e901"; }
.icon-cplusplus:before { content: "\e902"; }
.icon-flask:before { content: "\e903"; }
/* Add all other icon classes similarly */
#edu ul li{
  color: grey;
  font-size: 15px;
}
#por ul li{
  color: grey;
  font-size: 15px;
}

.lists > div img{
  height: 15px;
  aspect-ratio: 1;
}

/* My works section  */
.project-wrapper {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Raleway', sans-serif;
}
.project-wrapper h1{
  color: white;
  font-weight: 900;
  font-size: 50px;

}
.projects {
  background-color: white;
  border-radius: 30px;
  /* max-width: 900px; */
  padding:25px 40px;
  margin:10px 0px ;
  display: grid;
  grid-column-gap: 10px;
  column-gap: 10px;
  grid-template-columns: 30% 70%;
}
.project-container{
  max-width: 900px;

  margin:10px 50px ;
}
.projects *{
  margin: 2px;
}
.img-projects{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects img{
  /* width: 100%; */
  max-width: 200px;
  /* aspect-ratio: 4/2.5; */
  object-fit: contain;
}
.info{
  padding-top: 8px;
}
.sub-heading{
  color: grey;
  font-size: medium;
  margin: 0px;
}
.list-project{
  margin: 10px 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 5px;
}
.list-project> a > div{
  background-color: lightgrey;
  padding: 5px;
  border-radius: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: black;
  text-decoration: none;
}
.list-project > a > div img{
  height: 15px;
  aspect-ratio: 1;
}
 
.github {
  background-color: #926fd8 !important;
  padding: 6px !important;
  
}
.web {
  background-color: lightskyblue !important;
  padding: 6px !important;
  
}
 /* footer  */
 .spacer {
  aspect-ratio: 960/400;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('./images/footer.svg');
  position: relative;
  top: -300px;
  z-index: -1;
 }

 @media only screen and (max-width: 1250px) {
  .spacer {
    top: -200px;
  }
  .footer{
    top: -200px !important;
  }
}

@media only screen and (max-width: 910px) {
  .spacer {
    top: -100px;
  }
  .footer{
    top: -100px !important;
  }
}
@media only screen and (max-width: 560px) {
  .spacer {
    top: 0px;
  }
  .footer{
    top: 0px;
  }
}

.footer{
  position: relative;
  top: -300px;
  background-color: #926fd8;
  font-family: 'Raleway', sans-serif;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 200px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 50px;
}
.footer *{
  margin: 0px;
  /* padding: 0px; */
}
.copyright{
  /* border: 1px solid black; */
  /* padding-top : 20px; */
  width: 300px;
  font-weight: 900;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.details h1{
  font-weight: 900;
  font-size: 70px;
}

.details img{
  height: 30px;
  aspect-ratio: 1;
}
.contact-details{
  display: flex;
  flex-direction: row;
  column-gap: 5px;
  margin: 10px 10px;
  align-items: center;
}

.contact-details p,
.contact-details a{
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin: 5px 0px;
  font-weight: 500;
}
#num{
  font-family: Arial;
}
.d-none{
  display: none;
}
input{
  border-radius: 5px;
  background-color: #b598f0;
  border: 2px solid black;
  height: 30px;
  width: 300px;
  margin: 5px 0px !important;
}
.share {
  height: 15px !important;
  width: 15px !important;
}
button{
  background-color: #000000;
  color: #926fd8;
  font-size: 20px;
  border: 2px solid black;
  height: 40px;
  width: 120px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
button:after {
  content: "";
  background: #b598f0;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px!important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}
.button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}
@media only screen and (max-width: 996px) {
  .details{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
@keyframes moveDown {
  from {
    transform: translateY(-100px);
  }
  
  to {
    transform: translateY(0px);
  }
}
@keyframes rotate {
  from {
    rotate: 0deg;
  }
  
  50% {
    scale: 1 1.5;
  }
  
  to {
    rotate: 360deg;
  }
}
#back{
  display: none ;
  background-image: url(./images/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
#blob {
  background-color: white;
  height: 34vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to right, #7fffd4, #926fd8);
  animation: rotate 20s infinite;
  opacity: 0.8;
  overflow: hidden;
  z-index: -2;
}

#blur {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
  backdrop-filter: blur(12vmax);
}

@media only screen and (max-width: 996px) {
  #blur {
    display: none !important;
  }
  #blob {
    display: none !important;
  }
  #back{
    display: block !important;
  }
}

@media only screen and (max-width: 300px) {
.icons img {
  /* height: 40px !important; */
}
}
/* Add Experience Section Styling */
/* Update Experience Section Width */
/* Experience Section */
.experience-wrapper {
  width: 100%;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
}

.experience {
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  margin: 20px 50px;
  background-color: white;
  border-radius: 30px;
  box-sizing: border-box;
}

.experience h1 {
  font-weight: 900;
  font-size: 50px;
  margin: 0 0 30px 0;
  text-transform: lowercase;
}

.experience h1::after {
  content: ".";
}

.experience-item h2 {
  font-size: 30px;
  margin: 10px 0;
  font-weight: 900;
}

.experience-item h3 {
  font-size: 20px;
  color: #666;
  margin: 10px 0 20px 0;
  font-weight: 500;
}

.experience-item ul {
  list-style: none;
  padding-left: 0;
}

.experience-item li {
  position: relative;
  padding-left: 30px;
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5;
}

.experience-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #926fd8;
  font-size: 24px;
  line-height: 1;
  top: -3px;
}

.date {
  color: #666;
  font-size: 16px;
  font-weight: normal;
  margin-left: 10px;
}

/* Match project section styling */
.sub-heading {
  color: #666;
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
}

.lag-used.lists {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.lag-used.lists div {
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.lag-used.lists .devicon {
  font-size: 1.2rem;
}

/* Add to style.css */
.lag-used.lists img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/* Publications Section */
.publication-wrapper {
  margin-top: 40px;
  font-family: 'Raleway', sans-serif;
}

.publication-wrapper h1 {
  color: white;
  font-weight: 900;
  font-size: 50px;
  text-align: center;
  margin-bottom: 30px;
}

.publication-content {
  width: 100%;
  padding: 20px;
}

.publication-wrapper .projects {
  background-color: white;
  border-radius: 30px;
  padding: 30px 40px;
  margin: 10px 0px;
  display: block; /* Remove grid layout */
}

.publication-wrapper .heading h2 {
  margin-bottom: 8px;
}

.publication-wrapper .sub-heading {
  color: #666;
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
}

.publication-wrapper .info {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}