* {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  /* color: #333; */
}
nav {
  position: sticky;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  /* border: 2px solid #333; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* height: 100px; */
  width: 100%;
  top: 0px;
}
.logo img {
  height: 90px;
  width: 140px;
  padding-left: 20px;
}
.sections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: blue; */
  width: 30%;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
}

.search_cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  width: 300px;
  height: 40px;
  padding: 0px 20px;
}

.search_bar {
  position: relative;
}

.search_bar input[type="search"] {
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid lightgray;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

#Search_icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
  pointer-events: none;
}

/* ________________________________________________________________________________________________________________ */

.Second-Section h1 {
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  border: 1px solid #333;
  padding: 20px;
}

/* .product-container .product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    height: 200px;
    width: 200px;
} */

.product-container .product {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  text-align: center;

  width: 300px;
}

.product-container .product img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.product-info {
  padding: 8px 0px;
  font-size: 15px;
  color: #fffdfd;
  background: rgb(71, 73, 75);
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
/* ________________________________________________________________________________________________________________ */

.About-Section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;

  background-color: #f4f4f4;
}
.about h1 {
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: #333;
}

.About-Section {
  display: flex;
  border-top: 1px solid #333;
  font-size: 18px;
  line-height: 1.6;
  color: black;
  /* max-width: 600px; */
  gap: 60px;
}
.About-info {
  text-align: left;
  width: 70%;
  padding: 60px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.About-img {
  width: 40%;
  height: auto;
  padding: 10px 0px;
  padding-left: 100px;
}
.about h1 {
  font-size: 45px;
  
  border-color: #333;
  border-radius: 80px;
  border-bottom: #333;
}
/* ------------------------------------------------------------------- */
.heroSection {
  width: 100%;
  height: 560px;
  background-image: url(assits/main-section-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  color: white;
}

.heroSection {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}
.heroSection h1 {
  font-weight: bold;
  text-align: center;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(189, 187, 187) 0%,
    rgb(255, 255, 255) 100%
  );

  margin-top: 130px;
  font-size: 130px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding: 10px;

  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 244, 244, 0.2);
}
.heroSection h1 span {
  color: rgb(177, 39, 15);
  font-weight: lighter;
  font-size: 80px;
  font-style: italic;
  

  text-decoration-color: rgb(82, 82, 82);

  text-decoration-thickness: 2px;
  
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.heroSection p {
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}


/* ----------------------------------------------------------------- */
.product-container :hover{
  transform: scale(1.05);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.About-img:hover {
  transform: scale(1.10);
  transition: transform 0.3s ease;
  cursor: pointer;
}
