* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Times New Roman", Times, serif;
  text-decoration: none;
  list-style: none;
}
section {
  border: 1px solid black;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 5%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  text-align: center;
  z-index: 100;
}

.logo {
  /* margin-left: 10px; */
  font-size: 25px;
  color: wheat;
  font-weight: 600;
  transition: 0.3s ease;
}

.logo:hover {
  color: orangered;
  text-shadow: 0 0 25px wheat, 0 0 25px wheat;
  transform: scale(1.12);
}

span {
  color: orangered;
}

.navbar a {
  font-size: 20px;
  color: wheat;
  font-weight: 500;
  margin: 0 35px;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: orangered;
  border-bottom: 3px solid orangered;
}

.contact {
  background-color: white;
  margin-left: 30px;
  padding: 10px 10px;
  color: black;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: 0.3s ease;
}

.contact:hover {
  color: white;
  background-color: orangered;
  box-shadow: 0 0 25px orangered;
  transform: scale(1.1) translateY(-5px);
}

.home {
  width: 100%;
  min-height: 100vh;
  background-color: rgb(241, 241, 241);
  display: flex;
  align-items: center;
  gap: 7em;
  padding: 30px 12%;
}

.home-content {
  max-width: 800px;
}

.home-content h3 {
  font-size: 42px;
}

.home-content h1 {
  font-size: 40px;
  /* line-space:1.2; */
}

.home-content p {
  font-size: 18px;
  margin: 25px 0 30px;
  font-weight: 500;
}

.btn-box {
  width: 100%;
  display: flex;
  gap: 2em;
  border: 1px solid transparent;
}

.btn-1 {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-size: 19px;
  letter-spacing: 1px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  /* display: inline-block; */
}
.btn-1 i {
  color: white;
  padding-right: 5px;
  align-items: center;
}

.btn-1:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.9);
  border: 1px solid transparent;
  transform: translateY(-5px);
}

.img-box {
  width: 200px;
  height: inherit;
}

.img-box img {
  margin-top: 100px;
  width: 315px;
  border-radius: 30%;
  box-shadow: 0 0 25px orangered;
  border: 3.4px solid black;
  transition: 0.3s;
  cursor: pointer;
}
.img-box img:hover {
  box-shadow: 0 0 25px orangered;
  transition: 0.25;
  transform: scale(1.11);
}

::-webkit-scrollbar {
  width: 10px;
  height: inherit;
}

::-webkit-scrollbar-thumb {
  background-color: orangered;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

.projects {
  text-align: center;
  background-color: black;
  color: orangered;
}

.projects h1{
  padding-top: 10px;
}
.projectscertify{
  text-align: center;
  /* background-color: black; */
  color: orangered;
}
.list-projects {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* allows lists to align properly */
  padding: 8% 8%;
  gap: 5em;
  font-size: 18px;
}
.list-projects .hsptl-mang ul li {
  list-style-type: disc; /* options: circle | disc | decimal | lower-roman etc. */
  padding-left: 20px;
  cursor: pointer;
}

.list-projects .hsptl-mang ul li:hover {
  color: blue;
  text-decoration: underline;
  font-size: 20px;
  transition: 0.3s;
}

.list-projects .chatbot ul li {
  list-style-type: square; /* options: circle | disc | decimal | lower-roman etc. */
  padding-left: 20px;
  cursor: pointer;
}

.list-projects .chatbot ul li:hover {
  color: blue;
  text-decoration: underline;
  font-size: 20px;
  transition: 0.3s;
}

.hsptl-mang h3,
.chatbot h3 {
  font-size: 30px;
  padding-bottom: 12px;
}

.hsptl-mang,
.chatbot {
  border: 1px solid wheat;
  margin: 20px 15px;
  width: 600px;
  padding: 20px;
}

.hsptl-mang ul {
  text-align: left;
  list-style-type: disc;
  margin-left: 25px;
}

.chatbot ul {
  text-align: left;
  list-style-type: disc;
  margin-left: 25px;
}

.contact-form form {
  max-width: 50%;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3em;
}

.contact-form h2 {
  font-size: 45px;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 1rem;
}
.contact-form form .input-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-form form .input-box input {
  height: 70px;
}

.contact-form form textarea {
  height: 200px;
}
.contact-form form .input-box input,
.contact-form form textarea {
  width: 100%;
  padding: 1.6em;
  font-size: 18px;
  color: black;
  border: 1px solid transparent;
  background: rgb(241, 241, 241);
  border-radius: 0.8rem;
  margin: 1rem 6rem;
  resize: none;
}

.contact-form form .input-box input:focus {
  background-color: rgba(0, 0, 0, 0.15);
}

.about {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12% 8%;
  gap: 7em;
  background-color: black;
}

.img-about img {
  position: relative;
  width: 320px;
  border: 3px solid white;
  box-shadow: 0 0 25px orangered, 0 0 25px orangered;
  border-radius: 50%;
  cursor: pointer;
}

.img-about img:hover {
  position: relative;
  width: 320px;
  border: 3px solid white;
  box-shadow: 0 0 25px orangered, 0 0 25px orangered;
  border-radius: 50%;
  transition: 0.3s;
  transform: scale(1.1);
}

.about-content h2 {
  color: white;
  text-align: left;
  font-size: 40px;
}
.about-content h3 {
  font-size: 50px;
  color: white;
}

.about-content p {
  color: white;
  font-size: 20px;
  margin: 2em 0 3em;
}


.footer{
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: black;

}

.footer .social-links{
  text-align: center;
  padding-bottom:24px ;
}

.footer .social-links a{
  color:white;
  font-size: 28px;
  border: 2px solid orangered;
  width: 50px;
  height: 48px;
  line-height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  margin: 0 10px;
  box-shadow: inset 0 0 10px orangered,0 0 10px orangered;
  transition: 0.3s ease;
}
.footer .social-links a:hover{
  transform: scale(1.2) translateY(-12px);
  color: orangered;
  border: 3px solid orangered;
}

.footer .lists{
  margin-top: 10px; 
  padding: 0;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  margin-bottom:0 ;

}

.footer ul li a{
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}
.footer ul li a:hover{
  /* background-color: orangered; */
  color: orangered;
  transform: scale(1.1) translateY(-13px);
  transition: 0.3s ease;
  
}
.footer ul li {
  display: inline-block;
  padding: 10px 25px;
}

.footer .copy-right{
  margin: 10px 2px;
  color: white;
  text-align: center;
}


/* ================= MOBILE ONLY FIX ================= */
@media (max-width: 768px) {

/* HEADER */
.header {
flex-direction: column;
padding: 15px;
}

.navbar {
display: flex;
flex-direction: column;
align-items: center;
}

.navbar a {
margin: 10px 0;
}

.contact {
margin-top: 10px;
}

/* HOME SECTION */
.home {
flex-direction: column;
gap: 2em;
padding: 120px 20px 20px;
text-align: center;
}

.img-box img {
width: 100%;
max-width: 220px;
margin-top: 20px;
}

/* PROJECTS */
.list-projects {
flex-direction: column;
gap: 20px;
padding: 20px;
}

.hsptl-mang,
.chatbot {
width: 100%;
}

/* ABOUT */
.about {
flex-direction: column;
gap: 2em;
padding: 20px;
text-align: center;
}

.img-about img {
width: 220px;
}

/* CONTACT FORM */
.contact-form form {
max-width: 100%;
padding: 0 10px;
}

.contact-form form .input-box {
flex-direction: column;
}

.contact-form form .input-box input,
.contact-form form textarea {
margin: 10px 0;
}

/* FOOTER */
.footer ul li {
display: block;
padding: 8px;
}
}
