* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

header {
  position: relative;
  text-align: center;
  background-image: url('https://i.pinimg.com/originals/a1/c7/b0/a1c7b0ef1e080947b340199c710b3376.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.logo {
  max-width: 90%;
  width: 600px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  animation: logoGlow 10s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.logo:hover {
  transform: scale(1.05);
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
  to { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)); }
}

.navbar {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  font-size: 30px;
  padding: 1rem 2rem;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 2rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s;
}

.navbar a:hover::before {
  left: 100%;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.about-bio-wrapper {
  position: relative;
  width: fit-content;
  margin: 4rem auto;
}

.about {
  width: 220px;
  height: 180px;
  background-image: url('https://64.media.tumblr.com/1f457a04014f286beb3fa79013f38f0e/81d9a7c4be57b998-d8/s400x600/09991f6c3111c729c01e3ea007ba20946cedfb88.gif');
  background-size: cover;
  background-position: center;
  color: black;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  margin-left: 9rem;
  margin-top: 5rem;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.about:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.about:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6); }
}

.bio {
  background-image: url('https://64.media.tumblr.com/1f457a04014f286beb3fa79013f38f0e/81d9a7c4be57b998-d8/s400x600/09991f6c3111c729c01e3ea007ba20946cedfb88.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  padding: 100px 80px;
  border-radius: 50% / 55%;
  height: 500px;
  width: 700px;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin: -50px 300px -50px 50px;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bio::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s;
}

.bio:hover::after {
  left: 100%;
}

.bio:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.4);
}

.contact-section {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
  padding: 1rem;
}

.contact-box {
  background-image: url('https://64.media.tumblr.com/1f457a04014f286beb3fa79013f38f0e/81d9a7c4be57b998-d8/s400x600/09991f6c3111c729c01e3ea007ba20946cedfb88.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  padding: 100px 80px;
  border-radius: 50% / 55%;
  width: 900px;
  height: 900px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: -100px 0 200px 300px;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  word-wrap: break-word;
  overflow-wrap: break-word;
}



.contact-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.5);
}

.contact-box h3 {
  font-size: 23px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item {
  margin: 1rem 0;
  padding: 0.5rem;
  font-size
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission {
  width: fit-content;
  margin: 10px ;
}

.mission .about {
  width: 220px;
  height: 180px;
  background-image: url('https://64.media.tumblr.com/1f457a04014f286beb3fa79013f38f0e/81d9a7c4be57b998-d8/s400x600/09991f6c3111c729c01e3ea007ba20946cedfb88.gif');
  background-size: cover;
  background-position: center;
  color: black;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  margin-right: 9rem;
  margin-top: 5rem;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  float: right;
}

.mission .about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.mission .about:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.mission .about:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.mission .bio {
  background-image: url('https://64.media.tumblr.com/1f457a04014f286beb3fa79013f38f0e/81d9a7c4be57b998-d8/s400x600/09991f6c3111c729c01e3ea007ba20946cedfb88.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  padding: 100px 80px;
  border-radius: 50% / 55%;
  height: 500px;
  width: 700px;
  font-size: 20px;
  text-align: center;
  margin: 90px 10px 230px 300px;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;

}

.mission .bio::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s;
}

.mission .bio:hover::after {
  left: 100%;
}

.mission .bio:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.4);
}


@media (max-width: 1024px) {
  .about-bio-wrapper {
    margin: 2rem auto;
  }

  .about {
    margin-left: 5rem;
    margin-top: 3rem;
  }

  .bio {
    width: 600px;
    height: 450px;
    margin: -50px 200px -50px 50px;
    padding: 80px 60px;
    font-size: 18px;
  }

  .mission .about {
    margin-right: 5rem;
    margin-top: 3rem;
  }

  .mission .bio {
    width: 600px;
    height: 450px;
    margin: -50px 50px -50px 200px;
    padding: 80px 60px;
    font-size: 18px;
  }

  .contact-box {
    width: 750px;
    height: 750px;
    margin: -100px 0 200px 150px;
    padding: 80px 60px;
  }
}

@media (max-width: 768px) {
  .navbar {
    font-size: 18px;
    padding: 0.8rem 1rem;
  }

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

  .about-bio-wrapper {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about {
    width: 180px;
    height: 160px;
    font-size: 18px;
    margin: 2rem auto;
  }

  .bio {
    width: 90%;
    max-width: 500px;
    height: auto;
    min-height: 300px;
    margin: 1rem auto;
    padding: 2rem;
    font-size: 16px;
  }

  .mission {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mission .about {
    width: 180px;
    height: 160px;
    font-size: 18px;
    margin: 2rem auto;
    float: none;
  }

  .mission .bio {
    width: 90%;
    max-width: 500px;
    height: auto;
    min-height: 300px;
    margin: 1rem auto;
    padding: 2rem;
    font-size: 16px;
  }

  .contact-box {
    width: 90%;
    max-width: 600px;
    height: auto;
    min-height: 600px;
    margin: 2rem auto;
    padding: 2rem;
    font-size: 16px;
  }

  .logo {
    width: 80%;
    max-width: 400px;
  }

  .contact-form {
    margin-top: 1rem;
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 0.8rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    font-size: 16px;
    padding: 0.6rem 0.5rem;
  }

  .navbar a {
    display: inline-block;
    margin: 0.2rem 0.5rem;
    font-size: 14px;
    padding: 0.3rem 0.8rem;
  }

  .logo {
    width: 90%;
    max-width: 300px;
  }

  .about {
    width: 150px;
    height: 140px;
    font-size: 16px;
    margin: 1.5rem auto;
  }

  .bio {
    width: 95%;
    max-width: 400px;
    min-height: 250px;
    padding: 1.5rem;
    font-size: 14px;
    margin: 1rem auto;
  }

  .mission .about {
    width: 150px;
    height: 140px;
    font-size: 16px;
    margin: 1.5rem auto;
    float: none;
  }

  .mission .bio {
    width: 95%;
    max-width: 400px;
    min-height: 250px;
    padding: 1.5rem;
    font-size: 14px;
    margin: 1rem auto;
  }

  .contact-box {
    width: 95%;
    max-width: 450px;
    min-height: 500px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    font-size: 14px;
  }

  .contact-form {
    margin-top: 0.8rem;
    padding: 0.8rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 0.6rem;
  }

  .submit-btn {
    padding: 0.7rem 1.2rem;
    font-size: 14px;
    width: 100%;
  }

  .contact-item {
    margin: 0.8rem 0;
    padding: 0.8rem;
    font-size: 13px;
  }
}
#contactForm{
  margin:-20px;
}
