* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
  }

  html {
    scroll-behavior: smooth;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
/* HEADER - Enhanced */
header {
position: fixed;
width: 100%;
top: 0;
background: rgba(18, 18, 18, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 40px;
}

.logo-wrap {
display: flex;
align-items: center;
gap: 12px;
color: #ff6600;
font-size: 24px;
font-weight: bold;
}

.logo-wrap img {
height: 50px;
transition: transform 0.3s;
}
.logo-wrap img:hover {
transform: scale(1.1);
}

.navbar ul {
list-style: none;
display: flex;
gap: 30px;
}

.navbar a {
color: #f0f0f0;
font-weight: 600;
transition: color 0.3s;
}

.navbar a:hover {
color: #ff6600;
}

.hero-full-bg {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}

.hero-bg-img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.7);
}

.hero-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background: rgba(20, 20, 20, 0.5);
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(10px);
color: #fff;
}

.hero-overlay h1 {
font-size: 64px;
color: #ff6600;
margin-bottom: 20px;
}

.hero-overlay p {
font-size: 20px;
margin-bottom: 30px;
}

.hero-overlay button {
padding: 14px 30px;
background-color: #ff6600;
border: none;
border-radius: 30px;
color: white;
cursor: pointer;
font-weight: bold;
}




  .section {
    padding: 80px 50px;
    text-align: center;
  }

  .section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff6600;
  }

  .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .product-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s;
  }

  .product-card:hover {
    transform: translateY(-10px);
  }

  .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .product-card h3 {
    margin-bottom: 10px;
    color: #f5f5f5;
  }

  .product-card p {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .product-card button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .product-card button:hover {
    background-color: #ffa84c;
  }

  .promo {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 50px;
  }

  .promo img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }

  footer {
    background: #1c1c1c;
    padding: 60px 40px;
    color: #ccc;
    text-align: center;
  }

  footer h2 {
    font-size: 30px;
    color: #ff6600;
    margin-bottom: 20px;
  }

  footer p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }

  @media(max-width: 768px) {
    .hero-content h1 {
      font-size: 40px;
    }
    .promo {
      flex-direction: column;
      gap: 20px;
    }
    .navbar ul {
      flex-direction: column;
      gap: 10px;
    }
  }
