/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Lato&display=swap');

/* Base Styles */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  scroll-behavior: smooth;
}

.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

body {
  margin: 0;
  font-family: sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 20px;
  position: relative;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: #0ff;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 10px;     /* 👈 Adjust this to fine-tune vertical position */
  right: 20px;
  line-height: 1; /* 👈 Prevent vertical stretching */
  padding: 0;     /* 👈 Remove extra space */
  margin: 0;
}


nav {
  display: flex;
  gap: 15px;
  align-items: center; /* Optional, reinforces vertical centering */
}


nav a {
  color: #0ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px; /* 👈 This moves it to the top right */
    z-index: 1000;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
  }

  nav.show {
    display: flex;
  }
}



/* Header */
header {
  background: rgba(0,0,0,0.85);
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav a {
  color: #0ff;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}



/* Sections */
section {
  padding: 4em 2em;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #0ff;
  text-align: center;
}

p {
  text-align: center;
}

.about-content {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  word-wrap: break-word;
  hyphens: auto;
}

.about-content p,
.about-content ul,
.about-content li {
  text-align: left;
}


.about-content h2 {
  color: #0ff;
  margin-bottom: 20px;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content img {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
}


.download-btn {
  background-color: orange;
  color: black;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 👈 Adds depth */
  transition: all 0.3s ease;
  display: inline-block;
}

.download-btn:hover {
  background-color: #0ff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 👈 Stronger shadow on hover */
  transform: translateY(-2px); /* 👈 Slight lift effect */
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
  z-index: 2;
}


.carousel-image {
  filter: blur(1px);
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 140px;
  text-shadow: 1px 1px 1px rgba(0, 255, 255, 0.6);
}



.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3em;
  margin-bottom: 0.3em;
  background: linear-gradient(90deg, #0ff, #00f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2em;
  opacity: 0.8;
  margin-bottom: 1em;
}

.hero button {
  padding: 0.8em 1.5em;
  background: linear-gradient(to right, #00f, #0ff);
  border: none;
  color: #000;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero button:hover {
  transform: scale(1.05);
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  justify-items: center; /* Center each card horizontally */
  padding: 0 1em;
}

/* Product Card */
.product-card {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.02);
}


/* Product Image */
.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent; /* Prevent white box */
}


/* Model Number */
.product-card h3 {
  margin-top: 0.5em;
  font-size: 1em;
  color: #0ff; /* cyan accent */
  font-weight: bold;
}

/* Description */
.product-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9em;
  color: #ddd; /* lighter gray for better contrast */
  margin-top: 5px;
}



/* Contact Form */
.contact form {
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 1em;
  margin: 0.5em 0;
  border: none;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.contact button {
  padding: 1em 2em;
  background: #0ff;
  border: none;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #00f;
  color: #fff;
}

/* Contact Image */
.contact img {
  display: block;
  max-width: 100%;
  margin: 2em auto 0;
  border-radius: 10px;
}

/* Footer */
footer {
  background: #111;
  color: #888;
  padding: 2em;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid #444;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
  display: block;
  margin: auto;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  border-radius: 10px;
  box-shadow: 0 0 25px #00f0ff;
}

@media (max-width: 1200px) {
  .modal-content {
    max-width: 90%;
    max-height: 80vh;
  }
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #0ff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1em;
  }

  nav a {
    display: block;
    margin: 0.5em 0;
  }
}


.category-links {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-button {
  background-color: #1e1e1e;
  color: #f0f0f0;
  border: 1px solid #444;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-button:hover {
  background-color: #333;
  border-color: #888;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}



.category-section {
  margin-top: 40px;
}




.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
}

.category-section h3.highlight {
  background-color: #fffae6;
  padding: 5px 10px;
  border-left: 4px solid #f0c000;
  transition: background-color 0.3s ease;
}


.showcase-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.showcase-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeInImage 1.5s ease-in-out forwards;
}

.showcase-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0,255,255,0.2), rgba(255,0,255,0.2));
  mix-blend-mode: overlay;
  pointer-events: none;
}


@keyframes fadeInImage {
  from { opacity: 0; }
  to { opacity: 1; }
}



.tagline {
  position: relative;
  z-index: 2;
  font-size: 3em;
  color: white;
}



