html { scroll-behavior: smooth; }

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background: #FAF5E4;
  color: #222;
  line-height: 1.6;
}
.container { width: 90%; max-width: 1100px; margin: auto; }
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1rem 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}
.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover { color: #D97706; }

/* Hero */
.hero { padding: 4rem 0; }
.hero-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-text p { margin-bottom: 1.5rem; color: #444; }
.btn-accent {
  background: #D97706; color: #fff; padding: 0.7rem 1.4rem;
  border-radius: 6px; text-decoration: none; font-weight: 500;
  transition: background 0.3s;
}
.btn-accent:hover { background: #B45309; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; height: auto; }

/* About Section */
.about {
  padding: 6rem 0;
  background: #faf5e4;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 50%;
  text-align: left;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2e2e2e;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
  line-height: 1.7;
  max-width: 500px;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.about-stats .stat {
  text-align: center;
  flex: 1;
}

.about-stats h3 {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.about-stats p {
  font-size: 0.95rem;
  color: #555;
}

.btn-accent {
  background: #e67e22;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-accent:hover {
  background: #cf6712;
  transform: translateY(-2px);
}



/* Products Section */
.products {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
}

.products .section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}

.products .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #faf5e4;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.8rem;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e2e2e;
}
/* Why Choose Us Section */
.why-us {
  padding: 6rem 0;
  background: #faf5e4;
  text-align: center;
}

.why-us .section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}

.why-us .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 0.8rem;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

<!-- Custom CSS -->
<style>
  #testimonials {
    background: #FAF5E4;
    padding: 80px 20px;
    text-align: center;
  }

  #testimonials .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
  }

  #testimonials .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }

  .reviews-widget {
    max-width: 900px;
    margin: 0 auto;   /* centers it */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
  }
</style>


/* Contact / CTA Section */
.contact-cta {
  padding: 6rem 0;
  background: #faf5e4;
  text-align: center;
}

.contact-cta .section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.contact-cta .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #2e2e2e;
}

.contact-details p {
  margin: 0.5rem 0;
}

.contact-details i {
  color: #e67e22;
  margin-right: 8px;
}

.contact-details a {
  color: #2e2e2e;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: #e67e22;
}

.contact-cta .btn-primary {
  background: #e67e22;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.contact-cta .btn-primary:hover {
  background: #cf6d16;
}

.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Footer Section */
.footer {
  background: #2e2e2e;
  color: #faf5e4;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-about .footer-logo {
  max-width: 160px;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #faf5e4;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 0.5rem 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #e67e22;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #e67e22;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container, .about-container, .contact-container {
    flex-direction: column; text-align: center;
  }
  .hero-text h1 { font-size: 2rem; }
}
