/* Typography imported from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&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");

* {
  padding: 1rem;
  margin: 0.5rem;
  box-sizing: border-box;
}
:root {
  --primary-color: #5682b1;
  --text-color: #ffe8db;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #ffe8db;
  padding: 1rem;
}
nav {
  width: 100%;
  padding: 1rem 5%;
  background: linear-gradient(to right, black, #29435c, black) 100%;
  border-bottom: 1px solid black 10%;
  backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  gap: 1rem;
  line-height: 3rem;

  /*style*/
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #5682b1;
  letter-spacing: 1px;
}
/*link style*/
.links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.links li a {
  position: relative;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffe8db;
  transition: 0.3s;
}
.links li a:hover {
  color: aqua;
  text-shadow: 0 0 10px aqua;
}
.col-links {
  list-style: none;
  gap: 2rem;
}
.col-links li a {
  font-size: 0.98rem;
  font-weight: 300;
  text-decoration: none;
  color: #ffe8db;
  transition: 0.3s;
}
.col-links li a:hover {
  color: aqua;
  text-shadow: 0 0 10px aqua;
}
/*button style*/
.buttons {
  display: flex;
}
.nav-button {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  background: aqua;
  color: black;
  box-shadow: 0 0 15px aqua;
  border: 10;
  cursor: pointer;
  transition: 0.3s;
}
.nav-button:hover {
  background: aqua;
  box-shadow: 0 0 25px aqua;
}
.footer-button {
  padding: 0.5rem 5rem;
  border-radius: 10px;
  font-weight: 400;
  font-size: 1rem;
  background: aqua;
  color: black;
  box-shadow: 0 0 15px aqua;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.footer-button:hover {
  background: aqua;
  box-shadow: 0 0 25px aqua;
}

footer {
  width: 100%;
  position: relative;
  bottom: 0;
  background: linear-gradient(to right, #29435c, black);
  color: var(--text-color);
  padding: 100px 0 30px;
  border-top-left-radius: 125px;
  font-size: 13px;
  line-height: 20px;
}
.row {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col {
  flex-basis: 25%;
  padding: 10px;
}
.col:nth-child(2),
.col:nth-child(3) {
  flex-basis: 15%;
}

/*icon*/
.social-icons {
  margin-left: -2rem;
  margin-top: 2rem;
}
/*copyright*/
hr {
  width: 90%;
  border: 0;
  border-bottom: 1px solid whitesmoke;
  margin: 20px auto;
}
.copyright {
  text-align: center;
}
/*underline style + animation*/
.underline {
  width: 100%;
  height: 5px;
  background: gray;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.underline span {
  width: 15px;
  height: 100%;
  background: aqua;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}
@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100px;
  }
}

.col h3 {
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
  font-weight: 600;
}
.email-id {
  width: fit-content;
  border-bottom: 1px solid white;
  margin: 20px 0;
}
.description {
  font-size: 1rem;
  font-weight: 250;
  color: #cccccc;
}
.intro {
  font-weight: 350;
  color: #cccccc;
  padding-bottom: 0.5rem;
}
.resume_title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}
html {
  font-size: 15px;
}
.container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  padding: 5 rem;
  background-color: black;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.container_profile {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  padding: 5 rem;
  background-color: black;
  gap: 4rem;
}
.profile {
  display: grid;
}
.group-1 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.group-2 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.group-3 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
/*draw*/
.draw {
  text-align: center;
}
@media (min-width: 768px) {
  .profile {
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
  }
}
/*mobile*/
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 2rem;
  }
  footer {
    bottom: unset;
  }
  .col {
    flex-basis: 100%;
  }
  .col:nth-child(2),
  .col:nth-child(3) {
    flex-basis: 100%;
  }
}

/* profile */
.profile_name_last {
  color: #ffe8db;
  font-weight: 200;
  font-size: clamp(1.5rem, 8vw, 3rem);
  text-transform: uppercase;
  display: block;
}
.profile_name_first {
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(2.5rem, 15vw, 7rem);
  text-transform: uppercase;
  display: block;
}
.profile_title {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

/* core skills*/
.list {
  margin-top: 2rem;
  margin-left: 2rem;
  line-height: 2;
}

/*education*/
.edu_item {
  margin-top: 2rem;
}

.item_date {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 300;
}

.item_title {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  margin: 0.8rem 0;
}

.item_subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 1rem;
}

/*experience*/
.exp_item {
  margin-top: 2rem;
}

/*interest*/
.interest_items {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.interest_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
