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


.custom-line {
  height: 1.3px;
  background: linear-gradient(to right, #919192be, #abadac);
  width: 95%;
  margin: 50px auto;
  border-radius: 60px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color:#cb4810;
  
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-nav {
  background-color: #004d00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
}

.pr{
  transition-duration: 300ms;
  transition-timing-function: ease-in;
}

html {
  scroll-behavior: smooth;
}


/* Hero Section */
.hero {
  background-color: #a0aaba;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  height: 90vh;
  background-image: url(heroimg.png);
  background-size: cover;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(63, 63, 63);
  
}

.hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-main {
  margin-top: 1.5rem;
  display: inline-block;
  background-color: #ff9532;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 4px 4px 3px gray, -4px 4px 3px gray;
}


/* About Section */
.about {
  padding: 10rem 1rem;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-content img {
  max-width: 500px;
  width: 117%;
  border-radius: 10px;
}

.displays{
  display: flex;
}


.about-content .text {
  flex: 1;
  min-width: 280px;
  
}

.about h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 2rem;
  padding-left: 9rem;   /* Desktop ke liye balanced left */
  color: #1a1a1a;
}


  .about-content img {
    width: 90%;
    max-width: 550px;
  }




/* Responsive */
@media (max-width: 768px) {
  .about h2 {
    text-align: left;   /* mobile pe center dikhane ke liye */
    padding-left: 1.2rem;      /* left padding hata diya */
  }

  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}













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

header {
  background-color: white;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
}

.btn-nav {
  background-color: #ff7a00;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url(heroimg.jpg) no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}



.btn-hero {
  background-color: #ff7a00;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  nav.show {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

 
}




/* Spice Gallery */

.spice-gallery {
  padding: 1rem 0;
  background-color: #fff;
}

.spice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.spice-item {
  flex: 1 1 45%;
  max-width: 550px;
}

.spice-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  
}
.spice-gallery .spice-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(-5px);
}



/* Responsive stacking */
@media (max-width: 768px) {
  .spice-item {
    flex-basis: 100%;
  }
}


/* Products */

.latest-products {
  padding: 5rem 1rem;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
 

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.product-grid {
  overflow: visible;
  max-height: none; /* Show approx. 7–8 products */
  transition: max-height 0.5s ease;
}

.product-grid.expanded {
  max-height: 5000px; /* Large enough to show all products */
}



.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-item {
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center;
  text-align: center;
}

.product-item img {
  width: 250%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}


.product-item p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}



.view-toggle-button {
  padding: 10px 25px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-toggle-button:hover {
  background-color: #004999;
}



/* ---------------- Mobile (<769px) ---------------- */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 products per row */
    gap: 1rem; /* thoda kam gap */
  }

  .product-item {
    padding: 1rem; /* size thoda chhota */
  }

  .product-item img {
    max-width: 120px; /* image chhoti hogi */
    width: 100%;
  }

  .product-item p {
    font-size: 1rem; /* text bhi thoda compact */
  }
}




/* Product Enquiry Button */

.enquiry-button {
  margin-top: 1rem;
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.enquiry-button:hover {
  background-color: #e65c00;
}

.product-item.hidden {
  display: none;
}

.view-toggle-container {
  text-align: center;
  margin: 20px 0 40px;
}







/* Why Choose Us Section */

.why-choose-us {
  background-color: #fff;
  padding: 7rem 1rem;
}

.why-choose-us .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.why-text {
  flex: 1 1 350px;
}

.why-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.why-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-text li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
}

.check-icon {
  color: green;
  margin-right: 0.5rem;
  font-weight: bold;
}

.why-image {
  flex: 1 1 300px;
  text-align: center;
}

.why-image img {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-banner .banner-text {
    font-size: 1.4rem;
  }
  .why-text h2 {
    font-size: 1.4rem;
  }
}


/* Trust About Company */

.trust-section {
  background-color: #f8fafa;
padding: 90px 20px;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  color: #1c4421;
  margin-bottom: 2rem;
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.trust-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 2rem;
  color: #1c4421;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.trust-description {
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}


/* testimonials 

.testimonials-section {
  background-color: #f3f2f2f0;
  text-align: center;
  padding: 4rem 1rem;
}

.testimonials-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.testimonial-slider blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #374151;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

*/


/* Responsive */
@media (max-width: 640px) {
  .highlight {
    flex-direction: column;
    text-align: center;
  }

  .highlight img {
    width: 80px;
    height: 80px;
  }
}


/* Enquiry */

.enquiry-section {
  background-color: #fdfdfd;
  padding: 93px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.enquiry-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.enquiry-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.enquiry-container p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00aa88;
  outline: none;
}

button[type="submit"] {
  background-color: #00aa88;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #008a6f;
}

/* Responsive */
@media (max-width: 600px) {
  .enquiry-container {
    padding: 25px 20px;
  }

  .enquiry-container h2 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }

  button[type="submit"] {
    width: 100%;
  }
}



/* contact us */


.contact-us {
  background-color: #ecececf7;
  padding: 70px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;

  /* Fit to full window height without affecting content */
  min-height: 100vh;
  align-items: center;
 
}





.contact-container {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 👈 Move this here */
}

.contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.contact-us h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.company-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #444;
}

.address, .email {
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.email a {
  color: #0066cc;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
  }

  .contact-us h2 {
    font-size: 1.5rem;
  }

  .company-name, .address, .email {
    font-size: 0.95rem;
  }
}


/* Footer */

.site-footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
   border-radius: 30%;
}


.footer-left h3 {
  margin: 10px 0 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
}


.social-icons a {
    text-decoration: none;   /* underline hat gayi */
    margin: 5px 2px;          /* icons ke beech gap */
    display: inline-block;   /* line break nahi aayegi */
}

.social-icons img {
    vertical-align: middle;  /* image sahi line me rahe */
}

