* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: "Source Code Pro";
}

body {
  background-color: black;
  color: white;
  font-size: 1.27rem;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

header {
  margin-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
  width: 100%;
  padding: 1rem;
  background-color: transparent;
  filter: drop-shadow(10px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10;
}

.logo {
  text-decoration: none;
  font-size: 4rem;
  background: linear-gradient(to right, #007bff, #0edbff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 1s, ease-in-out;
}
.logo:hover {
  transform: scale(1.1);
}

nav a {
  text-decoration: none;
  font-size: 1.3rem;
  color: white;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a:active {
  border-bottom: 3px solid skyblue;
  color: rgb(0, 191, 255);
}

@media (max-width: 990px) {
  nav {
    position: absolute;
    display: none;
    /* ye nav dikhai nhi de ga mobile view main */
    top: 100%;
    right: 0;
    width: 40%;
    border-bottom: 3px solid rgb(0, 191, 255);
    border-left: 3px solid rgb(0, 191, 255);
    border-bottom-left-radius: 20px;
    padding: 1rem solid;
    background-color: #0011;
    border-top: 0.1rem solid black;
  }
  nav :active {
    display: block;
  }
  nav a {
    display: block;
    font-size: 1.5rem;
    margin: 3rem 0;
  }
  nav a:hover,
  nav a:active {
    padding: 1rem;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid rgb(0, 191, 255);
  }
}
section {
  min-height: 100vh;
  padding: 5rem 9% 5rem;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: black;
}

.home .homeContent h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
}
.hitag span {
  color: rgb(6, 174, 230);
}

.homeContent h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.homeImage {
  border-radius: 50%;
}

.homeImage img {
  position: relative;
  width: 32vw;
  border-radius: 50%;
  box-shadow: 0 0 25px solid rgb(0, 191, 255);
  cursor: pointer;
  transition: 0.2s linear;
}

.homeImage img:hover {
  font-size: 1.8rem;
  font-weight: 500;
}

.socialIcons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  color: rgb(0, 106, 255);
  background-color: transparent;
  border: 0.2rem solid rgb(0, 191, 255);
  font-size: 2rem;
  border-radius: 50%;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease;
}

.socialIcons a:hover {
  color: white;
  transform: scale(1.3) translateY(-5px);
  background-color: rgb(0, 115, 255);
  box-shadow: 0 0 25px rgb(0, 191, 255);
}

.btn a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: black;
  border-radius: 4rem;
  font-size: 1.7rem;
  color: rgb(0, 106, 255);
  letter-spacing: 0.3rem;
  font-weight: 600;
  border: 3px solid rgb(0, 191, 255);
  transition: 0.3s ease;
  cursor: pointer;
}

.btn a:hover {
  transform: scale3d(1.03);
  background-color: rgb(0, 106, 255);
  color: white;
  box-shadow: 0 0 25px rgb(0, 191, 255);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.3s ease-in-out forwards;
}

/* Adjust transition duration and easing */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .home {
    gap: 4rem;
  }
}

@media (max-width: 990px) {
  .home {
    flex-direction: column;
    margin: 4rem 3rem;
  }

  .homeContent h1 {
    font-size: 3.2rem;
  }
  .home .homeContent h3 {
    font-size: 1.6rem;
  }

  .homeImage img {
    width: 80vw;
    margin-top: 3rem;
  }
  .btn {
    align-self: center;
    text-align: center;
  }
  .socialIcons {
    display: inline-flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .socialIcons a {
    align-content: center;
    align-items: center;
    margin: 0.4rem;
  }

  .hitag,
  h3,
  .fade-in {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
