:root{
  --bg:#fafafa;--card:#ffffff;--accent:#0f172a;--accent-2:#d4a373;--muted:#6b7280;
  --radius:12px;--max-width:1100px;--shadow:0 6px 20px rgba(15,23,42,0.08);
  --transition:200ms;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:#111}
.container{max-width:var(--max-width);margin:0 auto;padding:28px}
.brand{display:flex;gap:12px;align-items:center}
nav ul{display:flex;gap:16px;list-style:none;margin:0;padding:0}
nav a{padding:8px;border-radius:8px;text-decoration:none;color:inherit}
header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.hero-bg {
  background: url('images/home-furniture.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.overlay { position: relative; z-index: 1; max-width: 900px; padding: 2rem; }
.hero-bg h1 { font-size: clamp(28px, 4.5vw, 48px); margin: 0 0 12px; line-height:1.05; }
.hero-bg p { font-size: 1.15rem; margin-bottom: 1.5rem; color: #f3efe9;}
.cta { background-color: var(--accent-2); color: #fff; padding: 0.75rem 1.5rem; text-decoration: none; font-weight: 600; border-radius: 8px; transition: background 0.3s ease; }
.cta:hover { background-color: #b57f55; }

.section{padding:40px 0}
.section h2{margin:0 0 18px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);border-radius:12px;padding:12px;box-shadow:var(--shadow);transition:transform var(--transition);cursor:pointer}
.card img{width:100%;height:220px;object-fit:cover;border-radius:10px}
.card .meta{display:flex;justify-content:space-between;align-items:center;margin-top:10px}
.name{font-weight:700}
.price{color:var(--accent-2);font-weight:700}
.muted{color:var(--muted)}
.about{display:flex;gap:20px;align-items:center}
.about img{width:320px;border-radius:12px}
.form{max-width:520px;background:var(--card);padding:16px;border-radius:12px;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:10px}
.form input,.form textarea{padding:10px;border-radius:8px;border:1px solid #e6e6ef}
.btn{background:var(--accent-2);color:white;padding:10px 14px;border-radius:10px;border:none}
.footer{text-align:center;color:var(--muted);padding:22px 0}
.modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.6);opacity:0;pointer-events:none;transition:opacity 200ms}
.modal.open{opacity:1;pointer-events:auto}
.modal-card{background:white;border-radius:14px;max-width:900px;width:92%;padding:16px;display:grid;grid-template-columns:1fr 320px;gap:16px;position:relative}
.modal-card img{width:100%;height:100%;object-fit:cover;border-radius:10px}
.close{position:absolute;right:18px;top:18px;background:rgba(255,255,255,0.6);border-radius:10px;padding:8px;cursor:pointer}
@media(max-width:1024px){.grid{grid-template-columns:repeat(2,1fr)}.hero-bg{height:70vh}}
@media(max-width:640px){nav ul{display:none}.grid{grid-template-columns:1fr}.about{flex-direction:column}.modal-card{grid-template-columns:1fr}.hero-bg h1{font-size:28px}}
/* NAVBAR STYLES */
/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 40px; /* ↓ reduced padding */
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease; /* smooth scroll shrink option */
}

/* ---------- LOGO IMAGE ---------- */
.logo img {
  width: 120px; /* ↓ reduced from 180px */
  height: auto;
  display: block;
}

/* ---------- NAV LINKS ---------- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px; /* ↓ slightly smaller gap */
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0dd1e7;
}

/* ---------- MENU TOGGLE (MOBILE) ---------- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* match reduced navbar height */
    right: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    width: 100px; /* smaller for mobile */
  }
}


/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f2f2f2;
  margin-bottom: 1.5rem;
}

.hero-content .cta {
  background: #d4a373;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.hero-content .cta:hover {
  background: #b9824a;
}
.hero .btn {
  display: inline-block;
  background: var(--accent-color, #d4a373);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.hero .btn:hover {
  background: #b87b52;
  transform: translateY(-2px);
}

/* For small screens */
@media (max-width: 600px) {
  .hero .btn {
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 25px;
  }
}
.hero-content .cta {
  background: #d4a373;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-content .cta:hover {
  background: #b9824a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


.dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}



.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #d4a373;
}


