body {
  font-family: sans-serif;
  margin: 0;
  background: #fff;
}
header {
  background: #ff66b2;
  padding: 20px;
  text-align: center;
position: sticky;
  top: 0;
  z-index: 1000;
  background: #862c59; /* Or your preferred color */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
display: flex;
align-items: center;

}
header h1 {
    color: white;
    
    margin-left: 60px;
}
.intro-logos {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d06f3e;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  
}



.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background:#d06f3e;
  transition: 0.4s;
  
}

/* Transform for animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile nav */
@media (max-width: 768px) {
  
  .hamburger {
    display: flex;

  }
nav#navLinks {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(128, 128, 128, 0.9); /* Gray with opacity */
    padding: 20px;
    gap: 30px;
    position: absolute;
   margin-top: 15em;
   

    border-radius: 10px;
  }

  nav#navLinks.active {
    display: flex;
  }

header{

display: flex;
align-items: center;
}
  
.intro-logos{

  display: none;
}

}


 @media (min-width: 1024px) and (max-width: 1440px) {
nav{

margin-left: 25em;
}
  }


nav {
  
  
  background-color: #333;
  border-radius: 20px;
  padding: 20px;
}



nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.products {
  
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}


}
.product {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  width: 200px;
  border-radius: 5px;
}
.product img {
  width: 100%;
  border-radius: 5px;
  object-fit: fill;
}
footer {
  background:gray;
  padding: 15px;
  text-align: center;
}




@media (max-width: 768px) {
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.products img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
}

.rating {
  color: #f5a623;
  font-size: 18px;
}

.buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #d06f3e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
transition: background 0.3s;
}

.buy-btn:hover {
  background: #b45b2d;
}
.price {
  font-weight: bold;
  margin: 10px 0 5px;
}
.cta-section {
  background-color: #e6f0ff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0 20px;
}

.cta-section h2 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0052cc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #003d99;
}

.support-info {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-size: 16px;
}

.support-info a {
  color: #0052cc;
  text-decoration: none;
  font-weight: bold;
}
.newsletter {
  background-color:#fff; /* black background */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff66b2; /* pink accent */
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter input[type="text"] {
  padding: 10px;
  width: 100%;
  border: 1px solid #ff66b2;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter button {
  background-color: #ff66b2;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background-color: #e0559e;
}


