/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navbar */
.navbar {
  background: #111;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.navbar a {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #555;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  background: url('images/hero-meat.jpg') no-repeat center center/cover;
  height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 420px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #b30000;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e60000;
}

.section h3 {
  font-size: 1rem;
  margin-top: 2rem
  margin-bottom: 1rem;
  padding-top: 1rem;
  color: #e60000;
}

.section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section.dark {
  background-color: #f7f7f7;
}

/* Products Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Features */
.features {
  max-width: 700px;
  margin: auto;
  text-align: left;
  padding: 0 20px;
}

.features li {
  padding: 10px 0;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .features {
    text-align: center;
  }
}
.floating-buttons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a img:hover {
  transform: scale(1.1);
}
/* Callback Button */
.callback-button {
  position: fixed;
  right: 20px;
  bottom: 360px;
  z-index: 9999;
  /* Callback Button updated  */
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.callback-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.callback-button img:hover {
  transform: scale(1.1);
}

/* Popup Form Styles */
.callback-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.callback-form .form-container {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
}

.callback-form .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.callback-form button {
  background: #004080;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.callback-form button:hover {
  background: #0066cc;
}
/* Floating Button with Text Label */
.floating-buttons a,
.callback-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

.floating-buttons a span,
.callback-button span {
  margin-top: 5px;
}
/* Floating Button Labels - Green & Bold */
.floating-buttons a,
.callback-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.floating-buttons a span,
.callback-button span {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #28a745; /* Green color */
}

/* Language Buttons in Hero Section */
.lang-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.lang-btn {
  background: #0066cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.lang-btn:hover {
  background: #004080;
}
@media (max-width: 768px) {
  .callback-button {
    bottom: 100px; /* Move it up on smaller screens */
  }
}
@media (max-width: 768px) {
  .overlay {
    margin-top: 80px;
  }
}
/* Our Brands Section */
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;   /* ye change kiya to sab line me aa gya products */
  margin: 0 auto;
}

.brands-grid img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.brands-grid img:hover {
  transform: scale(1.05);
}
/* Our Products Section */
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  max-width:1200;
  margin: 0 auto;
}

.brand-item {
  text-align: center;
  max-width: 300px;
   margin-bottom: 20px;
}

.brand-item img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.brand-item img:hover {
  transform: scale(1.05);
}

.brand-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  font-size: 20px;
}
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #004080;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.read-more-btn:hover {
  background-color: #0066cc;
}

/* Our Products Section */
.products-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.products-grid img:hover {
  transform: scale(1.05);
}
/* Our Brands Section */
.products-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  max-width:1200;
  margin: 0 auto;
}

.products-item {
  text-align: center;
  max-width: 300px;
   margin-bottom: 20px;
}

.products-item img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.products img:hover {
  transform: scale(1.05);
}

.products-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  font-size: 20px;
}

.product-title {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.product-desc {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
  line-height: 1.4;
}
