/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  h1, h2 {
    color: #222;
    text-align: center;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  /* Header & Hamburger */
  .menu-icon {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
  
  .side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background-color: #333;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: 0.3s ease;
    z-index: 999;
  }
  
  .side-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid #444;
  }
  
  .side-menu a:hover {
    background-color: #444;
  }
  
  /* Hero Section */
  .hero {
    background: url('banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 12px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Product Swipe */
  .product-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-snap-type: x mandatory;
  }
  
  .product-card {
    flex: 0 0 auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    min-width: 200px;
    text-align: center;
  }
  
  /* Testimonials Swipe */
  .testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
  }
  
  .testimonial {
    flex: 0 0 auto;
    background: #fff5e1;
    border-left: 4px solid #ff9800;
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
    scroll-snap-align: start;
    font-style: italic;
  }
  
  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  input, textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  button {
    background: #ff7043;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  button:hover {
    background: #e64a19;
  }
  
  /* Location Section */
  .map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .side-menu {
      width: 80%;
    }
  }
  