/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #111;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00c6ff;
}

/* SECTIONS */
section {
  display: none;
}

.hero {
  display: none; /* controlled by JS */
}

/* HERO SECTION */
.hero {
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
}

/* LEFT SIDE */
.hero-left {
  width: 50%;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
  line-height: 1.2;
  color: white;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, #ff7e5f, #feb47b, #36d1dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ddd;
}

/* BUTTONS */
.primary {
  background: #00c6ff;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  color: white;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.primary:hover {
  background: #009bd6;
}

.secondary {
  background: transparent;
  border: 1px solid white;
  padding: 12px 22px;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.secondary:hover {
  background: white;
  color: black;
}

/* RIGHT SIDE PRODUCT CARD */
.hero-right {
  width: 40%;
  display: flex;
  justify-content: center;
}

.product-card {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card p {
  color: white;
  margin-top: 10px;
}

/* OTHER SECTIONS */
#about,
#products,
#download,
#contact {
  padding: 60px;
  text-align: center;
}

/* PRODUCTS BUTTONS */
.categories button {
  padding: 10px 15px;
  margin: 10px;
  border: none;
  border-radius: 20px;
  background: #00c6ff;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.categories button:hover {
  background: #009bd6;
}

/* PRODUCT GRID */
#productDisplay {
  margin-top: 20px;
}

.card {
  display: inline-block;
  background: white;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 150px;
  border-radius: 10px;
}

/* DEALERS */
.dealers {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
}

ul {
  text-align: left;
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.popup-content button {
  background: #00c6ff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
}
