/* =============================== */
/* RESET                           */
/* =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* =============================== */
/* NAVBAR                          */
/* =============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

.logo img {
  height: 90px;   /* Bigger logo */
  width: auto;
  display: block;
}

.nav-links > ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: #0ff;
}

/* =============================== */
/* SEARCH BAR                      */
/* =============================== */
.search-container {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #0ff;
  border-radius: 25px;
  padding: 4px 10px;
  margin-left: 20px;
  box-shadow: 0 0 8px rgba(0,255,255,0.1);
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.search-container:focus-within {
  box-shadow: 0 0 15px rgba(0,255,255,0.5);
  border-color: #09f;
}

.search-container input {
  background: transparent;
  border: none;
  outline: none;
  color: #0ff;
  font-size: 0.9rem;
  width: 160px;
  padding: 6px;
}

.search-container input::placeholder {
  color: #666;
}

.search-container button {
  background: none;
  border: none;
  color: #0ff;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.search-container button:hover {
  color: #fff;
}

/* =============================== */
/* DROPDOWNS                       */
/* =============================== */
.dropdown-parent {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
  min-width: 220px;
  z-index: 999;
  flex-direction: column;
}

.dropdown-parent:hover > .dropdown-content {
  display: flex;
}

.dropdown-content a {
  margin: 0.3rem 0;
  color: #ccc;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  color: #0ff;
}

/* Sub-dropdown */
.dropdown-subparent {
  position: relative;
}

.dropdown-subparent > a::after {
  content: ' ▶';
  color: #0ff;
  font-size: 0.8rem;
}

.dropdown-subcontent {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #111;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
  min-width: 220px;
  z-index: 999;
  flex-direction: column;
}

.dropdown-subparent:hover > .dropdown-subcontent {
  display: flex;
}

.dropdown-subcontent a {
  margin: 0.3rem 0;
  color: #ccc;
  text-decoration: none;
}

.dropdown-subcontent a:hover {
  color: #0ff;
}

/* Force right-most dropdowns to open left */
.nav-links > ul > li:last-child .dropdown-subcontent,
.dropdown-content > li:last-child .dropdown-subcontent {
  left: auto;
  right: 100%;
}

/* =============================== */
/* HERO SECTION                    */
/* =============================== */
.hero {
  height: 100vh;
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #0ff, #0af, #09f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #aaa;
}

/* =============================== */
/* BUTTONS                         */
/* =============================== */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-glow {
  background: #0ff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff inset;
}

.btn-outline {
  background: transparent;
  color: #0ff;
  padding: 0.8rem 1.5rem;
  border: 2px solid #0ff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: #0ff;
  color: #000;
}

/* =============================== */
/* PRODUCT SECTIONS                */
/* =============================== */
.product-section {
  padding: 4rem 2rem;
  background: #0a0a0a;
  text-align: center;
}

.product-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #0ff, #0af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: #111;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #0ff, #09f) 1;
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: #0ff;
  margin-bottom: 1rem;
}

.product-card p {
  color: #ccc;
  font-size: 0.95rem;
  min-height: 60px;
}

.product-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #0ff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #0ff;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  transition: 0.3s;
}

.product-card a:hover {
  background: #0ff;
  color: #000;
}

/* =============================== */
/* FOOTER                          */
/* =============================== */
.footer {
  padding: 2rem;
  text-align: center;
  background: #000;
  color: #666;
  font-size: 0.9rem;
}

.footer a {
  color: #0ff;
  text-decoration: none;
}

/* =============================== */
/* CONTACT PAGE                    */
/* =============================== */
.contact-section {
  padding: 100px 0;
  background: #111;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  color: #0ff;
  margin-bottom: 10px;
}

.contact-section .subtitle {
  color: #bbb;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card i {
  font-size: 2rem;
  color: #0ff;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0ff;
}

.contact-card p {
  font-size: 1rem;
  color: #ddd;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

/* =============================== */
/* ADMIN BANNER                    */
/* =============================== */
.admin-banner {
  background: #000;
  color: #0ff;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
  border-bottom: 2px solid #0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
