/* ====================== ALL IMPORT FILES ====================== */
@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideTop {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideBottom {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  /* border: 2px solid black; */
}

html {
  scroll-behavior: smooth;
}

body {
  color: #ededed;
  background: #081b29;
  overflow-x: hidden;
}

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #051129;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 10%;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  height: 4rem;
  width: 4rem;
  margin: 0;
  padding: 0;
  border-radius: 170px;
  box-shadow: 0 0 20px #0ef;
  position: relative;
  opacity: 0;
  animation: slideRight 1s ease forwards;
}

.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
}
.menu-btn:hover {
  transform: scale(1.1);
}

/* --- Sidebar (Desktop Default) --- */
header nav {
  position: static;
  right: 0;
  width: auto;
  height: auto;
  flex-direction: row;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border: none;
  padding-top: 0;
  display: flex;
}

.close-btn {
  display: none;
}

header nav a {
  display: inline-block;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  letter-spacing: 0.5px;
  transform: 0.3s;
  transition: 0.5s ease;
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}
header nav a:hover {
  color: #0ef;
}

.overlay {
  display: none;
}

/* ====================Home Section==================== */
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 10% 0;
}

.home-content {
  max-width: 600px;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideBottom 1s ease forwards;
  animation-delay: 0.7s;
}

.home-content h3:nth-of-type(2) {
  margin-bottom: 30px;
  animation: slideTop 1s ease forwards;
  animation-delay: 0.7s;
}

.home-content h3 span {
  color: #0ef;
}

.home-content h1 {
  font-size: 56px;
  font-weight: 700px;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: 1s;
}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: 1s;
}

.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #0ef;
  border-radius: 50%;
  font-size: 20px;
  color: #0ef;
  text-decoration: none;
  transition: 0.5s ease;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
  margin: 30px 15px 30px 0;
}

.home-sci a:hover {
  background: #0ef;
  color: #081b29;
  box-shadow: 0 0 20px #0ef;
}

.btn-box {
  display: inline-block;
  padding: 12px 28px;
  background: #0ef;
  border-radius: 40px;
  font-size: 16px;
  color: #081b29;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transition: 0.5s ease;
  animation: slideTop 1s ease forwards;
  animation-delay: 2s;
  box-shadow: 0 0 5px #0ef, 0 0 25px #0ef;
}

.btn-box:hover {
  box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan, 0 0 200px cyan;
}

.home-content img {
  height: 30rem;
  width: 30rem;
  border-radius: 50%;
  box-shadow: 0 0 20px #0ef;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 0.7s;
}

/* ====================Responsive Mobile==================== */
/* ====================== RESPONSIVE STYLE ====================== */
@media (max-width: 767px) {
  .menu-btn {
    display: block;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 50%;
    height: 100%;
    background: rgba(30, 30, 30, 0.5);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-left: -1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    padding-top: 70px;
    transition: right 0.5s ease;
    z-index: 1500;
  }
  header nav.active {
    right: 0;
  }
  .close-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    margin: 0.15rem 11%;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.2s ease;
  }
  .close-btn:hover {
    transform: rotate(90deg);
  }
  header nav a {
    padding: 15px 35%;
    margin: 0;
    width: 100%;
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: rgba(30, 30, 30, 0.5);
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* ====================Home Section==================== */
  .home {
    padding: 170px 20px 40px;
    display: flex;
    flex-direction: column;
  }
  .home-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
  }
  .home-content h3:nth-of-type(2) {
    margin-bottom: 15px;
  }
  .home-content h1 {
    font-size: 2.35rem;
    font-weight: 700;
    margin: -3px 0;
  }
  .home-content p {
    font-size: 1.1rem;
  }
  .home-content img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */