* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.sticky {
  background-color: white;
}

.Navbar_div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: black;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* z-index: 100000; */
}

.Navbar_div > .logo {
  text-align: center;
  position: relative;
}

.Navbar_div > .logo > a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  border: 1px solid transparent;
  padding: 5px 8px;
  transition: all 1s ease;
  /* font-size: 10px; */
}

.Navbar_div > .logo > a:hover {
  border-bottom: 1px solid white;
}

.Navbar_div > ul {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 70%;
}

.Navbar_div > ul > li {
  list-style: none;
}

.Navbar_div > ul > li > a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  border: 1px solid transparent;
  padding: 5px 8px;
  transition: all 1s ease;
}

.Navbar_div > ul > li > a:hover {
  border-bottom: 1px solid white;
}

/* --------- *Hamburger* ---------- */

.hamburger {
  background-color: #000;
  width: 100%;
  position: sticky;
  top: 0;
  color: white;
  text-align: left;
  display: none;
  padding: 30px 0;
}

.hamburger > button {
  position: absolute;
  border: none;
  right: 10px;
  top: 10px;
  padding: 5px 8px;
  border-radius: 7px;
}
.hamburger > a {
  text-decoration: none;
  font-size: 18px;
  background-color: #fff;
  color: #000;
  padding: 10px;
  margin-left: 8px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 550;
}
.burger_icons {
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #000;
  padding: 20px 0;
  text-align: left;
  display: none;
  height: 300px;
}

.burger_icons > button {
  position: absolute;
  border: none;
  right: 10px;
  top: 10px;
  padding: 8px 12px;
  border-radius: 7px;
  z-index: 10;
}

.hamburger > button > i {
  font-size: 28px;
}

.burger_icons > ul {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  list-style: none;
  text-align: center;
  margin: 50px 0;
}

.burger_icons > ul > li {
  padding: 6px 0;
  border: 1px solid #fff;
  width: 100%;
  margin: 8px 0;
}

.burger_icons > ul > li > a {
  text-decoration: none;
  color: #fff;
}

/* cross */

.burger_icons > button > i {
  font-size: 20px;
  color: #000;
}

/* ======================== Name and Role========================== */
.punch_line_info {
  padding: 180px 150px;
  background: linear-gradient(to bottom right, #99ffcc 0%, #6666ff 100%);
  /* border: 2px solid red; */
  width: 100%;
}

.punch_subtitle > h3 > span,
.punch_subtitle > h1 > span {
  color: red;
}
n .punch_subtitle > h3,
.punch_subtitle > h1 {
  margin: 0 0 10px n0;
}

.punch_subtitle > h1 {
  line-height: 1.5;
}

/* ======================== About me========================== */
.info {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
  background-color: rgb(183, 236, 214);
  padding: 50px 0;
  /* border: 2px solid rgb(6, 236, 186); */
}
/* #resume_btn{
  padding-left: 200px;
} */

.summary {
  width: 40%;
  background-color: lightblue;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 10px;
}
.abt-resume {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  align-items: center;
}
.abt-resume > a {
  text-decoration: none;
  color: wheat;
  background-color: teal;
  text-align: center;
  padding: 5px 8px;
  border-radius: 7px;
  display: block;
  /* width: 100px; */
  /* margin: 8px 0; */
}
.abt-resume > h1 {
  color: darkblue;
  padding-bottom: 10px;
}

.image {
  width: 30%;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: 5px solid rgb(255, 249, 249);
}
.image > img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  background-color: #eedbdb;
}
.summary > p {
  line-height: 1.4;
  font-size: 18px;
}

/* ================Skills_section===================== */

.skills_section {
  width: 100%;
  background-color: rgb(230, 211, 217);
  padding: 30px 0 60px;
}

.subtitle > h1 {
  margin: 15px 0;
}

.subtitle {
  text-align: center;
  padding: 1.5rem 0;
}

.skills_logos {
  width: 70%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.skills_logos > div {
  /* border: 2px solid red; */
  padding: 10px;
  box-shadow: rgb(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.skills_logos > div > img {
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
}

.skills_logos > div > p {
  text-align: center;
  font-size: 18px;
  color: rgb(14, 13, 12);
  padding: 5px;
  font-weight: 700;
}

.skills_logos_soft {
  width: 70%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.skills_logos_soft > div {
  padding: 10px;
  box-shadow: rgb(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /* border: 2px solid rgb(10, 8, 10); */
}

.skills_logos_soft > div > p {
  text-align: center;
  font-size: 18px;
  color: rgb(14, 13, 12);
  padding: 5px;
  font-weight: 700;
}

.skills_logos_soft > div > img {
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
}

/*=========================== portfolio __project_____css========================= */

.projects_section {
  background-color: lightblue;
  padding: 57px 0;
  /* border: 2px solid red; */
}

.projects_section > div > h1 {
  text-align: center;
}

.project_card {
  display: flex;
  width: 60%;
  margin: 40px auto;
  background-color: black;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 15px;
  /* border: 2px solid palevioletred; */
  height: 300px;
}

.img_part {
  width: 45%;
}

.img_part > img {
  width: 100%;
  border-radius: 15px 0 0 15px;
  height: 100%;
}

.project_details {
  width: 50%;
  color: wheat;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 30px;
}

.project_details > a {
  text-decoration: none;
  color: wheat;
  background-color: teal;
  text-align: center;
  padding: 5px 0;
  border-radius: 7px;
  display: inline-block;
  width: 100px;
  margin: 8px 0;
}

/* =========== Contact Section ============ */

.contacts h1 {
  text-align: center;
  padding: 25px 0;
  color: chocolate;
}

.contact_details {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto;
  padding: 60px 40px 40px 15px;

  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 10px;
  background-color: black;
}

.phn_email,
.linkdin_github {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  gap: 50px;
}

.phn_email a,
.linkdin_github a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
}

.iconset {
  margin-right: 10px;
}

#name,
#email,
#subject {
  padding: 10px;
  border-radius: 10px;
}

.footer {
  width: 90%;
}

#desc {
  text-align: center;
  margin: 30px 0;
  font-size: 25px;
}

hr {
  width: 80%;
  margin: auto;
  height: 4px;
  background-color: #000;
  margin-top: 25px;
}
