 body, html {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      scroll-behavior: smooth;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    /* Hero Overlay */
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      z-index: 1;
    }

    .hero-overlay h1 {
      font-size: 3rem;
      margin: 0;
      animation: fadeInDown 1.5s ease;
    }

    .hero-overlay p {
      margin: 20px 0;
      font-size: 1.2rem;
      animation: fadeInUp 1.5s ease;
    }

    .cta-btn {
      display: inline-block;
      margin: 10px;
      padding: 15px 30px;
      background: #ff3366;
      color: white;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 30px;
      transition: background 0.3s ease;
    }

    .cta-btn:hover {
      background: #e62e5c;
    }

    /* Simple Fade Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }

     .carousel-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-item {
    min-width: 250px;
    margin: 0 10px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }

  .carousel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .carousel-item h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
  }

  .carousel-item p {
    margin: 0 0 15px;
    color: #555;
    font-weight: bold;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
  }

  .carousel-btn:hover {
    background: rgba(0,0,0,0.8);
  }

  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }

  /*product section */
   .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }

  .product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .product-card h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
  }

  .product-card .price {
    color: #555;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .product-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff3366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    margin-bottom: 20px;
  }

  .product-btn:hover {
    background: #e62e5c;
  }

.contactWrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}
.contactSections{
  flex:1; 
  width:50%;
  box-sizing: border-box;
}

/*product page*/
/* Header */
header {
  background: #111;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff3366;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff3366;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 15px;
    border-radius: 5px 0 0 5px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: block;
  }

  nav.show {
    display: flex;
  }
}

/* Left: Product Images */
    .product-images {
      flex: 1;
      max-width: 500px;
      min-width: 200px;
    }
    .main-image {
      width: 100%;
      border-radius: 10px;
    }
    .thumbnails {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }
    .thumbnails img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 5px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border 0.3s;
    }
    .thumbnails img:hover {
      border: 2px solid #ff3366;
    }

    /* Right: Product Info */
    .product-info {
      flex: 1;
      min-width: 300px;
    }
    .product-info h1 {
      margin: 5px;
      margin-bottom: 5px;
      font-size: 45px;
    }
    .price {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ff3366;
      margin: 5px;
      margin-bottom: 5px;
      font-size: 40px;
    }
    .options {
      margin-bottom: 20px;
    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    select, input[type="number"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    .buttons {
      display: flex;
      gap: 15px;
    }
    .buttons button {
      flex: 1;
      padding: 12px;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }
    .add-cart {
      background: #222;
      color: #fff;
    }
    .add-cart:hover {
      background: #333;
    }
    .buy-now {
      background: #ff3366;
      color: #fff;
    }
    .buy-now:hover {
      background: #e62e5c;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      nav ul {
        flex-direction: column;
        gap: 10px;
        background: #111;
        padding: 10px;
      }
    }