body {
  width: 100%;
  height: 100px;
}

/* Top Bar */
.topbar {
  background: linear-gradient(to right, #004a92 60%, #f2a900 40%);
  color: #fff;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 500;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  color: #fff;
}

.topbar span {
  font-size: 15px;
}

/* Main Navbar */
.main-navbar {
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

/* Logo */
.logo {
  height: 100px;
  margin-right: 10px;
}
.brand-text {
  font-size: 22px;
  font-weight: 600;
  color: #004a92;
}

/* Nav Links */
.nav-link {
  font-size: 16px;
  font-weight: 500;
  margin: 0 8px;
  color: #333 !important;
}

.nav-link.active,
.nav-link:hover {
  color: #004a92 !important;
}

/* Search Button */
.search-btn {
  background: #004a92;
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.search-btn i {
  font-size: 18px;
}


/* Responsive */
@media (max-width: 768px) {
  .brand-text {
    font-size: 18px;
  }
  .search-btn {
    margin-top: 10px;
  }
}

/* Footer css start here */
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 40px;
}

.hero-bg {
  background: url("../Gallery/Dhokla.png") no-repeat center center/cover; /* ✅ path fix */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.85);
  background-attachment: fixed;
}

/* Product Card */
.product-card{
  width: 100%;
  height: auto;
}

.product-card:hover {
  transform: translateY(-5px);
}
.certificates-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.certificates-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: bold;
}

.certificates-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #666;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certificate-image {
  width: 100%;
  height: 300px;
  object-fit: contain; /* besan image properly fit */
  background: #f4f4f4;
  /*   */
}

.certificate-content {
  padding: 20px;
}

.certificate-content h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 6px;
}

.certificate-content p {
  font-size: 1rem;
  color: #555;
}

.certificate-date {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #89c55b;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .certificates-title {
    font-size: 1.8rem;
  }
  .certificate-content h3 {
    font-size: 1.05rem;
  }
}

.product-card img {
  width: 100px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.product-card h6 {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 10px 20px;
  }

  .product-card img {
    width: 80px;
  }

  .product-card h6 {
    font-size: 13px;
  }
}
/* ===== Hover Image Section ===== */
.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 450px;
}

.image {
  width: 100%;
  height: 510px;          /* 👉 जरूरत के हिसाब से बदल सकते हो */
  object-fit: cover;      /* image crop होकर fit हो जाएगी */
  transition: 0.4s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* हल्का dark background */
  opacity: 0;
  transition: 0.4s ease;
}

.overlay h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

/* Hover effect */
.image-container:hover .image {
  filter: blur(3px);
  transform: scale(1.05);
}

.image-container:hover .overlay {
  opacity: 1;
}

/* ===== New Section (Text + 3 Images) ===== */
.gram-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 50px auto;
  padding: 20px;
  margin-left: 5%;
}

/* Left side text */
.gram-text {
  flex: 1;
}

.gram-text span {
  color: rgb(66, 147, 66);
}

.gram-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.gram-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.gram-text p span {
  color: rgb(227, 8, 8);
}

/* Right side images */
.gram-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 20%;
}

