@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #00bfff;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00bfff;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0d1b2a, #000);
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #00bfff;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #008fcc;
  transform: translateY(-2px);
}

.trusted-by {
  background: linear-gradient(90deg, #0d1b2a, #1b263b);
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.trusted-by h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 150px;
  margin: 0 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-header {
  text-align: center;
  padding: 120px 20px 80px;
  background: #111;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #00bfff;
}

.services,
.products,
.pricing,
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 10%;
}

.service-card,
.product-card,
.price-card {
  background: #161616;
  border: 1px solid #222;
  padding: 30px;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.product-card:hover,
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00bfff33;
}

.service-card h3,
.product-card h3,
.price-card h3 {
  color: #00bfff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p,
.product-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.product-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.price-card ul {
  margin: 20px 0;
  padding: 0;
}

.price-card li {
  margin: 10px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.price-card p {
  font-size: 2rem;
  color: #fff;
  margin: 10px 0 20px;
}

.price-card.popular {
  border: 2px solid #00bfff;
  background: #121212;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
  resize: none;
}

.contact-form button {
  border: none;
  background: #00bfff;
  color: #fff;
  padding: 12px 0;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #008fcc;
}

footer {
  background: #111;
  text-align: center;
  padding: 25px;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .services,
  .products,
  .pricing,
  .contact {
    padding: 60px 5%;
  }

  .service-card,
  .product-card,
  .price-card {
    max-width: 100%;
  }

  .logo-track img {
    width: 100px;
    margin: 0 25px;
  }
}
