/* General reset and base styles */
body {
    
  margin: 0;
  font-family: arial;
  background-color: white;
}

/* Clearfix helper */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Navigation */
.nav {
  background-color: #333;
  width: 100%;
  margin: auto;
  height: 55px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 55px;
  position: relative;
}

.nav-logo a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  padding: 14px 20px;
  display: block;
}

.nav-menu a:hover {
  background-color: #555;
}

/* Big Image */
.big-image {
  width: 100%;
  float: left;
}

.big-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  float: left;
}

/* Product List */
.product-list {
  width: 100%;
  float: left;
  padding: 45px 0px 20px 0px;
  background-color: #f9f9f9;
  text-align: center;
}

.product-item {
  width: 60%;
  margin: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-list button {
  padding: 5px 20px;
  box-shadow: -2px 5px 12px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 1px solid grey;
  cursor: pointer;
}

.product-left {
  width: 50%;
  float: left;
  text-align: left;
}

.product-left h1 {
  color: #222;
  margin-bottom: 10px;
}

.product-left p {
  font-size: 16px;
  color: #555;
}

.product-right {
  width: 50%;
  float: left;
  text-align: right;
}

.product-right img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.gap {
  width: 100%;
  height: 35px;
  float: left;
  background-color: #f9f9f9;
}

/* Reviews Section */
.reviews {
  width: 100%;
  float: left;
  background-color: #f0f0f0;
  padding: 10px 0px 25px 0px;
  text-align: center;
}

.review-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.review-section img {
  width: 320px;
  height: 220px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about-layout {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.about-left {
  flex: 2;
  padding: 30px;
  min-width: 250px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
}

.about-right img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.one {
  width: 100%;
  background-color: #f9f9f9; /* Choose any non-white background */
  padding: 50px 0;
}


/* Contact Us Section */
.contact-section {
  padding: 5px 0px 100px 0px;
  background-color: #f9f9f9;
}

.contact-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 20px;
  font-family: arial;
}

.contact-form .text {
    text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 14px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e65c00;
}

/* Footer Section */
.footer {
  background-color: #222;
  color: white;
  width: 100%;
  padding: 65px 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left a {
  color: white;
  text-decoration: none;
}

.footer-left {
  flex: 1;
  margin-left: 10%;
  min-width: 220px;
}

.footer-left h3 {
    color: white;
    text-decoration: none;
  margin: 8px 0;
  font-weight: 400;
  font-size: 16px;
}

.footer-right {
  flex: 1;
  margin-top: 40px;
  margin-right: 8%;
  min-width: 150px;
  text-align: right;
}

.footer-right img {
  width: 36px;
  height: 36px;
  margin-left: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-right img:hover {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
  padding: 0px 20px 50px 20px;
  text-align: center;
  margin: 30px 0px 0px 0px;
}

.gallery-section h2 {
  font-size: 2rem;
  text-align: center;
  width: 100%;
  padding: 0;
  margin: 25px 0px 0px 0px;
  color: #222;
}

.gallery-grid {
  margin: 35px 0px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-grid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Placeholder font styling */
::placeholder {
  font-family: Arial, sans-serif;
  font-size: 12px;
}


/* Responsive Styling */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav {
       position: fixed;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 0;
    background-color: #333;
    width: 100%;
    text-align: right;
    padding: 10px 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .about-layout {
    flex-direction: column;
  }
  
.product-item {
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.product-left {
  width: 100%;
  order: 1;
}

.product-right {
  width: 100%;
  order: 2;
}

.product-left a {
  display: none; /* Hide original button inside .product-left */
}

.product-right a {
  display: inline-block;
  margin-top: 22px;
}

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 10px 0;
    text-align: center;
  }
  
  .contact-section {
    width: 80%;
    margin: 0 auto;
    padding: 45px 0 100px 0;
    text-align: center;
  }

  .contact-form {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    text-align: left;
    flex-direction: column;
    gap: 20px;
  }
}

