@import url('fonts.googleapis.com');
body {
  font-family: 'Poppins', sans-serif;
}

nav a{
color: black;
text-decoration: none;
margin-right: 20px;

}

nav{
    text-align: center;
justify-content:space-around; 
margin-bottom: 100px; 
margin-top: 30px;  
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #000;
}

#hero {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
  display: flex;
  align-items: center;
 justify-content: space-between;
}


#hero-left {
  max-width: 550px;
}

.intro {
  font-size: 16px;
}

.name {
  color: #ff7a00;
  margin: 6px 0 16px;
  font-weight: 600;
}

.title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}

.title span {
  display: block;
}

.desc {
  margin: 20px 0 30px;
  color: #555;
  line-height: 1.6;
  width: 530px;
}

.btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  opacity: 0.9;
}
.cont-left {
  max-width: 550px;
}


#hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cont-right {
 display: flex;
 flex-direction: row;
  align-items: center;
}
#about{
    max-width: 1200px;
  margin: auto;
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}                                                                                                                                                                                        

.image-wrapper {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 5px solid #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  color: black;
}

.socials i {
  font-size: 18px;
  cursor: pointer;
}


.skills {
  max-width: 400px;
  font-family: Arial, sans-serif;
}

.skill {
  margin-bottom: 20px;
}

.skill span {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #ff7a00;
  border-radius: 5px;
  outline: none;
}
input[type="range"]:disabled {
  cursor: default;
  opacity: 1; 
}



input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #ff7a00;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #ff7a00;
  border-radius: 50%;
  cursor: pointer;
}
#contact{
    margin-top: 100px;
    text-align: center;
}
#contact h1{
margin-bottom: 10px;
}

#contact input{
    width: 427px;
    height: 45px;
    margin-top: 30px;
}
#contact .Contact-btn{
    width: 150px;
    height: 45px;
    background-color: #ff7a00;
    color: black;
    border-radius: 10px;
    border-color: #ff7a00;
    display:block;
    margin-left: 1000px;
    margin-top: 35px;
}

#user_message{
  display: block;
  margin-left: 880px;
  }


.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #ff7a00;
}

.footer-text {
  max-width: 500px;
  margin: 0 auto 25px;
  color: #bbb;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-socials a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ff7a00;
}

.footer-copy {
  font-size: 14px;
  color: #777;
}
footer{
    margin-top: 50px;
}


@media (max-width: 600px) {
  #hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .title {
    font-size: 36px;
  }

  .desc {
    width: 100%;
    font-size: 14px;
  }

  .image-wrapper {
    width: 220px;
    height: 220px;
    margin-top: 30px;
  }

  nav {
    flex-direction: column;
    margin-bottom: 40px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  #contact input {
    width: 90%;
  }

  #contact .Contact-btn {
    width: 100%;
    margin: 20px auto 0;
  }
  #user_message{
    margin-top: 15px;
  }
}


@media (min-width: 601px) and (max-width: 1024px) {
  #hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .title {
    font-size: 48px;
  }

  .desc {
    width: 90%;
    margin: 20px auto;
  }

  .image-wrapper {
    width: 280px;
    height: 280px;
    margin-top: 30px;
  }

  #about {
    flex-direction: column;
    text-align: center;
  }

  .skills {
    max-width: 100%;
    margin-top: 30px;
  }

  #contact input {
    width: 80%;
  }

  #contact .Contact-btn {
    width: 200px;
    margin: 20px auto 0;
  }
  #user_message{
    margin-top: 15px;
  }
}


@media (min-width: 1025px) {
  #hero {
    padding: 100px 60px;
  }

  .title {
    font-size: 80px;
  }
  #user_message{
    margin-top: 15px;
  }

  .desc {
    font-size: 18px;
    width: 600px;
  }

  .image-wrapper {
    width: 400px;
    height: 400px;
  }

  #contact input {
    width: 500px;
  }

  #contact .Contact-btn {
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo {
    font-size: 36px;
  }

  .footer-text {
    font-size: 18px;
  }
}