/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
}

.about-image img {
  width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  background: #d4a373;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #b9824a;
}

/* Full width + background fix */
.about-section {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
}

/* Layout inside the section */
.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive layout */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 90%;
  }
}

/* Animation */
.about-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.03);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.category-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  letter-spacing: 0.5px;
}
/* Popup Style */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup.show {
  display: flex;
}
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.popup-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
.shop-by-categories {
  background: #fff;
  width: 100vw;
  margin: 0;
  padding: 60px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section, 
.banner, 
.shop-by-categories {
  margin-bottom: 0;
  padding-top: 0;
}

main.container {
  padding-top: 0;
  margin-top: 0;
}
/* Contact Page Center Layout */
/* === CONTACT SECTION CENTER === */
#contact {
  width: 100vw; /* full viewport width */
  margin-left: calc(50% - 50vw); /* remove page container padding */
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}

#contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: #ff9f43;
  box-shadow: 0 0 5px rgba(255, 159, 67, 0.3);
  outline: none;
}

.btn {
  background-color: #ff9f43;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #ff7f00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .form {
    width: 90%;
    padding: 30px 20px;
  }
}

.features-section {
  width: 100vw; /* full viewport width */
  margin-left: calc(50% - 50vw); /* cancel any container padding/margin */
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-box {
  text-align: center;
  max-width: 280px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .features-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-left: 0;
    width: 100%;
  }
}

.main-footer {
  background: #000;
  color: #ccc;
  padding: 60px 0 30px;
  text-align: center;
  width: 100%;
}

.footer-logo {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #00bfa6;
}

.social-icons {
  margin-bottom: 40px;
}

.social-icons a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00bfa6;
}

