:root {
    --light-brown: #8b7c61;
    --medium-brown:#714c1fed;
    --dark-brown: #603813;
    --white: #ffffff;
  }

  
  html {
    scroll-behavior: smooth;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* HEADER STRUCTURE */
  .top-header {
    display: flex;
    width: 100%;
    height: 110px;
  }
  
  /* LEFT BROWN BAR */
  .left-box {
    width: 80px;
    background-color: var(--light-brown);
  }
  
  .logo-and-text {
    display: flex;
    align-items: center;
    flex: 1;
    background-color: var(--light-brown);
    padding: 0 20px;
     gap: 150px; 
     flex-wrap: wrap;  
  }
  .text-section {
    color: white;
    text-align: center;
  }
  
  /* LOGO SECTION — just right of brown box */
  .logo-section {
    margin-right: 40px;
  }
  
  .logo-section img {
    height: 130px;
    width: 160px;
  }

  .text-section h1 {
    font-size: 40px;
    font-weight: 60;
  }
  
  .text-section p {
    font-size: 15px;
    margin-top: 10px;
  }
  
  /* BOTTOM BAR */
  .bottom-bar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-brown);
    background-color: white;
    padding: 10px 30px;
  }
  
  .gst {
    margin-left: 50px;
    font-size: 15px;
    font-weight: 20px;
  }
.navbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navbar a {
    color:black;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--dark-brown);
}

/* Hamburger Icon - Initially hidden */
.hamburger {
    display: none;
    font-size: 20px;
    color:black;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top-header {
      height: 90px; /* Reduced height for mobile */
      padding: 0 0; /* Adjust padding */
    }
  
    .logo-and-text {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
      background-color: var(--light-brown);
      padding: 0 10px;    
    }
    .logo-section{
      order: 0;
      flex-shrink: 0;
      margin-right: 10px;
    }
  
    .logo-section img {
      height: 95px; /* Reduced logo height for mobile */
      width: 110px; /* Reduced logo width for mobile */
    }
    .text-section{
      order: 1;
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 8px;
      color: black;
      flex-wrap: wrap;
  
    }
  
    .text-section h1 {
      margin: 0;
      font-size: 12px; /* Reduced font size for mobile */
      color: black;
      
    }
  
    .text-section p {
      margin: 0;
      font-size: 8px;
      color: black; /* Reduced font size for mobile */
    }
  
    .bottom-bar {
      height: 50px; /* Reduced bottom bar height */
      padding: 5px 20px; /* Adjust padding for mobile */
    }
  
    .gst {
      font-size: 13px; /* Smaller font size for mobile */
    }
  
  .navbar {
      display: none;
      width: 100%;
      height: 300px;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 130px;
      left: 0;
      background-color:var(--light-brown);
      padding: 10px 0;
      z-index: 10;
  }

  .navbar a {
      width: 100%;
      text-align: center;
      padding: 10px 0;
  }

  .hamburger {
      display: block;
  }

  .navbar.active {
      display: flex;
  }
}
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-top: 50px;
    overflow: hidden;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  
  .fade {
    animation: fade 1.5s ease-in-out;
  }
  
  @keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
  }
  
  
  .dots-container {
    text-align: center;
    padding: 10px;
  }
  
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: var(--light-brown); 
  }
  @media only screen and (max-width: 600px) {
    .slideshow-container {
      padding-top: 30px;
      z-index: 1;
    }
  
    .dot {
      height: 12px;
      width: 12px;
      margin: 0 3px;
    }
  
    .dots-container {
      padding: 8px;
    }
  }
  .product-section {
     max-width: 1600px; 
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }
  .product-tabs {

    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .tab {
    color: #333;
    width: 250px;
    height: 80px;
    padding: 10px 20px;
    background: #ccc;
    font-size: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .tab.active {
    background-color: var(--dark-brown);
    color: white;
  }
  
  .products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-brown);

  }
  
  .products-group {
    padding: 20px;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .products-group.active {
    display: flex;
  }
  
  .product-card {
    background: white;
    width: 400px;
    height: 450px;
    border-radius: 12px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    padding: 10px;
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  
  .product-card h4 {
    margin: 10px 0 5px;
  }
  
  .product-card p {
    font-size: 14px;
    color:black;
    padding: 0 10px;
  }
  
  .read-more {
    display: inline-block;
    margin: 10px auto 15px;
    padding: 6px 12px;
    background: #8b4513;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
  }
  
  @media (max-width: 1024px) {
    .tab {
      color: #333;
      width: 200px;
      height: 70px;
      font-size: 18px;
    }
  
    .product-card {
      width: 200px;
      height: 300px;
    }
  
    .product-card img {
      height: 270px;
    }
  
    .product-card h4 {
      font-size: 16px;
    }
  
    .product-card p {
      font-size: 13px;
    }
  
    .read-more {
      font-size: 13px;
      padding: 5px 10px;
    }
  }
  
  @media (max-width: 768px) {
    .tab {
      width: 160px;
      height: 60px;
      font-size: 16px;
    }
  
    .product-card {
      width: 280px;
      height: 400px;
    }
  
    .product-card img {
      height: 230px;
    }
  
    .product-card h4 {
      font-size: 15px;
    }
  
    .product-card p {
      font-size: 12px;
    }
  
    .read-more {
      font-size: 12px;
      padding: 5px 10px;
    }
  }
  
  @media (max-width: 480px) {
    .tab {
      width: 140px;
      height: 50px;
      font-size: 14px;
    }
  
    .product-card {
      width: 80%;
      height: 250px;
    }
  
    .product-card img {
      height: 160px;
    }
  
    .product-card h4 {
      font-size: 14px;
    }
  
    .product-card p {
      font-size: 12px;
    }
  
    .read-more {
      font-size: 12px;
      padding: 4px 8px;
    }
  }
  /* Global Animation Class */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
.why-choose-us,
.testimonials,
.cta,
.footer {
  padding: 60px 20px;
  text-align: center;
}

/* Section Headings */
.why-choose-us h2,
.testimonials h2,
.cta h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark-brown);
}
.features-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-card {
  width: 300px;
  background: var(--light-brown);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .feature-card {
    width: 90%;
  }
}


/* Testimonials */
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  width: 300px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  transition: transform 0.3s ease;
}

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

.testimonial h5 {
  margin-top: 10px;
  font-weight: bold;
}

/* CTA */
.cta p {
  font-size: 18px;
  margin-top: 10px;
  color: #333;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  background: var(--medium-brown);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: var(--dark-brown);
}

.footer {
  background-color: var(--medium-brown);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .features, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature,
  .testimonial {
    width: 90%;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 16px;
  }
}
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-section button {
  background-color: var(--dark-brown);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-section button:hover {
  background-color: var(--medium-brown);
}

#formStatus {
  margin-top: 10px;
  font-size: 14px;
  color: green;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