.gram-images img {
  width: 50%;
  height: 150px; /* छोटी images */
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .gram-section {
    flex-direction: column;
    margin-left: 0;
  }

  .gram-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .gram-images img {
    width: 45%;
    height: auto;
  }

  .overlay h2 {
    font-size: 2.5rem;
  }

  .gram-text h2 {
    font-size: 24px;
  }

  .gram-text p {
    font-size: 16px;
  }
}
/* ===== General Section Styling ===== */
.contact-section {
  padding: 3rem 1rem;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

/* ===== Container ===== */
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

/* ===== Left Side - Enquiry Form ===== */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-form .highlight {
  color: #f9a825; /* Yellow highlight for "Quick" */
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input,
.form-row select,
textarea {
  flex: 1;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

textarea {
  width: 100%;
  margin-bottom: 1rem;
}

.btn-submit {
  background: #003366;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #001f4d;
}

/* ===== Right Side - Contact Info ===== */
.contact-info {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info .icon {
  font-size: 1.5rem;
  color: #003366;
  flex-shrink: 0;
}

.contact-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.product-section {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}



/* Header */
.product-header {
  margin-bottom: 50px;
}

.product-subtitle {
  font-size: 22px;
  color: #7aa35a;
  font-style: italic;
  letter-spacing: 1px;
}

.product-title {
  font-size: 34px;
  font-weight: 800;
  margin: 10px 0;
  color: #222;
  text-transform: uppercase;
}

.product-text {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  object-fit: contain;
}

.product-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 700;
}

.product-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button */
.product-btn {
  padding: 10px 18px;
  border: none;
  background: #7aa35a;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-btn:hover {
  background: #5e8c46;
}

/* Responsive */
@media (max-width: 768px) {
  .product-title {
    font-size: 26px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .product-card img {
    width: 140px;
    height: 140px;
  }
}
.about-section {
  padding: 70px 20px;
  background: #fdfdfd;
  text-align: center;
}



/* Header */
.about-header {
  margin-bottom: 50px;
}

.about-subtitle {
  font-size: 35px;
  color: #7aa35a;
  letter-spacing: 1px;
  font-weight: bolder;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0;
  color: #222;
  text-transform: uppercase;
}

.about-text {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

/* Main About (Two-Column Layout) */
.about-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.about-main span {
  color: #7aa35a;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content span {
  color: #7aa35a;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.about-content h2 span {
  color: #7aa35a;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.about-main-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-main-img img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-main {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== Hover Image Section ===== */
.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 450px;
}

.image {
  width: 100%;
  height: 510px;          /* height adjust कर सकते हो */
  object-fit: cover;      /* image crop होकर fit हो जाएगी */
  transition: 0.4s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* हल्का dark background */
  opacity: 0;
  transition: 0.4s ease;
}

.overlay h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

/* Hover Effect */
.image-container:hover .image {
  filter: blur(3px);
  transform: scale(1.05);
}

.image-container:hover .overlay {
  opacity: 1;
}

/* ===== New Section (Text + Images) ===== */
.spices-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 50px auto;
  padding: 20px;
  margin-left: 5%;
}

/* Left Side Text */
.spices-text {
  flex: 1;
}

.spices-text span {
  color: rgb(66, 147, 66);
}

.spices-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.spices-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.spices-text p span {
  color: rgb(227, 8, 8);
}

/* Right Side Images */
.spices-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 20%;
}

.spices-images img {
  width: 50%;
  height: 150px; /* छोटी images */
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .spices-section {
    flex-direction: column;
    text-align: center;
    margin-left: 0;
  }

  .spices-images {
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
    gap: 10px;
  }

  .spices-images img {
    width: 30%;
    height: auto;
  }

  .overlay h2 {
    font-size: 2.5rem;
  }
}
/* ===== Hover Image Section ===== */
.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 450px;
}

.image {
  width: 100%;
  height: 510px;          /* apni marzi se height change kar sakta hai */
  object-fit: cover;       /* image crop hoke fit ho jayegi */
  transition: 0.4s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* halka dark background */
  opacity: 0;
  transition: 0.4s ease;
}

.overlay h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

/* Hover effect */
.image-container:hover .image {
  filter: blur(3px);
  transform: scale(1.05);
}

.image-container:hover .overlay {
  opacity: 1;
}

/* ===== New Section (Text + Images) ===== */
.wheat-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 50px auto;
  padding: 20px;
  margin-left: 5%;
}

/* Left side text */
.wheat-text {
  flex: 1;
}

.wheat-text span {
  color: rgb(66, 147, 66);
}

.wheat-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.wheat-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.wheat-text p span {
  color: rgb(227, 8, 8);
}

/* Right side images */
.wheat-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 20%;
}

.wheat-images img {
  width: 50%;
  height: 150px; /* choti choti images */
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .wheat-section {
    flex-direction: column;
    margin-left: 0;
  }

  .wheat-images {
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .wheat-images img {
    width: 45%;
    height: 120px;
    margin-bottom: 10px;
  }

  .wheat-text h2 {
    font-size: 24px;
    text-align: center;
  }

  .wheat-text p {
    font-size: 16px;
    text-align: center;
  }

  .overlay h2 {
    font-size: 2.5rem;
  }
}

.footer {
  background: linear-gradient(135deg, #f6b93b, #ffdd59);
  color: #222;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  font-size: 14px;
  line-height: 1.8;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #222;
  display: block;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-col p {
  color: #444;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-col ul li a:hover {
  color: #000;
  padding-left: 5px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  background: #222;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 16px;
}

.social-links a:hover {
  background: #fff;
  color: #222;
  border: 1px solid #222;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #444;
}

.footer-bottom p span {
  color: orange;
}

.footer-bottom a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebc57;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .social-links {
    justify-content: center;
  }
}

/* Google Translate Box */
#google_translate_element {
  height: 54px !important;
  width: 219px !important;
  border-radius: 9px !important;
  padding: 8px !important;
}

.goog-te-combo {
  width: 100% !important;
  height: 38px !important;
  border-radius: 8px !important;
  border: 1px solid #888 !important;
  padding: 5px 10px !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
}

/* Hide extra Google branding */
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
  font-size: 12px;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  display: none;
}
