* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;

  overflow-x: hidden;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.intro-logo {
  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);
}





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;
gap: 4em;
align-items: center;
}
header h1 {
    color: white;
    
    margin-left: 25  px;
}
.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: 20em;
   margin-left: 0;

    border-radius: 10px;
  }

  nav#navLinks.active {
    display: flex;
  }
header{

display: flex;
align-items: center;
gap: 2em;

}
  header img{
display: none;

  }
}



nav {
  margin-top: 10px;
  margin-left: 9em;
  background-color: #333;
  border-radius: 20px;
  padding: 20px;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.hero {
  background: #ffe6f0;
  text-align: center;
  padding: 60px 20px;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
}
.hero .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  background: #ff66b2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

h3{
margin-left: 10em;
margin-top: 2em;
margin-bottom: 2em;

}
.intro-message {
  background-color: #fff8f2;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.intro-container {
  max-width: 1100px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.intro-container h2 {
  font-size: 2rem;
  color: #d06f3e;
  margin-bottom: 20px;
}

.intro-container p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .intro-container h2 {
    font-size: 1.5rem;
  }

  .intro-container p {
    font-size: 1rem;
  }


  
}





.why-choose-us {
  padding: 30px;
  background-color: #f8f8f8;
  text-align: center;
}

.why-choose-us h3 {
  margin-bottom: 20px;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
}

.why-choose-us li {
  margin: 10px 0;
  font-size: 16px;
}

.featured-products {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}

.featured-products h2 {
  font-size: 26px;
  color: #d06f3e;
  margin-bottom: 20px;
}

.product-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.product-card {
  flex: 0 0 auto;
  width: 220px;
  background: #fdfdfd;
  border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  scroll-snap-align: start;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}
.mobile-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* On mobile: scrollable row */
@media (max-width: 768px) {
  .mobile-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    flex: 0 0 80%; /* Width of each card */
    scroll-snap-align: start;
    margin-right: 10px;
  }
}


/* Logo */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Hero intro with logo */
.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.intro-logo {
  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);

  
}
.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);

  
}



/* Header and Navbar */
header {
  background: #862c59;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  color: white;
}

nav#navLinks {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav#navLinks a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #d06f3e;
  transition: 0.4s;
}

.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 Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav#navLinks {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(128, 128, 128, 0.9);
    padding: 20px;
    gap: 30px;
    position: absolute;
    margin-top: 15em;
    border-radius: 10px;
  }

  nav#navLinks.active {
    display: flex;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .intro-logo {
  display: none;

  
}
}


/* Product section */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product-card {
  flex: 0 0 100%;
  max-width: 300px;
  margin: 10px;
}

@media (min-width: 768px) {
  .product-card {
    flex: 0 0 calc(33.33% - 40px);
  }
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.product-card p {
  font-size: 16px;
  color: #666;
}

/* Reviews Section */
.reviews {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.reviews h2 {
font-size: 26px;
  color: #d06f3e;
  margin-bottom: 30px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background-color: #fef6f3;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-card h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #444;
}

/* About Section */
.about {
  padding: 50px 20px;
  background-color: #fffaf5;
  text-align: center;
}

.about h2 {
  font-size: 28px;
  color: #d06f3e;
  margin-bottom: 15px;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: #ffd8c1;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px auto;
}

.cta h2 {
  font-size: 26px;
  color: #000;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.cta-btn {
  background: #d06f3e;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background-color: #b45528;
}

/* Footer */
footer {
  background: gray;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  color: white;
}
