@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Anton", sans-serif;
}

body {
  background: #004b93;
}
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-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;
  }
}
.hero {
  width: 100%;
  height: 105vh;
  margin-top: 100px;
  background-image: url("../images/hero_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-content {
  margin-left: 80px;
  margin-top: 220px;
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  position: relative;
  top: 60px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #005cb9;
}
.video-section {
  width: 100%;
  background: #000;
  padding: 100px 0;
}

.video-wrapper {
  width: 65%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 20px;
}
/*=========================
      PRODUCTS SECTION
=========================*/

.products {
  background: #000;
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-family: "Anton", sans-serif;
  font-size: 70px;
  color: #fff;
  letter-spacing: 3px;
}

.section-title p {
  color: #cfcfcf;
  margin-top: 15px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: #0d0d0d;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: #005cb9;
  box-shadow: 0 20px 50px rgba(0, 92, 185, 0.35);
}

.product-card img {
  width: 170px;
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.08) rotate(-5deg);
}

.product-card h3 {
  margin: 30px 0 15px;
  color: #fff;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  font-size: 32px;
}

.product-card p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 35px;
  font-family: "Montserrat", sans-serif;
}

.product-btn {
  display: inline-block;
  padding: 15px 38px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}

.product-btn:hover {
  background: #005cb9;
  border-color: #005cb9;
}

/*=========================
      Responsive
=========================*/

@media (max-width: 992px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 45px;
  }

  .product-container {
    grid-template-columns: 1fr;
  }
}

/*======================
        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);
}
