    /* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {

      background: #f9f9f9;
      padding-top: 100px; /* for fixed navbar space */
    }

    /* Navbar */
    header {
      width: 100%;
      background: #3d4d32; /* Dark green */
      padding: 15px 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      height: 165px;
      font-family: poppins, sans-serif;
      font-weight: 100;
      font-size: 16px;
      letter-spacing: 0.5px;
      line-height: 21px;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      width: 100%;
      max-width: 1200px;
      position: relative;
    }

    .nav-left,
    .nav-right {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .nav-left a,
    .nav-right a {
      text-decoration: none;
      color: #f5e6d3;
      font-size: 14px;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    .nav-left a:hover,
    .nav-right a:hover {
      color: #d4af37; /* Gold */
    }

    /* Logo */
    .logo img {
      width: 120px;
      display: block;
      margin: 0 auto 5px;
    }
    .logo span {
      display: block;
      font-size: 12px;
      color: #f5e6d3;
      text-align: center;
      letter-spacing: 1px;
    }

    /* Dropdown Base (Desktop) */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background: #3d4d32;
      min-width: 180px;
      display: none;
      flex-direction: column;
      border-radius: 6px;
      padding: 10px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .dropdown-content a {
      padding: 10px 15px;
      text-decoration: none;
      color: #f5e6d3;
      font-size: 14px;
      display: block;
    }
    .dropdown-content a:hover {
      background: rgba(212, 175, 55, 0.2);
      color: #d4af37;
    }
    .dropdown:hover .dropdown-content {
      display: flex;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 30px;
      z-index: 1100;
    }
    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #f5e6d3;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* Side Menu (Mobile) */
    .side-menu {
      position: fixed;
      top: 0;
      left: -260px;
      width: 250px;
      height: 100%;
      background: #3d4d32;
      display: flex;
      flex-direction: column;
      padding: 80px 20px 20px;
      gap: 20px;
      transition: left 0.3s ease;
      z-index: 1050;
    }
    .side-menu.show {
      left: 0;
    }
    .side-menu a {
      color: #f5e6d3;
      text-decoration: none;
      font-size: 16px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .side-menu a:hover {
      color: #d4af37;
    }

    /* Mobile Dropdown */
    .side-dropdown {
      display: none;
      flex-direction: column;
      padding-left: 15px;
    }
    .side-dropdown a {
      border: none;
      font-size: 14px;
    }

    .dropdown-toggle {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Mobile Only */
    @media (max-width: 768px) {
      .nav-left, .nav-right { display: none; }
      .menu-toggle { display: flex; }
      header{
        height: 90px;
      }
       .logo img{
        width: 80px;
       }
    }



    /* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* background: #ffffffdc; */
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.3); */
  z-index: 1000;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}


 

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      margin-top: -0px;
    }

    .slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(45, 65, 45, 0.4);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      z-index: 1;
    }

    .hero-text {
      max-width: 75%;
      color: #fff;
      font-style: italic;
      text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }

    .hero-text h1 {
      font-size: 96px;
      line-height: 1.4;
      font-weight: 200;
      letter-spacing: 4px;
      font-family: "Tangerine", cursive;
    }

    .hero-image {
      max-width: 45%;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 2;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.5;
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      opacity: 1;
      background: #d4af37;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
      }
      .hero-text, .hero-image {
        max-width: 100%;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-image {
        margin-top: 20px;
      }
    }

     

    .categories {
      text-align: center;
      padding: 60px 20px;
      background: #3d4d32; 
      color: #fff;
    }

    .categories h2 {
      font-size: 26px;
      color: #C59500; 
      margin-bottom: 5px;
      font-family: 'Lora', serif;
  
      font-weight: 100;
      letter-spacing: 1.5px;
    }

    .categories p {
      font-size: 16px;  
      color: #ddd;
      margin-bottom: 40px;
      font-family: 'Lora', serif;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .category-grid {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: 0 auto;
    }

    .category-item {
      background: transparent;
      text-align: center;
      flex: 1 1 180px;
      max-width: 200px;
    }

    .category-item img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
      margin-bottom: 10px;
    }

    .category-name {
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #fff;
    }








