body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #000;
  position: fixed;
  width: 100%;
  z-index: 10;
  flex-wrap: wrap;
  box-sizing: border-box;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

header nav a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
}

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide h1 {
  font-size: 46px;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
  background: rgba(0, 0, 0, 0.85);
  padding: 14px 30px;
  border-left: 6px solid #00bfff;
  border-radius: 14px;
}

.slide p {
  font-size: 18px;
  margin-bottom: 22px;
  color: #f0f0f0;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  border-left: 4px solid #00bfff;
  border-radius: 12px;
}

.slide button {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(90deg, #007acc, #00cfff);
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.slide button:hover {
  background: #005f99;
  transform: translateY(-3px) scale(1.07);
}

.controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.controls span {
  cursor: pointer;
  font-size: 40px;
  margin: 0 15px;
  color: white;
}
.products {
  padding: 60px 40px;
  text-align: center;
  background: #f8f8f8;
  color: #000;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.categories {
  margin-bottom: 20px;
}

.categories button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  background: #ddd;
}

.categories button.active {
  background: #333;
  color: white;
}

.product-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.product {
  width: 180px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product:hover {
  transform: scale(1.05);
}

.product img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.brands {
  padding: 60px 40px;
  text-align: center;
  background: white;
}

.brands h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.brand-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.brand-list img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.brand-list img:hover {
  filter: grayscale(0%);
}

.news {
  padding: 60px 40px;
  background: #f8f8f8;
  text-align: center;
}

.news h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.news-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.news-item {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 300px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.news-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.news-item p {
  font-size: 14px;
  color: #555;
}
/* Custom cursor effect */
body {
  cursor: none;
}

.cursor-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #00bfff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,191,255,0.3) 0%, rgba(0,191,255,0.05) 70%);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.8), 0 0 40px rgba(0, 191, 255, 0.6), 0 0 60px rgba(0, 191, 255, 0.4);
  z-index: 9999;
}
.header nav a {
  flex-shrink: 0;
  white-space: nowrap;
}
.dropdown {
  position: relative;
  display: inline-block;
}

/* Enhanced dropdown animation: slide and fade smoothly */
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 20;
  flex-direction: column;
  border-radius: 8px;
}

.dropdown-content a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #111;
  border-radius: 8px;
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}