* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  color: #868e96;
  overflow: hidden;
}

.main {
  display: flex;
  height: 100vh;

}
#navbar {
  text-align: center;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 18rem;
  height: 100vh;
  background: #ce653f;
}

.nav_img {
  width: 160px;
  height: 165px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #ce653f;
  margin-top: 9.5rem;
}

.nav_list {
  list-style: none;
  margin-top: 1.5rem;
  text-align: center;
}

.nav_list a {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  line-height: 2.5rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  opacity: 0.6;
}

.nav_list a:hover {
  opacity: 1;
}

.home {
  padding: 5rem 5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.home_content{
  font-size: 40px;
  margin-top: 4rem;
}
.home_content_para{
  font-size: 30px;
  margin-top: 20px;
}
.home_span{
  color: #ce653f;
}
.home_content h1{
  font-size: 60px;
  margin-top: 20px;
}
.home_subheading_para{
  font-size: 25px;
  margin-top: 20px;
}

.home_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 5px; */
  background: #868e96;
  /* font-family: "Montserrat", sans-serif; */
  /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
  overflow: hidden;
  cursor: pointer;
  border: none;
  margin-top: 1.5rem;
}

.home_btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #ce653f;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.home_btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  text-decoration: none;
}

.home_btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 17px 20px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.home_btn:hover span {
  animation: scaleUp 0.3s ease-in-out;
}
.cv_btn{
  text-decoration: none;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}
.home_logo{
  display: flex;
  flex-wrap: wrap;
  margin-top: 8rem;
  gap: 1.25rem;
}
.home_logo a{
  border-radius: 50%;
  background: #868e96;
  color: #fff;
  font-size: 1.75rem;
  padding: 7px 14px;

  
}

.home_logo a:hover{
  background: #ce653f;
  color: #fff;
}

.about_content{
  margin-top: 10rem;
}
.about_h1 , .skills_h1 ,.contact_h1{
  font-size: 50px;
  margin-top: 2.5rem;
  text-align: center;
}
.about_content_para , .skills_content_para , .contact_content_para{
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.about_h3{
  font-size: 2rem;
  margin-top: 6rem;
}
.skills_list{
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.skills_list i{
  font-size: 5rem;
  padding: 1.25rem;
  color: #fff;
}
.skills_h3{
  font-size: 30px;
  margin-top: 15px;
}
.projects_h1{
  font-size: 50px;
  margin-top: 2.5rem;
  text-align: center;
}
.projects_content_para{
  font-size: 1.25rem;
  margin-top: 2.5rem;
}
.projects_container{
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.project_card img{
height: 180px;
}

.project_card{
  width: 300px;
  height: 350px;
  /* background: #868e96; */
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.project_card:hover{
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
}
.project_card h3{
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.project_card p{
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.project_card a{
  text-decoration: none;
  color: #fff;
  background: #ce653f;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}
.project_card a:hover{
  background: #868e96;
  color: #fff;
}
.project_btn{
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.project_btn button{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #868e96;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.project_btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #ce653f;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.project_btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  text-decoration: none;
}
.project_btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 17px 20px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.project_btn:hover span {
  animation: scaleUp 0.3s ease-in-out;
}
.certifications_h1{
  font-size: 50px;
  margin-top: 2.5rem;
  text-align: center;
}
.certifications_content_para{
  font-size: 1.25rem;
  margin-top: 2rem;
}
.certifications_container{
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.certification_card{
  width: 300px;
  height: 350px;
  /* background: #868e96; */
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.certification_card:hover{
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
}
.certification_card h3{
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.certification_card p{
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.certification_img{
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
}


#edu{
  margin-top: 5rem;
}
.edu_h1{
  font-size: 50px;
  margin-top: 2.5rem;
  text-align: center;
}
.edu_content_para{
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.edu_h3{
  font-size: 30px;
  margin-top: 38px;
}

.edu_container{
  display: flex;
  flex-wrap: nowrap;
  gap: 4.25rem;
  margin-top: 2rem;
  justify-content: center;
}
.edu_img img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: 30px;
  /* border: 2px solid #ce653f; */
}
.contact_list{
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 1.5rem;
}
.contact_container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;

}
form{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact_form{
  width: 35rem;
}
form input{
  padding: 10px 20px;
}
.contact_btn{  
  padding: 1rem;
  border-radius: 5px;
  background: #868e96;
  color: #fff;
  font-size: 1.25rem;
  border: none;
}
.contact_btn:hover{
  background: #ce653f;
  color: #fff;
}
.footer_text{
  text-align: center;
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #868e96;
}