/* Hero Section */
.hero-section2 {
    height: 80vh;
    display: flex;
    justify-content: flex-end; /* push content to right on desktop */
    align-items: center;
    background: url('img/Rectangle 195.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 0 40px; /* optional padding from right */
    z-index: -1;
}

/* Text Container */
.hero-content2 {
  color: #fff;
  max-width: 500px;
  margin-right: 18%;
}

/* Mobile Responsive - Center align */
@media (max-width: 768px) {
  .hero-section2 {
    justify-content: center; /* move content to center */
    text-align: center;
    padding: 20px;
    margin-right: 0;
  }

  .hero-content2 {
    text-align: center;
  }
}



.hero-content .text-container {
    z-index: 1;
}

.hero-content2 h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 0.5px;
    color: #ffffffd2;
    /* font-weight: bold; */
    margin-bottom: 10px;
    font-family: 'Allura', cursive;
}



/* Styling for the content text */
.hero-content2 p:first-child {
    font-size: 32px;
    font-weight: bold;
}

.hero-content2 p:last-child {
    font-size: 30px;
    font-style: italic;
    margin-top: 10px;
}



/* about. section.   */



    .about-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-section h2 {
      font-size: 26px;
      color: #C59500; /* Copper/Gold shade */
      margin-bottom: 10px;
      font-weight: 400;
      font-family: 'Lora', serif;
      letter-spacing: 0.5px;
    }

    .about-section h3 {
      font-size: 16px;
      font-weight: 400;
      color: #444;
      margin-bottom: 40px;
      font-family: 'Lora', serif;
      letter-spacing: 0.5px;
    }

    .about-images {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .about-images img {
      width: 250px;
      height: auto;
      border-radius: 4px;
      background: #000;
      padding: 10px;
    }

    .about-text {
      font-size: 14px;
      line-height: 1.7;
      color: #444;
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: justify;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;

    }

    .about-button {
      display: inline-block;
      padding: 5px 30px;
      background: #d4af37; /* Gold */
      color: #fff;
      font-weight: 100;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      text-decoration: none;
      /* border-radius: 4px; */
      transition: background 0.3s ease;
    }

    .about-button:hover {
      background: #b98a28; /* Darker gold */
    }

    /* prdoduct  section  */

   body {

      margin: 0;
      padding: 0;
      background: #fff;
      text-align: center;
    }


    h2 {
      color: #b8860b;
      margin-top: 30px;
      font-family: 'Lora', serif;
      font-weight: 500;
      font-size: 33px;
      letter-spacing: 0.5px;

    }

    p.subtitle {
      font-size: 16px;
      color: #000000;
      margin-bottom: 40px;
      font-family: 'Lora', serif;
      line-height: 0.5px;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: auto;
      padding: 0 20px 50px;
    }

    .product {
      text-align: center;
    }

    .product img {
      width: 350px;
      height: auto;
      /* border-radius: 6px; */
      box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    }

    .product p {
      margin-top: 10px;
      font-size: 15px;
      color: #000000;
      font-family: poppins, sans-serif;
      font-weight: 400;
      line-height: 21px;
      letter-spacing: 0.5px;

    }



    /* banner section (banner image 2 image scrtion )  */



    .banner-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .banner {
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .banner-text {
      position: absolute;
      top: 20px;
      left: 20px;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
    }

    .banner-text.right {
      left: auto;
      right: 20px;
      top: 20px;
      text-align: right;
      color: #333; /* Dark text on light bg */
    }




    /* testminial section  */




.testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: fit-content;
  margin: 0 auto;
  padding: 80px 250px;
  gap: 40px;
  background: #dadadac8;
  box-sizing: border-box;
  
}

/* Left Content */
.testimonial-text h3 {
  color: #b8860b;
  margin: 20px 0 10px 0;
  text-align: start;
}

.testimonial-text h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
  text-align: start;
}

.testimonial-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  text-align: start;
}

.testimonial-text strong {
  font-weight: 600;
}

/* Navigation Dots */
.testimonial-nav {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.testimonial-nav button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.testimonial-nav ,
.testimonial-nav button:hover {
  color: #b8860b;
}

/* Right Image with Arch Shape */
.testimonial-image {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border: 2px solid #333;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
  }

  .testimonial-text {
    order: 2;
    text-align: center;
  }

  .testimonial-image {
    order: 1;
    max-width: 250px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }

  .testimonial-nav {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .testimonial-section {
    padding: 40px 15px;
    gap: 20px;
  }

  .testimonial-text h3 {
    font-size: 20px;
  }

  .testimonial-text h4 {
    font-size: 14px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-image {
    max-width: 200px;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
  }
}




    /* footer section  */


    /* footer {
        background-color: #3e4f36; 
        font-family: poppins, sans-serif;
        color: #fff;
        font-size: 14px;
        height: 150px;
        display: flex;
        line-height: 21px;             
        justify-content: center;   
        align-items: center;      
        text-align: center;       
    } */
