* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 10%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 25px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.logo:hover {
  color: rgb(172, 2, 219);
  text-shadow: white;
  transform: scale(1.1);
}

span {
  color: rgb(172, 2, 219);
}

.navbar a {
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin: 0 20px;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: rgb(172, 2, 219);
  border-bottom: 3px solid;
}

.contact {
  padding: 10px 25px;
  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: rgb(172, 2, 219);
  box-shadow: 0 0 25px rgb(172, 2, 219);
  color: white;
}

.home {
  width: 100%;
  min-height: 100vh;
  background: rgb(241, 241, 241);
  display: flex;
  align-items: center;
  gap: 7em;
  padding: 25px 12% 0;
}

.home-content {
  max-width: 800px;
}
.home-content h3 {
  font-size: 42px;
}

.home-content h1 {
  font-size: 40px;
}

.home-content p {
  font-size: 18px;
  margin: 25px 0 30px;
}

.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-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-1:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
}

.btn-2 {
  padding: 15px 20px;
  background-color: rgb(172, 2, 219);
  color: white;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-2:hover {
  background-color: white;
  color: rgb(172, 2, 219);
}

.img-box img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb-thumb {
  background-color: rgb(172, 2, 219);
}

::-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: 10em;
  background: black;
} */

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(12% + 60px) 8%; /* Adjust this value according to your navbar height */
  gap: 10em;
  background: black;
}

.about-img img {
  position: relative;
  height: 400px;
  width: 400px;
  box-shadow: 0 0 25px rgb(172, 2, 219), 0 0 25px rgb(172, 2, 219);
  border-radius: 50%;
}

.about-content h2 {
  text-align: left;
  color: white;
  font-size: 42px;
}

.about-content h3 {
  font-size: 62px;
  color: white;
}

.about-content p {
  color: white;
  font-size: 20px;
  margin: 2em 0 3em;
}

.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: 2em;
}

.contact-form form .input-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-form form .input-box input,
.contact-form form textarea {
  width: 100%;
  padding: 1em;
  font-size: 18px;
  color: black;
  background: rgb(241, 241, 241);
  border-radius: 0.8rem;
  margin: 1rem 0;
  resize: none;
}

.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 rgb(172, 2, 219);
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  box-shadow: inset 0 0 10px rgb(172, 2, 219), 0 0 10px rgb(172, 2, 219);
  transition: 0.3s ease;
}

.footer .social a:hover {
  transform: scale(1.2) translateY(-10px);
  color: rgb(172, 2, 219);
  border: 2px solid rgb(172, 2, 219);
}

.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 transparent;
  transition: 0.3s ease;
}

.footer ul li a:hover {
  border-bottom: 3px solid rgb(172, 2, 219);
}

.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: 768px) {
  .header {
    flex-direction: column;
    padding: 20px 5%;
  }

  .navbar a {
    font-size: 16px;
    margin: 0 10px;
  }

  .contact {
    font-size: 14px;
    padding: 8px 20px;
  }

  .home {
    flex-direction: column;
    gap: 2em;
    padding: 20px 5%;
  }

  .home-content h3 {
    font-size: 28px;
  }

  .home-content h1 {
    font-size: 32px;
  }

  .home-content p {
    font-size: 16px;
  }

  .btn-box {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
  }

  .btn-1,
  .btn-2 {
    width: 100%;
    padding: 12px;
  }

  .img-box img {
    width: 280px;
    height: 280px;
  }

  .about {
    flex-direction: column;
    padding: 8% 5%;
    gap: 2em;
  }

  .about-img img {
    width: 280px;
    height: 280px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content h3 {
    font-size: 48px;
  }

  .about-content p {
    font-size: 16px;
  }

  .contact-form h2 {
    font-size: 28px;
  }

  .contact-form form {
    max-width: 100%;
  }

  .footer {
    padding: 20px 0;
  }

  .footer ul li {
    padding: 0 10px;
  }

  .footer ul {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .navbar a {
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .navbar.active a {
    display: block;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    background: #333;
    margin: 5px 0;
  }
}
