* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #eacdbd;
  font-family: Arial, sans-serif;
}

.contanier {
  display: flex;
  gap: 30px;
  justify-content: space-around;
  padding: 10px;
  min-height: 60px;
  align-items: center;
  /* max-width:1400px; */
}

.main img {
  height: 70px;
  margin-right: 50px;
}

.title {
  font-size: 18px;
  color: white;
  display: flex;
  list-style: none;
  gap: 40px;
  padding: 10px;
  align-items: center;
}

.link {
  color: white;
}

main {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url(./Asset/immg-3.png);
}

.section1 {
  position: absolute;
  color: white;
  top: 35%;
  left: 10%;
}

.lines {
  font-size: 5.5rem;
  margin-bottom: 10px;
}

.Cf {
  font-size: 6rem;
}

.cs {
  font-size: 15px;
  margin-top: 50px;
  border-radius: 20px;
  width: 200px;
  height: 50px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.section2,
.section3 {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
}

.kj {
  font-size: 50px;
}

.jp {
  font-size: 20px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 30px 10px;
  margin-top: 20px;
}

.card {
  position: relative;
  margin: 10px;
  padding: 10px;
  width: 350px;
  height: 250px;
  background: transparent;
}

.card img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  filter: brightness(0.7);
}

.card p {
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-weight: bold;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

.card h6 {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  color: lightyellow;
  cursor: pointer;
}

.categories2 {
  margin-top: 20px;
  gap: 100px;
  display: flex;
  padding: 20px;
  justify-content: center;
  /* gap: 30px; */
  flex-wrap: wrap;
}

.card2 {
  background: rgba(235, 114, 114, 0.425);
  padding: 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card2 img {
  height: 280px;
  width: 100%;
  object-fit: contain;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.bn {
  color: white;
  border: none;
  padding: 8px 15px;
  background-color: brown;
  border-radius: 10px;
  cursor: pointer;
}

.card3 {
  background: rgba(235, 114, 114, 0.425);
  padding: 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card3 img {
  height: 200px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.card3 p {
  font-size: 14px;
  text-align: justify;
}

footer {
  background-color: black;
  color: white;
  padding-bottom: 20px;
}

.ftr1 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px;
}

.ftr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px;
}

.ftr ul {
  padding: 0;
}

.ftr li {
  list-style: none;
  margin-bottom: 5px;
  cursor: pointer;
}

.ftr h3 {
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}

.ftr2 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.box {
  background-color: rgb(255, 159, 159);
  display: flex;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.box li {
  list-style: none;
}

@media (max-width: 1400px) {


  .contanier {
    max-width: 1200px;
    margin: auto;
    gap: 20px;
    padding: 10px 30px;
  }

  .main img {
    height: 65px;
    margin-right: 30px;
  }

  .title {
    gap: 30px;
    font-size: 17px;
  }


  main {
    height: 90vh;
  }

  .section1 {
    top: 32%;
    left: 8%;
  }

  .lines {
    font-size: 5rem;
  }

  .Cf {
    font-size: 5.4rem;
  }

  .cs {
    width: 190px;
    height: 48px;
    font-size: 14px;
  }


  .categories {
    gap: 35px;
  }

  .card {
    width: 330px;
    height: 230px;
  }

  .card img {
    height: 230px;
  }


  .categories2 {
    gap: 60px;
  }

  .card2,
  .card3 {
    width: 280px;
  }

  .card2 img {
    height: 250px;
  }


  .ftr1 {
    gap: 30px;
  }

  .box {
    padding: 10px 15px;
    gap: 12px;
  }
}



@media (max-width: 1200px) {

  /* ===== Header / Navbar ===== */
  .contanier {
    max-width: 1000px;
    margin: auto;
    gap: 15px;
    padding: 10px 25px;
  }

  .main img {
    height: 60px;
    margin-right: 20px;
  }

  .title {
    gap: 25px;
    font-size: 16px;
  }

  /* ===== Hero Section ===== */
  main {
    height: 85vh;
  }

  .section1 {
    top: 30%;
    left: 6%;
  }

  .lines {
    font-size: 4.5rem;
  }

  .Cf {
    font-size: 5rem;
  }

  .cs {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }

  /* ===== Categories Section ===== */
  .categories {
    gap: 30px;
  }

  .card {
    width: 300px;
    height: 220px;
  }

  .card img {
    height: 220px;
  }

  /* ===== Product Cards ===== */
  .categories2 {
    gap: 40px;
  }

  .card2,
  .card3 {
    width: 260px;
  }

  .card2 img {
    height: 230px;
  }

  /* ===== Footer ===== */
  .ftr1 {
    gap: 25px;
  }

  .box {
    padding: 8px 12px;
    gap: 10px;
  }
}



@media (max-width: 768px) {

  .contanier {
    flex-direction: column;
    gap: 12px;
    padding: 10px 15px;
    text-align: center;
  }

  .main img {
    height: 55px;
    margin-right: 0;
  }

  .title {
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
    padding: 5px;
  }

  main {
    height: auto;
    background-position: center;
  }

  .section1 {
    position: static;
    text-align: center;
    padding: 50px 15px;
  }

  .lines {
    font-size: 2.5rem;
  }

  .Cf {
    font-size: 3rem;
  }

  .cs {
    width: 170px;
    height: 45px;
    font-size: 14px;
    margin-top: 30px;
  }

  .kj {
    font-size: 32px;
  }

  .jp {
    font-size: 16px;
  }

  
  .categories {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }

  .card {
    width: 95%;
    height: 200px;
  }

  .card img {
    height: 200px;
  }


  .categories2 {
    flex-direction: column;
    gap: 25px;
    padding: 10px;
  }

  .card2,
  .card3 {
    width: 95%;
  }

  .card2 img {
    height: 220px;
  }

  .card3 img {
    height: 180px;
  }

 
  footer {
    text-align: center;
  }

  .ftr1 {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .ftr {
    align-items: center;
  }

  .box {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
}

@media (max-width: 576px) {

  .contanier {
    padding: 8px 10px;
    gap: 10px;
  }

  .main img {
    height: 50px;
  }

  .title {
    font-size: 14px;
    gap: 8px;
  }

  .section1 {
    padding: 40px 10px;
  }

  .lines {
    font-size: 2rem;
  }

  .Cf {
    font-size: 2.4rem;
  }

  .cs {
    width: 160px;
    height: 42px;
    font-size: 13px;
    margin-top: 25px;
  }

  .kj {
    font-size: 28px;
  }

  .jp {
    font-size: 15px;
  }

  .categories {
    gap: 15px;
  }

  .card {
    width: 100%;
    height: 180px;
  }

  .card img {
    height: 180px;
  }

  .card p {
    font-size: 1rem;
  }

  .card h6 {
    font-size: 13px;
  }

  .categories2 {
    gap: 20px;
    padding: 5px;
  }

  .card2,
  .card3 {
    width: 100%;
    padding: 15px;
  }

  .card2 img {
    height: 200px;
  }

  .card3 img {
    height: 160px;
  }

  .card3 p {
    font-size: 13px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .bn {
    width: 100%;
    padding: 10px;
  }

  .ftr1 {
    gap: 15px;
    padding: 10px;
  }

  .ftr h3 {
    font-size: 16px;
  }

  .ftr li {
    font-size: 14px;
  }

  .box {
    padding: 8px;
    gap: 8px;
  }
}


@media (max-width: 400px) {

  .contanier {
    padding: 6px 8px;
    gap: 8px;
  }

  .main img {
    height: 45px;
  }

  .title {
    font-size: 13px;
    gap: 6px;
  }

  .section1 {
    padding: 30px 8px;
  }

  .lines {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .Cf {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .cs {
    width: 150px;
    height: 40px;
    font-size: 12px;
    margin-top: 20px;
  }

  .kj {
    font-size: 24px;
  }

  .jp {
    font-size: 14px;
  }


  .categories {
    gap: 12px;
  }

  .card {
    width: 100%;
    height: 160px;
    padding: 6px;
  }

  .card img {
    height: 160px;
  }

  .card p {
    font-size: 0.9rem;
  }

  .card h6 {
    font-size: 12px;
  }


  .categories2 {
    gap: 15px;
    padding: 5px;
  }

  .card2,
  .card3 {
    width: 100%;
    padding: 12px;
  }

  .card2 img {
    height: 180px;
  }

  .card3 img {
    height: 140px;
  }

  .card3 p {
    font-size: 12px;
  }

 
  .row {
    flex-direction: column;
    gap: 8px;
  }

  .bn {
    width: 100%;
    font-size: 13px;
    padding: 9px;
  }

 
  .ftr1 {
    gap: 12px;
    padding: 8px;
  }

  .ftr h3 {
    font-size: 15px;
  }

  .ftr li {
    font-size: 13px;
  }

  .box {
    gap: 6px;
    padding: 6px;
  }
}


