@media screen and (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1rem;
  }
  h3 {
    font-size: 1rem;
  }
  .hero-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  nav ul {
    margin-right: 30px;
    gap: 4px;
  }
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 0.9rem;
  }
  .hero-img {
    max-width: 79%;
    height: auto;
    margin: 0 auto;
  }
  .box-container {
    grid-template-columns: 2fr;
    gap: 15px;
    padding: 10px;
  }
  nav ul {
    display: none;
    /* Hide menu on small screens */
  }
}
@media (max-width: 950px) {
  .grid {
    flex-direction: column;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .promo-card {
    width: 100%;
  }
  .product {
    padding: 10px;
  }
  .promo-card img {
    margin-top: 1000px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  .product {
    padding: 10px;
    padding-left: 10px;
  }
  .offers {
    display: flex;
    flex-direction: column;
  }
  .offer-box {
    width: 100%;
  }
}
@media (max-width: 840px) {
  .offers {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .offer-box {
    width: 89%;
  }
}
@media (max-width: 640px) {
  .footer-containers {
    display: flex;
    flex-direction: column;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .dawat {
    width: 100px;
  }
  .logo-dawat {
    width: 100px;
  }
  .india-gate {
    width: 70px;
  }
  .india {
    width: 80px;
  }
}
