@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #000;
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid white;
}

.navbar {
  width: 90%;
  max-width: 1300px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  min-height: 80px;
}

.logo img {
  width: 90px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 5px;
  display: inline-flex;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00a3ff;
}

.btn {
  background: rgba(0, 92, 230, 0.92);
  text-decoration: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 18px;
}

.btn:hover {
  background: #fff;
  color: #005cb9;
}
.active {
  color: #00a3ff;
  border-bottom: 2px solid #00a3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.about-hero {
  height: 70vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/about-banner.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.hero-content h1 {
  font-family: "Anton";
  font-size: 90px;
  letter-spacing: 3px;
}

.hero-content p {
  margin-top: 20px;
  max-width: 650px;
  color: #ddd;
  line-height: 1.8;
}

/*================ ABOUT ================*/

.about {
  max-width: 1300px;
  margin: 100px auto;

  display: flex;
  align-items: center;
  gap: 70px;

  padding: 0 8%;
}

.about-image img {
  width: 350px;
}

.about-text span {
  color: #0d7dff;
  font-weight: 700;
}

.about-text h2 {
  font-family: "Anton";
  font-size: 60px;

  margin: 20px 0;
}

.about-text p {
  color: #ccc;
  line-height: 1.9;
}

.features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 40px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features i {
  color: #0d7dff;
}

/*================ STATS ================*/

.stats {
  background: #111;

  padding: 80px 8%;

  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat h2 {
  font-family: "Anton";

  font-size: 70px;

  color: #0d7dff;
}

.stat p {
  margin-top: 15px;
}

/*================ RESPONSIVE ================*/

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .about-image img {
    width: 260px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .stats {
    flex-direction: column;
    gap: 40px;
  }
}
/*======================
        FOOTER
=======================*/

.footer {
  background: #000;
  padding: 80px 8% 30px;
  color: #fff;
  border-top: 2px solid #005cb9;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  min-width: 280px;
}

.footer-logo img {
  width: 110px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #bdbdbd;
  line-height: 1.8;
  max-width: 380px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #005cb9;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 25px;
  color: #bdbdbd;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo p {
    margin: auto;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

.developer-text {
  color: #bdbdbd;
  margin-bottom: 20px;
  line-height: 1.7;
}

.developer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.developer-social a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.developer-social a i {
  font-size: 22px;
  color: #005cb9;
}

.developer-social a:hover {
  color: #005cb9;
  transform: translateX(8px);
}
