@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;
}

*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background-color: var(--navbar-bg-color);
}

*::-webkit-scrollbar-thumb {
  height: 56px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: #888;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

:root {
  --bg-color: #0f2f4d;
  --second-bg-color: #21304d;
  --navbar-bg-color: #104270;
  --text-color: #eff4fd;
  --main-color: #00b4fccb;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  /* background: var(--bg-color); */
  background-image: url("../images/background.png");
  color: var(--text-color);
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 9%;
  background: var(--navbar-bg-color);
  border-bottom: 0.3rem solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 2.5rem;
  color: var(--main-color);
  font-weight: 600;
  cursor: pointer;
  animation: logoGradient 4s ease-in-out infinite;
}

@keyframes logoGradient {
  0% {
    color: #00b7ff;
  }

  50% {
    color: #00b7ff;
  }

  100% {
    color: #00b7ff;
  }
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 4rem;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  display: none;
}

/* Home page css */

.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-img img {
  width: 40vw;
  animation: floatImage 4s ease-in-out infinite;
}

@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: 2rem;
  font-style: italic;
  font-weight: 800;
}

.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: 50%;
  font-size: 2rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.5s ease;
}

.social-media a:hover {
  background: 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;
  font-size: 1.6rem;
  color: var(--text-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}

.btn:hover {
  box-shadow: 0 0 1rem var(--main-color);
  cursor: pointer;
}

/* About page css */

.about {
  background-image: url(../images/background.png);
}

.about-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 50px;
}

.about-img img {
  width: 40vw;
  animation: floatImage 4s ease-in-out infinite;
}

.heading {
  text-align: center;
  font-size: 5rem;
}

.about-content h2 {
  text-align: left;
  line-height: 1.2;
}

.about-content h3 {
  font-size: 3.6rem;
}

.about-content p {
  font-size: 2.6rem;
  margin: 2rem 0 3rem;
}

/* Faq page css */

.faq {
  background-image: url(../images/background.png);
  color: var(--text-color);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-heading {
  margin-bottom: 4rem;
  align-items: center;
}

.faq-container {
  background-blend-mode: blur(1px);
  width: 80%;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.faq .question {
  padding-bottom: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid var(--navbar-bg-color);
}

.question h3 {
  font-size: 2.5rem;
  font-weight: 500;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: 1.4s ease;
}

.answer p {
  padding-top: 1rem;
  line-height: 2.2rem;
  font-size: 1.7rem;
}

.answer p a {
  text-decoration: underline;
  color: var(--main-color);
}

.question.active .answer {
  max-height: 300px;
  animation: fade 1s ease-in-out;
  border-bottom: 2px solid var(--bg-color);
}

.question.active svg {
  transform: rotate(180deg);
}

.question svg {
  transition: transform 0.5s ease-in;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updates css *


/* Updates page css */

.updates {
  background-image: url(../images/background.png);
  color: var(--text-color);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.updates-heading {
  margin-bottom: 4rem;
  align-items: center;
}

.updates-container {
  background-blend-mode: blur(1px);
  width: 80%;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.updates .update-item {
  padding-bottom: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid var(--navbar-bg-color);
}

.update-item h3 {
  font-size: 2.5rem;
  font-weight: 500;
}

.update-details {
  max-height: 0;
  overflow: hidden;
  transition: 1.4s ease;
}

.update-details p {
  padding-top: 1rem;
  line-height: 2.2rem;
  font-size: 1.7rem;
}

.update-details p a {
  text-decoration: underline;
  color: var(--main-color);
}

.update-item.active .update-details {
  max-height: 300px;
  animation: fade 1s ease-in-out;
  border-bottom: 2px solid var(--bg-color);
}

/* .update-item.active svg {
  transform: rotate(180deg);
}

.update-item svg {
  transition: transform 0.5s ease-in;
} */

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* screenshots css */

.screenshots-page {
  background-image: url(../images/background.png);
}

.about-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.5rem;
  padding-top: 20px;
  padding-bottom: 20px;
}

.screenshots {
  width: auto;
  height: 500px;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  background-color: #151515;
  transition: 0.3s ease-in;
}

.screenshots:hover {
  background: var(--main-color);
  box-shadow: 0 0 1rem var(--main-color);
}

.screenshots img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.desc {
  padding: 15px;
  text-align: center;
  font-size: 20px;
}

/* Our team page css */

.ourteam {
  background-image: url(../images/background.png);
  color: var(--text-color);
  margin-bottom: 4rem;
}

.ourteam-heading {
  margin-bottom: 4rem;
  align-items: center;
}

.ourteam-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.ourteam-container .ourteam-box {
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 0 1rem var(--text-color);
  overflow: hidden;
  display: flex;
}

.ourteam-box img {
  width: 100%;
  transition: 0.5s ease;
}

.ourteam-box:hover img {
  transform: scale(1.1);
}

.ourteam-box .ourteam-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(40, 70, 82, 0), rgb(0, 0, 0));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.ourteam-box:hover .ourteam-layer {
  transform: translateY(0);
}

.ourteam-layer h4 {
  font-size: 3.5rem;
  text-shadow: 1px 1px 10px #00b7ff, 1px 1px 10px #00b7ff;
}

.ourteam-layer h3 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 10px #00b7ff, 1px 1px 10px #00b7ff;
}

.ourteam-layer p {
  font-weight: 700;
  font-size: 2.3rem;
  margin: 1rem 0 3rem;
  text-shadow: 1px 1px 10px #00b7ff, 1px 1px 10px #00b7ff;
}

.ourteam-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  margin-left: 0.8rem;
  background: var(--text-color);
  border-radius: 50%;
  transition: 0.5s ease;
}

.ourteam-layer a:hover {
  box-shadow: 0 0 1rem #00b7ff;
}

.ourteam-layer a i {
  font-size: 3rem;
  color: var(--bg-color);
}

/* Footer css */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 9%;
  background: var(--navbar-bg-color);
  border-top: 0.3rem solid rgba(0, 0, 0, 0.2);
}

.footer-text p {
  font-size: 1.6rem;
}

.footer-iconTop a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 0.8rem;
  padding: 0.8rem;
  background: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
  cursor: pointer;
}

.footer-iconTop a:hover {
  box-shadow: 0 0 1rem #00b7ff;
}

.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--text-color);
}

/* Breakpoints */
@media (max-width: 1200px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 2rem 3%;
  }

  section {
    padding: 10rem 3% 2rem;
  }

  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 45%;
  }

  #menu-icon {
    display: block;
    cursor: pointer;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 2rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
  }

  .navbar.active {
    display: block;
    animation: navShow 0.3s ease-in-out;
  }

  .navbar.active a {
    text-align: center;
    padding: 1rem;
    background-color: var(--navbar-bg-color);
  }

  @keyframes navShow {
    from {
      opacity: 0;
      transform: translateY(1);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar a {
    display: block;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-img img {
    width: 90vw;
    margin-top: 4rem;
  }

  .about-1 {
    flex-direction: column-reverse;
  }

  .about-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-img img {
    width: 110vw;
  }

  .faq .ourteam h2 {
    margin-bottom: 3rem;
  }

  .ourteam h2 {
    margin-bottom: 3rem;
  }

  .ourteam-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 617px) {
  .home-img img {
    width: 110vw;
  }

  .ourteam-heading h2 {
    font-size: 4rem;
  }

  .ourteam-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 365px) {
  .home-img img {
    width: 90vw;
  }

  .about-img img {
    width: 90vw;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}
