@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap");

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  
  background-color: #081b29; 
  color: aliceblue;
}

/*  HEADER SECTION */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background-color: #081b29;
  display: flex;
  justify-content: space-between;
  align-items: right;
  z-index: 100;
  filter: blur(px);
}

.logo {
  position: relative;
  font-size: 30px;
  color: rgba(232, 236, 240, 0.942);
  text-decoration: double;
  font-weight: 600;
}

.logo ::before {
  content: "";
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  animation: showRight 1s ease forwards;
  animation-delay: 1.3s;
}

.navbar a {
  font-size: 22px;
  color: rgb(237, 235, 231);
  text-decoration: double;
  font-weight: 500;
  margin-left: 35px;
}
.navbar a:hover,
.navbar a.active {
  color: aqua;
}

#menu-icon {
  font-size: 3.6rem;
  color: azure;
  display: none;
  cursor: pointer;
}


/*  HOME PAGE SECTION */
.home {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.home-content {
  background-color: transparent;
  max-width: 600px;
 
}

.home-content h1 {
  position: relative;
  font-size: 56px;
  font-weight: 600;
  font-style: oblique;
  line-height: 1.2;
  
}
.home-content h1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.home-content h3 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #00abf0;
  
}

.home-content h3::before {
  content: "";
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #081b29;
}



.home-content .btn-box {
  display: flex;
  justify-content: space-between;
  width: 345px;
  height: 50px;
}

.btn-box a {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-inline: 5px;
  align-items: center;
  width: 150px;
  height: 100%;
  background-color: #081b29;
  border: 2px solid #00abf0;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 600;
  color: #00abf0;
  text-decoration: wavy;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
}
.btn-box a:hover {
  color: #081b29;
}

.btn-box a:nth-child(2) {
  background-color: transparent;
  color: #00abf0;
}
.btn-box a:nth-child(2)::before {
  background-color: #00abf0;
}
.btn-box a:nth-child(2):hover {
  color: #081b29;
}

.btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #00abf0;
  z-index: -1;
  transition: 0.1s;
}

.btn-box a:hover::before {
  width: 100%;
}

.social-media {
  position: absolute;
  bottom: 40px;
  width: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-media a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #00abf0;
  border-radius: 50%;
  font-size: 20px;
  color: #00abf0;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: 0.5;
}
.social-media a :hover {
  color: #081b29;
}

.social-media a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #00abf0;
  z-index: -1;
  transition: 0.5s;
}

.social-media a:hover::before {
  width: 100%;
}

.home-img {
  position: relative;
  width: 24rem;
  height: 24rem;
  border-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img img {
  position: relative;
  width: 25rem;
  border: 0.2rem solid #18cab596;
  margin-left: 22rem;
  margin-top: 8rem;
  background: rgba(18, 145, 116, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* about section */

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background-color: #081b29;
  padding-bottom: 6rem;
}

.heading {
  margin-top: 5.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4rem;
}

span {
  color: #00abf0;
}

.about-img {
  position: relative;
  width: 24rem;
  height: 24rem;
  border-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 25rem;
  border: 0.2rem solid #18cab596;
  margin-left: 15%;
  background: rgba(18, 145, 116, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content h3 {
  font-size: 36px;
  text-align: center;
  line-height: 1.2;
  z-index: 90rem;
}

.about-content p {
  font-size: 18px;
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
  padding: 10px 10px;
  backdrop-filter: blur(8px) saturate(48%);
  -webkit-backdrop-filter: blur(8px) saturate(48%);
  background-color: rgba(17, 25, 40, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

/*  Education Section  */
.education {
  background-color: #081b29;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* min-height: auto; */
  padding-bottom: 5rem;
}

.education .education-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.education-row .education-column {
  flex: 1 1 40px;
}

.education-column .title {
  display: flex;
  justify-content: space-around;
  font-size: 2.5rem;
  margin: 0 0 0 0;
}

.education-column .education-box {
  border-left: 0.3rem solid #00abf0;
}

.education-box .education-content {
  position: relative;
  padding-left: 2rem;
}

.education-box .education-content ::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3.2rem;
  width: 2rem;
  height: 2rem;
  background: #00abf0;
  border-radius: 50%;
}

.education-content .content {
  position: relative;
  padding: 1.5rem;
  border: 0.1rem solid #00abf0;
  border-radius: 0.6rem;
  margin-bottom: 0.4rem;
}

.education-content .content .year {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0088f0;
  padding-bottom: 0.5rem;
}
.education-content .content .year .bx bxs-calendar {
  padding-right: 0%;
}

.education-content .content .year i {
  padding-right: 0.5rem;
}

.education-content .content h3 {
  font-size: 1.5rem;
}
.education-content .content p {
  font-size: 0.9rem;
  padding-top: 0.5rem;
}

/*  Skills section */

.skills {
  /* min-height: auto; */
  padding-bottom: 7rem;
  background-color: #081b29;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.skills .skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.skills-row .skills-column {
  flex: 1 1 19rem;
}

.skills-column .title {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}

.skills-box .skills-content {
  position: relative;
  border: 0.3rem solid #0088f0;
  border-radius: 0.8rem;
  padding: 0.3rem 1.8rem;
}

.skills-content .progress {
  padding: 0.3rem 0;
}

.skills-content .progress h3 {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

.skills-content .progress h3 span {
  color: #00abf0;
}

.skills-content .progress .bar {
  height: 1.5rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #cacd48;
  padding: 0.4rem;
  margin: 0.5rem 0;
}

.skills-content .progress .bar span {
  display: block;
  height: 100%;
  border-radius: 0.3rem;
  background: #16c69a;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(1) .bar span {
  width: 65%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(2) .bar span {
  width: 50%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(3) .bar span {
  width: 30%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(4) .bar span {
  width: 90%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(5) .bar span {
  width: 85%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(5) .bar span {
  width: 80%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(6) .bar span {
  width: 90%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(7) .bar span {
  width: 50%;
}

/* contact me section  */

.contact {
  margin-top: 13rem;
  background-color: #081b29;
  padding-bottom: 17rem;
  
}
.contact form {
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 0rem;
  text-align: center;
}

.contact form .input-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact form .input-box .input-field {
  position: relative;
  width: 30%;
  margin: 1.2rem 0;
  margin-left: 3rem;
  margin-right: 3rem;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: #18cab5;
  background: transparent;
  border-radius: 0.6rem;
  border: 0.2rem solid #0088f0;
}
.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
  color: #16c69a;
}

.contact form .textarea-field {
  position: relative;
  margin: 0.8rem 2.7rem;
  margin-left: 5rem;
  margin-right: 5rem;
  display: flex;
  height: 10rem;
  /* box-decoration-break: slice; */
}

.contact form .textarea-field textarea {
  resize: both;
}

.contact form .btn-box.btns .btn {
  margin-top: 15px;
  margin-inline: 5px;
  align-items: center;
  width: 10rem;
  height: 100%;
  background-color: #081b29;
  border: 2px solid #c0f000;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 600;
  color: #00abf0;
  text-decoration: wavy;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 2px 0.01px 5px 3px #0b52eb;
}

.contact form .btn-box.btns .btn:hover {
  color: #ff8514;
}

.contact form .btn-box.btns .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ba6709e6;
  z-index: -1;
  transition: 0.1s;
}

.contact form .btn-box.btns .btn:hover::before {
  width: 100%;
}

/* BREAKPOINTS */

@media (max-width: 1228px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 1380px) {
  html {
    font-size: 55%;
  }
}