/* ===== FULL-WIDTH FOOTER ===== */
footer {
  width: 100vw; /* full viewport width */
  margin: 0;
  padding: 60px 0;
  background-color: #3e2723; /* dark brown */
  color: #fff;
  position: relative;
  overflow-x: hidden; /* prevent scroll issue */
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-col {
  max-width: 240px;
  text-align: left;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d7b377; /* gold line accent */
  margin-top: 6px;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d7b377;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.shop-by-categories {
  text-align: center;
  padding: 50px 5%;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.shop-by-categories h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-filters button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.category-filters button:hover,
.category-filters button.active {
  background-color: #f4e3d3;
  color: #000;
  border-color: #f4e3d3;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.category-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-item p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.why-choose-us {
  background-color: #f2f9ff; /* Light blue background */
  padding: 80px 5%;
  font-family: 'Poppins', sans-serif;
}

.choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}

.choose-text {
  flex: 1 1 40%;
  min-width: 280px;
}

.choose-text .subtitle {
  color: #ff6b4a;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.choose-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.choose-text .description {
  color: #666;
  font-size: 16px;
  margin-top: 15px;
  max-width: 500px;
}

.choose-features {
  flex: 1 1 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.feature-box {
  background: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 30%;
  min-width: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #777;
}


---
.choose-us-section {
  background-color: #f3f9ff; /* Light blue background */
  padding: 80px 5%;
  font-family: 'Poppins', sans-serif;
}

.choose-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

/* Left text */
.choose-left {
  flex: 1 1 35%;
  min-width: 300px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.choose-subtitle {
  color: #ff5a3c;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.choose-left h2 {
  font-size: 44px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.choose-description {
  color: #666;
  font-size: 16px;
  margin-top: 20px;
  max-width: 450px;
}

/* Right icons section */
.choose-right {
  flex: 1 1 60%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.choose-card {
  background-color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 30%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.choose-icon {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border: 3px solid #ff5a3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.choose-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.choose-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.choose-card p {
  color: #777;
  font-size: 14px;
  margin: 0;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1000px) {
  .choose-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .choose-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .choose-card {
    flex: 1 1 250px;
    max-width: 300px;
  }
}

/* 🌿 About Us - Modern Furniture Style */
.about2-section {
  background: linear-gradient(135deg, #f6f8f7, #e2ede9);
  color: #333;
  padding: 100px 6%;
  font-family: 'Poppins', sans-serif;
  position: relative;
  width: 100%;
}

.about2-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* Left image */
.about2-left {
  flex: 1 1 45%;
}

.about2-left img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about2-left img:hover {
  transform: scale(1.03);
}

/* Right content */
.about2-right {
  flex: 1 1 45%;
}

.about2-subtitle {
  text-transform: uppercase;
  color: #17655b;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.about2-right h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about2-description {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 550px;
}

.about2-read-more-btn {
  background-color: #17655b;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 600;
  display: inline-block;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about2-read-more-btn:hover {
  background-color: #0f4d43;
  transform: translateY(-2px);
}

/* Video Section */
.about2-video {
  margin-top: 40px;
  position: relative;
  width: 95%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.about2-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

/* Stats Section */
.about2-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

.about2-stat-box {
  text-align: center;
}

.about2-stat-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #17655b;
  margin-bottom: 8px;
}

.about2-stat-box p {
  color: #555;
  font-size: 16px;
  font-weight: 500;
}




/* Bottom bar */
.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background: #2a1b15;
  color: #bbb;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  margin: 0;
  position: relative;
  bottom: 0;
  left: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    margin: 6px auto 0;
  }
}

html {
  scroll-behavior: smooth;
}

.main-footer {
  width: 100vw;
  margin: 0;
  padding: 70px 0 40px;
  background: linear-gradient(180deg, #111 0%, #000 100%);
  color: #fff;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  color: #ccc;
  font-size: 14px;
}
/* ---------- TOP OFFER BAR ---------- */
.top-offer-bar {
  background-color: #17655b; /* deep green */
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.top-offer-bar span {
  display: inline-block;
  animation: fadeInText 0.8s ease-in-out;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Prevent hero from hiding behind navbar */

html, body {
  overflow-x: hidden;
}

/* Reset and base styles */
.testimonials-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff7f5;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* Slider container */
.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Slider track */
.testimonial-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

/* Individual card styles */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 30px;
  min-width: 30%;
  margin: 0 15px;
  flex: 0 0 30%;
  box-sizing: border-box;
  cursor: pointer; /* optional: for better UX */
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Text styles within cards */
.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  font-size: 1em;
}

.testimonial-card h3 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
  font-size: 1.2em;
}

.testimonial-card span {
  color: #777;
  font-size: 0.9rem;
}

/* Dots navigation */
.testimonial-dots {
  margin-top: 25px;
}

.t-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.t-dot.active {
  background: #ff6b4a;
}

/* Full-width section with background and positioning */
.testimonial-section {
  position: relative;
  width: 100vw; /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #e6f4ff; /* Blue background full width */
  text-align: center;
  padding: 80px 0;
  box-sizing: border-box;
}

/* Title styling */
.testimonial-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* Container for testimonial cards */
.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Flip card styles */
.testimonial-card {
  background: transparent;
  perspective: 1000px;
  width: 280px;
  height: 350px;
  margin: 15px;
}

.testimonial-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-inner {
  transform: rotateY(180deg);
}

/* Front and back faces */
.testimonial-front,
.testimonial-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-sizing: border-box;
}

/* Front face styles */
.testimonial-front img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #87ceeb;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-front h3 {
  margin: 10px 0 5px;
  color: #222;
  font-size: 1.2em;
}

.testimonial-front p {
  color: #777;
  font-size: 14px;
  text-align: center;
}

/* Back face styles */
.testimonial-back {
  transform: rotateY(180deg);
  background: #ffffff;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.testimonial-back p {
  margin-bottom: 10px;
}

/* Stars styling */
.stars {
  color: #ffd700;
  font-size: 20px;
  margin-top: 10px;
}

/* Responsive adjustments for tablets and mobiles */
@media (max-width: 768px) {
  /* Adjust container layout */
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  /* Make cards full width with margin for spacing */
  .testimonial-card {
    width: 80%;
    height: auto;
    margin: 15px 0;
  }

  /* Optional: increase font size for better readability on small screens */
  .testimonial-title {
    font-size: 1.75em;
  }

  .testimonial-front img {
    width: 70px;
    height: 70px;
  }

  /* Adjust back face content if needed */
  .testimonial-back {
    padding: 20px;
  }
}




/* ---------- NEWSLETTER SECTION ---------- */
/* ---------- NEWSLETTER SECTION ---------- */
.newsletter-section {
  width: 100vw; /* Full width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background-color: #7fc8f8; /* Soft blue */
  background-image: url('./assest/images/new.jpg.png'); /* Chair image */
  background-repeat: no-repeat;
  background-size: contain; /* Image fits nicely */
  background-position: left center; /* Image stays left */
  
  padding: 100px 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Content on right side */
  box-sizing: border-box;
  color: #0f0f0f;
}

/* Inner container */
.newsletter-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-end;
}

/* Right content */
.newsletter-content {
  max-width: 500px;
  text-align: left;
}

.newsletter-content h5 {
  letter-spacing: 2px;
  font-weight: 600;
  color: #043b4a;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.newsletter-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin-bottom: 30px;
}

/* Form styling */
.newsletter-form {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
}

.newsletter-form button {
  background: #1f4c45;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background: #173b35;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .newsletter-section {
    background-size: cover;
    background-position: center;
    justify-content: center;
    padding: 80px 20px;
  }

  .newsletter-content {
    text-align: center;
  }

  .newsletter-content h2 {
    font-size: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-form input {
    margin-bottom: 10px;
  }

  .newsletter-form button {
    width: 100%;
    border-radius: 8px;
  }
}


.contact-section2 {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #f0f8ff, #eaf5ff);
  padding: 80px 0;
}

.contact-section2 .contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 20px;
}


/* ---------- LEFT SIDE (FORM) ---------- */
.contact-section2 .contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-section2 .contact-form h2 {
  font-size: 2em;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.contact-section2 .contact-form p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1em;
}

.contact-section2 .form-group {
  margin-bottom: 20px;
}

.contact-section2 .contact-form input,
.contact-section2 .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
  transition: 0.3s;
  outline: none;
  background: #fff;
}

.contact-section2 .contact-form input:focus,
.contact-section2 .contact-form textarea:focus {
  border-color: #87ceeb;
  box-shadow: 0 0 6px rgba(135, 206, 235, 0.4);
}

.contact-section2 .btn {
  display: inline-block;
  background: #87ceeb;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section2 .btn:hover {
  background: #1e90ff;
}

/* ---------- RIGHT SIDE (IMAGE) ---------- */
.contact-section2 .contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.contact-section2 .contact-image img {
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .contact-section2 .contact-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-section2 .contact-image img {
    width: 80%;
    max-width: 350px;
  }

  .contact-section2 .contact-form {
    width: 100%;
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: popIn 0.6s ease-out forwards;
}

/* WhatsApp Icon */
.whatsapp-float img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
  pointer-events: none; /* avoids accidental drag/click issues */
}

/* Hover Effects */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Pop-In Animation */
@keyframes popIn {
  0% {
    transform: scale(0.3) translateY(40px);
    opacity: 0;
  }
  80% {
    transform: scale(1.1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Size */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}


/* 🔹 New Product Collection Section */
.new-collection {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.new-collection h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #17655b;
  font-weight: 700;
}

.collection-subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.collection-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.collection-item h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #222;
}

.collection-item p {
  color: #666;
  padding: 0 15px 20px;
  font-size: 0.95rem;
}

/* 🔹 View More Button */
.view-more-container {
  margin-top: 40px;
}

.view-more-btn {
  display: inline-block;
  background-color: #17655b;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #0f4b42;
}


/* ---------- OUR WORKS SECTION ---------- */
.our-works-section {
  position: relative;
  width: 100vw; /* full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #e6f4ff; /* blue bg full width */
  text-align: center;
  padding: 80px 0;
  box-sizing: border-box;
}

.our-works-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* Container centered inside blue bg */
.works-container {
  max-width: 1200px; /* keeps videos centered */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Video items */
.work-item {
  flex: 1 1 30%;
  min-width: 300px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: scale(1.03);
}

.work-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .work-item {
    flex: 1 1 45%;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .work-item {
    flex: 1 1 90%;
    height: 350px;
  }
}
