* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}
.header {
  height: 10vh;
  width: 100%;
  padding: 10px 12px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.logo {
  font-size: 25px;
  color: white;
  font-weight: 600;
  transition: all 0.5s ease;
}
.logo:hover {
  color: orangered;
  text-shadow: 0 0 25px orangered;
  transform: scale(1.1);
}
span {
  color: orangered;
}
.navbar a {
  font-size: 15px;
  color: white;
  font-weight: 500;
  margin: 0 20px;
  border: 3px solid transparent;
  transition: 0 3s ease;
}
.navbar a:hover,
.navbar a.active {
  color: orangered;
}
.contact {
  padding: 10px 28px;
  background-color: white;
  color: black;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3s ease;
}
.contact:hover {
  background-color: orangered;
  box-shadow: 0 0;
}
.home {
  width: 100%;
  min-height: 100vh;
  background: rgb(241, 241, 241);
  display: flex;
  gap: 7em;
  padding: 30px 12% 0;
}
.home-content {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}
.home-content h3 {
  font-size: 10vh;
}
.home-content h1 {
  font-size: 8vh;
  line-height: 1.2;
}
.home-content p {
  font-size: 18px;
  margin: 25px 0 30px;
}
.left {
  line-height: -10px;
  width: 45%;
}
.btn-box {
  width: 345px;
  display: flex;
  gap: 2em;
}
.btn-1 {
  padding: 15px 20px;
  background-color: black;
  color: white;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-1:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
}
.btn-2 {
  padding: 15px 28px;
  background-color: orangered;
  color: white;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-2:hover {
  background-color: white;
  color: black;
}
.img-box {
  width: 30%;
  background-position: center;
  transition: all 0.5s ease-in-out;
}
.img-box:hover {
  transform: scale(1.05);
}
.img-box img {
  border-radius: 50%;
  width: 450px;
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-thumb {
  background-color: orangered;
}
::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.6);
  width: 50px;
}
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12% 8%;
  gap: 5em;
  background: black;
}
.about-img img {
  position: relative;
  width: 300px;
  box-shadow: 0 0 25px orangered, 0 0 50px orangered;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.about-content h2 {
  text-align: left;
  color: white;
}
.about-content h3 {
  font-size: 50px;
  color: white;
}
.about-content p {
  color: white;
  font-size: 15px;
  margin: 2em 0 3em;
  padding-right: 50px;
}
.img-box1 {
  display: none;
  width: 200px;
  height: 200px;
}

/*Contact css*/
.contact-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.input-box {
  margin: 10px 0px;
}
form input {
  margin: 10px 0px;
  padding: 10px 15px;
  border-radius: 0.7rem;
  outline: none;
  border: 1px solid black;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-form form .btn-1 {
  width: auto;
  margin: 10px 0px;
}
.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: black;
}
.footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: white;
}
.footer .social a {
  font-size: 24px;
  color: white;
  border: 2px solid orangered;
  width: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  margin: 0 8px;
  box-shadow: insert 0 0 10px orangered;
  transition: all 0.3s ease;
}
/* .footer .social a :hover {
  transform: scale(1.2) translateY(-10px);
  color: orangered;
  
}   
*/
.footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}
.footer ul li a {
  color: white;
  border-bottom: 3px solid orangered;
}
.footer ul li {
  display: inline-block;
  padding: 0 15px;
}
.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: white;
}

@media (max-width: 800px) {
  .home-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .left {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .right {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: auto;
    right: auto;
  }
  .img-box img {
    display: flex;
    justify-content: center;
    width: 200px;
    height: 200px;

    border-radius: 20px;
    background-position: center;
  }
  .header {
    height: 16vh;
  }
  .btn-box {
    margin-left: auto;
    margin-right: auto;
  }
  .home-content h3 {
    font-size: 8vh;
  }
  .home-content h1 {
    font-size: 6.5vh;
  }
  .home-content p {
    font-size: 2vh;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  .contact-form h2 {
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
  }
  .contact-form form {
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3em;
  }
  .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-form form .input-box input,
  .contact-form form textarea {
    width: 100%;
    padding: 1.5em;
    font-size: 18px;
    color: black;
    background: rgb(241, 241, 241);
    border-radius: 0.8rem;
    margin: 1rem 0;
    resize: none;
  }
}
.about-img img:hover {
  transform: scale(1.05);
}
.about {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .about {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .contact {
    display: none;
  }
  .btn-2 {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content {
    margin-top: 20px;
  }
}
.about-img1 img {
  position: relative;
  width: 300px;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.about-img1 img:hover {
  transform: scale(1.1);
}
.about-container {
  display: flex;
  gap: 25px;
  padding: 25px;
  justify-content: center;
}

.about-content.r {
  flex: 1;
  max-width: 45%;
  box-sizing: border-box;
  padding: 17px;
  border: 1px solid #ddd;
  border-radius: 7px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
