* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
}

header {
  background: #3e2723;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
              url('https://via.placeholder.com/1200x500');
  background-size: cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.btn {
  background: #8d6e63;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

section {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.card img {
  width: 100%;
}

.contact form {
  max-width: 400px;
  margin: auto;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
}

footer {
  background: #3e2723;
  color: white;
  text-align: center;
  padding: 15px;
}
.slider {
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slide {
  min-width: 100%;
  text-align: center;
}

.slide img {
  width: 100%;
  border-radius: 10px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
}
.products-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 15px;
  text-align: center;
  transition: transform .3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 12px 0 5px;
}

.desc {
  font-size: 14px;
  color: #555;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #5d4037;
  margin: 10px 0;
}

.product-card button {
  background: #8d6e63;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.product-card button:hover {
  background: #6d4c41;
}
.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #8d6e63;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.logo span {
  color: #d7ccc8; /* furniture theme */
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: linear-gradient(120deg, #f5f5f5, #e6dcd1);
  overflow: hidden;
}

.hero-content {
  max-width: 500px;
  animation: slideLeft 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 52px;
  color: #3a2c23;
}

.hero-content p {
  margin: 15px 0;
  font-size: 20px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #8b5e3c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #6f462c;
}

.hero-image {
  animation: slideRight 1.2s ease-in-out;
}

.hero-image img {
  width: 450px;
  animation: float 3s ease-in-out infinite;
}

/* Animations */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }

}
#contact-form {
  scroll-margin-top: 80px;
}
#customer-reviews {
  background-color: #f8f8f8;
  padding: 50px 0;
  font-family: Arial, sans-serif;
  position:sticky;
}

#customer-reviews h2 {
  text-align: center;
  color: #333;
  font-size: 36px;
}

#customer-reviews p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.reviewer-info img {
  width: 80px;
  height: 30px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.reviewer-info h3 {
  margin: 5px 0;
  color: #333;
}

.reviewer-info span {
  color: #888;
  font-size: 14px;
}

.review-text {
  margin: 15px 0;
  font-size: 16px;
  color: #555;
}

.rating {
  color: #FFD700; /* Gold color for stars */
  font-size: 18px;
}

   

        .payment-card {
            background: #ffffff;
            width: 320px;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
            
        }

        .payment-card h2 {
            margin-bottom: 10px;
            color: #333;
        }

        .payment-card p {
            margin: 6px 0;
            color: #555;
            font-size: 15px;
        }

        .phone {
            font-weight: bold;
            color: #000;
        }

        .qr-box {
            margin-top: 15px;
        }

        .qr-box img {
            width: 200px;
            height: 200px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .note {
            margin-top: 10px;
            font-size: 13px;
            color: #777;
        }
 /* Payment Section */
.payment-section {
  scroll-margin-top: 85px;
    padding: 60px 15px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-card {
    background: #fff;
    max-width: 380px;
    width: 100%;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.payment-logo {
    width: 120px;
    margin-bottom: 10px;
}

.payment-card h2 {
    color: #333;
    margin-bottom: 5px;
}

.pay-name {
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.upi-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f3f6;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.upi-box span {
    font-size: 14px;
    word-break: break-all;
}

.upi-box button {
    background: #6739b7;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.upi-box button:hover {
    background: #51289c;
}

.qr-box img {
    width: 200px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.pay-note {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
}
.luxury-section {
  padding: 70px 20px;
  text-align: center;
}

.luxury-section.dark {
  background: #3e2723;
  color: #fff;
}

.choose-grid,
.badge-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.choose-box,
.badge,
.process-step {
  padding: 20px;
  border-radius: 12px;
  background: #f8f8f8;
  font-weight: 600;
}

.dark .choose-box,
.dark .badge,
.dark .process-step {
  background: #682d2d;
  border: 2px solid #5dd8ce;
  
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 14px;
}
