@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

/* :root {
  --bg-color: #1f242d;
  --second-bg-color: #323946;
  --text-color: #fff;
  --main-color: #0ef;
} */

:root {
  --bg-color: #0f2525;
  --second-bg-color: #143333;
  --text-color: #fff;
  --main-color: #64ccc5;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 9%;
  background: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  border-bottom: 2px solid var(--second-bg-color);
}

.header .sticky {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.logo-img {
  height: 3rem;
  width: 3.5rem;
  margin-top: 1rem;
}

.logo {
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: 600;
  cursor: pointer;
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 4rem;
  margin-bottom: 2rem;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
  color: var(--main-color);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  cursor: pointer;
  display: none;
}

.navMenu {
  position: absolute;
  top: 3rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  height: fit-content;
  min-width: 10rem;
  border-radius: 1rem;
}

.listItem {
  padding: 1rem 5rem;
  margin: 0.25rem;
  background: rgb(30, 30, 30);
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;

  /* width: 100w;
    margin: 0 auto;
    overflow: hidden;
    position: relative; */
}

.get-started {
  margin-top: 3rem;
}

.home-img img {
  width: 45vw;
  border-radius: 2rem;
  box-shadow: 0 0 2rem var(--main-color);
  transition: 0.5s ease;

  /*animation: floatImage 4s ease-in-out infinite;
    right: 0;
    object-fit:cover;
    position: absolute;
    z-index: -1;
    top: 16rem; */
}

/* @keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.4rem);
  }
  100% {
    transform: translateY(0);
  }
} */

.home-content h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

.home-content h3:nth-of-type(2) {
  margin-bottom: 2rem;
}

span {
  color: var(--main-color);
}

.home-content h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-content p {
  font-size: 1.6rem;
  padding-right: 2.6rem;
}

.social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  border-radius: 2rem;
  font-size: 2rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
}

.social-media a:hover {
  background-color: var(--main-color);
  color: var(--second-bg-color);
  box-shadow: 0 0 1rem var(--main-color);
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--second-bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}

.btn:hover {
  box-shadow: none;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  background: var(--second-bg-color);
}

.heading {
  text-align: center;
  font-size: 4.5rem;
}

.about-content .list {
  font-size: 1.2rem;
}

.about-content h3 {
  font-size: 2.6rem;
}
.about-content p {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
}

.about-content .list ul {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
}

.contact-us {
  font-size: 1.6rem;
  color: var(--main-color);
}

.download h2 {
  margin-bottom: 5rem;
}

.download-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
  gap: 2rem;
}

.download-container .download-box {
  position: relative;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--second-bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  min-height: 40rem;
  max-width: fit-content;
  padding: 3rem 2rem 4rem;
  z-index: 2;
  transition: 0.2s ease;
}

.download-box .download-content {
  padding: 20px;
  text-align: center;
  transform: translateZ(20px);
  z-index: 100;
  transition: 0.5s;
}

.download-box i {
  font-size: 7rem;
  color: var(--main-color);
}

.download-box h3 {
  font-size: 2.6rem;
}

.download-box .btn {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 4rem;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transform: translateZ(20px);
}

.download-box p {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 1rem 0 3rem;
}

.download-container .download-box:hover {
  transform: scale(1.02);
}

.screenshots {
  /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; */
  background: var(--second-bg-color);
}

.screenshots h2 {
  margin-bottom: 4rem;
}

.screenshots-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.screenshots-container .screenshots-box {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 0 1rem var(--bg-color);
  overflow: hidden;
  display: flex;
}

.screenshots-box img {
  width: 100%;
  transition: transform 0.3s ease;
}

.screenshots-box:hover img {
  transform: scale(1.12);
}

.screenshots-box .screenshots-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), var(--bg-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.screenshots-box:hover .screenshots-layer {
  transform: translateY(0);
}

.screenshots-layer {
  color: var(--text-color);
}

.screenshots-layer h4 {
  font-weight: 600;
  font-size: 3rem;
}

.screenshots-layer p {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0.3rem 0 1rem;
}

.screenshots-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--text-color);
  border-radius: 50%;
}

