 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body, html {
      height: 100%;
      width: 100%;
    }

    /* Background Section */
    .hero {
      position: relative;
      background: url(img/animal-cattle-feed-500x500.webp)no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      text-align: left;
      padding: 40px;
    }

    /* Overlay */
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      height: 100%; width: 100%;
      background: rgba(0,0,0,0.6);
    }

    /* Logo + Company Name */
    .logo {
      position: absolute;
      top: 20px;
      left: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }

    .logo img {
      height: 80px;
      width: 80px;
    }

    .logo span {
      font-weight: bold;
      font-size: 1rem;
      color: white;
    }

    /* Content */
    .content {
      position: relative;
      max-width: 600px;
      z-index: 1;
    }

    .content h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .content p {
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .btn {
      display: inline-block;
      background: #e63946;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    .btn:hover {
      background: #b91c1c;
    }

    /* Product Image (Right side) */
    .product-img {
      position: relative;
      max-width: 600px;
      z-index: 1;
    }

    /* Navbar */
    nav {
      position: absolute;
      top: 20px;
      right: 30px;
      display: flex;
      gap: 20px;
      z-index: 2;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    nav a:hover {
      color: #ff4d4d;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
      }

      .content h1 {
        font-size: 2rem;
      }

      .content {
        max-width: 100%;
      }

      nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .product-img {
        margin-top: 40px;
        max-width: 450px;
      }
    }

    @media (max-width: 480px) {
      .content h1 {
        font-size: 1.8rem;
      }

      .content p {
        font-size: 0.9rem;
      }

      /* Hide machine image on phones */
      .product-img {
        display: none;
      }

      /* Logo smaller on phone */
      .logo img {
        height: 60px;
        width: 60px;
      }
      .logo span {
        font-size: 0.8rem;
      }
    }

    /* company information */
.info {
  font-family: Arial, sans-serif;
  margin-top: 10px;
  padding: 0;
  background-image: linear-gradient(rgba(5, 5, 6, 0.7),rgba(0, 0, 0, 0.7)),url(img/blurbackground.jpg);
    background-position: center;
    background-size: cover;
  color: #e4e0e0;
}

.info-col h1 {
  text-align: center;
  padding: 20px 10px;
  font-size: 2rem;
  color: #fff;
}

.info-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  flex-wrap: wrap; 
}

.info-row {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.6;
}

.info-contact-box {
  flex: 1 1 40%;
  background: #eee8e8;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #353232;
}

.info-contact-box h3 {
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

.info-contact-box p {
  margin: 8px 0;
  line-height: 1.5;
}

.info-contact-box strong {
  color: #444;
}

@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
  }

  .info-row, .info-contact-box {
    flex: 1 1 100%;
  }
}

/*----------product----------*/

.product {
  position: relative;
  overflow: hidden;
  padding: 20px;
  margin-top: 10px;
  background-image: linear-gradient(rgba(42, 45, 52, 0.7),rgba(50, 51, 54, 0.7)),url(img/pexels-tomfisk-10396410.jpg);
  background-position: center;
  background-size: cover;
}

.product h1{
  text-align: center;
  padding: 20px 10px;
  font-size: 2rem;
  color: #fff;
  }
.product-category {
  padding: 0 10vw;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.product-container {
  padding: 0 10vw;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.product-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 250px;
  height: 450px;
  margin-right: 40px;
}

.product-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  width: 100%;
  height: 100px;
  padding-top: 10px;
}

.product-brand {
  text-transform: uppercase;
}

.product-short-description {
  width: 100%;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  opacity: 0.5;
  text-transform: capitalize;
  margin: 5px 0;
}


.pre-btn,
.nxt-btn {
  border: none;
  width: 10vw;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #696666 100%);
  cursor: pointer;
  z-index: 8;
}

.pre-btn {
  left: 0;
  transform: rotate(180deg);
}

.nxt-btn {
  right: 0;
}

.pre-btn img,
.nxt-btn img {
  opacity: 2.5;
}

.pre-btn:hover img,
.nxt-btn:hover img {
  opacity: 1;
}
/*---------contect--------*/

.location{
  background-color: #d0cdcd;
}
.location-1{
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location h1{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.location iframe{
  width: 100%;
}
.contact-section {
  font-family: Arial, sans-serif;
  margin: 0;
  background-image: linear-gradient(rgba(42, 45, 52, 0.7),rgba(50, 51, 54, 0.7)),url(img/pexels-tomfisk-10396410.jpg);
    background-position: center;
    background-size: cover;
}

.contact-section {
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #764242;
  outline: none;
}

.contact-form button {
  background: #4b2727;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #804e4e;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.info-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #4b2727;
}

.info-box h3 {
  margin: 0 0 5px;
  color: #222;
  font-size: 16px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/*------footer-------*/

.site-footer {
  background: #351212;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 4px;
}
.footer-col p{
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #d66332;
}

.footer-bottom p{
  color: #fff;
}

.footer-bottom {
  background: #4d4e4f;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  border-top: 1px solid #1a1f28;
}

/* Responsive */
@media (max-width: 900px){
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .nav{display:none;position:absolute;right:10px;top:56px;background:#0c1016;border:1px solid #1e2633;border-radius:16px;padding:8px;flex-direction:column;min-width:180px}
  .nav.open{display:flex}
  .menu{display:block}
  .cards{grid-template-columns:1fr}
}