body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #111;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: left;
  /* background: rgba(0,85,146); */
  background: black;
  color: #fff;
  padding: 0.75rem 10rem;
}
.hamburger {
  border: 0;
  color:#fff;
  cursor: pointer;
  font-size: 20px;
  display: none;
}
.hamburger:focus {
  outline: none;
}
.nav-links {
  list-style:none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #bbb;
}
.nav-item {
    margin-left: 2rem;
}

/* Hamburger icon bars */
.bar {
    display: block;
    width: 27px;
    height: 2px;
    margin: 5px auto;
    background-color: #101010;
    transition: all 0.3s ease-in-out;
}
.logo-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  background: transparent;
  padding-top: 0.5rem;
}
.logo {
  margin-left: 9rem;
  width: 100%;
  height: 12vh;
  overflow: hidden;
  display: flex;
}
.logoimg {
  max-width: inherit;
  max-height: inherit;
  height: inherit;
  width: inherit;
}

.hero {
  text-align: center;
  flex-wrap: wrap;
  width: 100%;
  height:390px;
  padding: 1.5rem 1rem 2rem 1rem;
  background: #f7f7f7;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  color: #555;
  font-size: 1.2rem;
}
.nav-open{
  transform: translate(0) !important;
}
.navbar-open{
  height:fit-content !important;
}

.products {
  background-color: #101010;
}
.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}
.aboutus {
  text-align: left;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.aboutus h1 {
  margin-top: 6rem;
  margin-bottom: 2rem;
}
.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 20px;
}
.image-container img {
    width: 100%; 
    height: auto;
    border-radius: 10px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  background-color: #111;
}
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem;
  text-align: center;
  width: 25%;
  transition: box-shadow 0.2s, border 0.2s;
}
.product-card:hover {
  border: 1px solid #111;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-card h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
}
.product-card p {
  color: #111;
  font-weight: bold;
  margin: 0.2rem 0 1rem 0;
  font-size: 1.1rem;
}
.regular-price {
  text-decoration: line-through;
  color: #bbb;
  margin-right: 0.7rem;
  font-size: 1.1rem;
}
.offer-price {
  color: #111;
  font-weight: bold;
  font-size: 1.3rem;
  background: #f7f7f7;
  padding: 0.2rem 0.7rem;
  border-radius: 5px;
}
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: #111;
  color: #fff;
  margin-top: 3rem;
}
.categories-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.category-card {
  background: #fff;
  border: 1px solid #111;
  border-radius: 8px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 0.5rem;
}
.category-card:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
  align-items: center;
  padding: 0 1rem;
}
.product-img {
  width: 350px;
  border-radius: 10px;
  background: #f7f7f7;
}
.product-info {
  flex: 1;
  min-width: 250px;
}
.product-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-desc {
  color: #555;
  margin-bottom: 1.5rem;
}
.messagecontainer{
  color: green; 
  font-weight: bold;
}
.payment-section {
  max-width: 400px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 2rem 1.5rem 2rem;
}
.payment-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: #111;
}
.payment-form input {
  padding: 0.6rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
  background: #fafafa;
  color: #111;
}
.payment-form select {
  padding: 0.6rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
  background: #fafafa;
  color: #111;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row > div {
  flex: 1;
}
.payment-form button {
  margin-top: 1rem;
}

footer {
  background-color: #fff;
  color: #333;
  padding: 5px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  padding: 20px;
  margin-right: 20px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  margin: 5px 0;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section a {
  color: #333;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 15px;
}
.image-main{
  max-width: 100%;
  height: auto;
}
.imgoverlay-content{
  position: absolute;
  top: 55%; /* Adjust as needed */
  left: 23%; /* Adjust as needed */
  max-width: 35%;
  /*font-family:Roboto;  Adjust as needed */
  transform: translate (-50%, -50%); /* Centers the content vertically */
  color: #fff; /* Make sure text is visible on your image */
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Adds a shadow for readability */
}
.imgoverlay-button{
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff0000; /* Use a prominent color */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.navigation-button {
  text-align: center;
  position: relative;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.active,
.dot:hover {
  background-color: #717171;



    
 }

@media screen and (max-width: 767px) {
  .nav-links {
    width: 150px;
    flex-direction: column;
    gap: 0rem;
    margin: 0;
    padding: 0;
    transform: translateX(-420%);
    }
  .nav-links a {
  width: 150px;
  font-weight: 400;
  font-size: 14px;
  }
.navbar{
  height: 30px;
  padding: 0.30rem 10rem;
  }
  .hamburger{
    display: block;
  }  
  .imgoverlay-content{
  position: absolute;
  top: 34%; /* Adjust as needed */
  left: 2%; /* Adjust as needed */
  max-width: 95%;
  }
  .imgoverlay-content h1 {
    font-size: 20px;
   }
  .imgoverlay-content p {
     background-color: #fff;
     color: black;
     font-weight: 400;
     font-size: 13px;
     text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
   }
   
 }