.screenshots-layer a i {
  font-size: 2rem;
  color: var(--second-bg-color);
}

.domains {
  display: flex;
  flex-wrap: wrap;
}

.domain {
  margin-right: 1.4rem;
}

.domain img {
  width: 100%;
  margin-right: 5px;
}

.contact h2 {
  margin-bottom: 3rem;
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-color);
  background-color: var(--second-bg-color);
  border-radius: 0.8rem;
  margin: 0.7rem 0;
}

.contact form .input-box input {
  width: 49%;
}

.contact form textarea {
  resize: none;
}

.contact form .btn {
  margin-top: 2rem;
  cursor: pointer;
}

.help {
  position: fixed;
  bottom: 80px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  padding: 0 88.5%;
}

.help-icon a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  text-decoration: none;
}

.help-icon a:hover i {
  color: var(--main-color);
  transform: scale(1.2);
}

.help-icon a i {
  font-size: 4rem;
  color: var(--main-color);
  transition: 0.3s ease;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;
  background-color: var(--second-bg-color);
}

.footer-text p {
  font-size: 1.6rem;
}

.footer-icon a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background-color: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
}

.footer-icon a:hover {
  box-shadow: 0 0 1rem var(--main-color);
}

.footer-icon a i {
  font-size: 2.8rem;
  color: var(--second-bg-color);
}

.toast-error {
  font-size: 1.4rem;
  top: 70px;
}
.toast-success {
  font-size: 1.4rem;
  top: 70px;
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 55%;
  }
  .home-img img {
    width: 55vw;
    margin-top: 10rem;
  }
  .toast-error {
    top: 60px;
  }
  .toast-success {
    top: 60px;
  }
}

@media screen and (max-width: 1300px) {
  .home-img img {
    width: 70vw;
  }
  .home {
    flex-direction: column;
  }
  .screenshots-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1100px) {
  .about-content h3,
  .download-container h3,
  .screenshots-layer h4 {
    font-size: 1.6rem;
  }
  .toast-error {
    font-size: 1.4rem;
  }
  .toast-success {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .home-img img {
    width: 80vw;
  }
  .download {
    padding: 10rem 3% 2rem;
  }
  .contact form .input-box input {
    width: 100%;
  }
}

@media screen and (max-width: 854px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 70px;
    right: 0;
    width: 18rem;
    z-index: 1;
    padding: 3% 3%;
    background-color: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.9);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .heading {
    font-size: 3.2rem;
  }
  .navbar a {
    display: block;
    font-size: 1.6rem;
    margin: 3rem 0;
  }

  .screenshots h2 {
    margin-bottom: 3rem;
  }
  .screenshots-layer h4 {
    font-weight: 400;
    font-size: 2.2rem;
  }

  .screenshots-layer p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  .help {
    bottom: 140px;
  }
  .footer {
    flex-direction: column-reverse;
  }
  .footer p {
    text-align: center;
  }
  .footer-icon {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-icon a i {
    font-size: 2rem;
  }

  .toast-error {
    font-size: 1.2rem;
  }
  .toast-success {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 550px) {
  html {
    font-size: 50%;
  }

  .navbar {
    top: 64px;
  }
  .about-content p,
  .about-content .list li {
    font-size: 1.5rem;
  }
  .toast-error {
    top: 52px;
  }
  .toast-success {
    top: 52px;
  }
}

@media screen and (max-width: 465px) {
  .home-img img {
    width: 90vw;
  }
  .heading {
    font-size: 2.8rem;
  }
  .p {
    font-size: 1.2rem;
  }
  .home-content h1 {
    font-size: 3.6rem;
  }
  .home-content h3,
  .about-content h3,
  .download-container h3,
  .screenshots-layer h4 {
    font-size: 2.4rem;
  }
}
