/* ---------- HERO ---------- */
.hero {
  background: url('../images/Hero.jpg') no-repeat center center/cover;
  height: 500px; 
  display: flex; 
  justify-content: center; 
  align-items: flex-end;
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 32px;
  background: rgba(0,0,0,0.5);
  padding: 15px 25px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.5s ease forwards;
}
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MAIN SECTION */
.fti-experience-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

/* FLEX CONTAINER */
.fti-exp-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BLOCK STYLE */
.fti-exp-block {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.fti-exp-block:hover {
  transform: translateY(-6px);
  border-color: #b69f1d;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* EXACT WIDTH RATIO */
.b1 { flex: 0 0 15%; }
.b2 { flex: 0 0 15%; }
.b3 { flex: 0 0 35%; }
.b4 { flex: 0 0 35%; }

/* Icons */
.fti-exp-block i {
  font-size: 35px;
  color: #b69f1d;
  margin-bottom: 6px;
}

/* Count-Up number */
#expCount {
  font-size: 40px;
  color: #333;
  font-weight: 800;
}

/* Image block */
.fti-exp-img {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: block;
  margin: auto;
}

/* Block 3 headline */
.fti-exp-title {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
}

/* Paragraph block */
.b1 p {
  font-size: 16px;
    color: #6d6c6c;
    line-height: 1.7;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.b4 p {
  font-size: 16px;
    color: #6d6c6c;
    line-height: 1.7;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet */
@media (max-width: 1024px) {
  .b1, .b2 { flex: 0 0 25%; }
  .b3, .b4 { flex: 0 0 50%; }
}

/* Mobile */
@media (max-width: 600px) {
  .b1, .b2, .b3, .b4 { flex: 0 0 100%; }
}



/* ---------- SERVICES ---------- */
.services {
  padding: 60px 20px; 
  text-align: center;
}
.services h2 {
  display: inline-block; 
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.services h2::after {
 content: '';
    display: block;
    width: 65px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}
.service-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; 
  margin-top: 30px;
}
.service {
  background: #f9f9f9; 
  border-radius: 10px; 
  overflow: hidden;
  transition: transform 0.3s;
}
.service:hover {
  transform: scale(1.05);
}
.service img {
  width: 100%; 
  height: 200px; 
  object-fit: cover;
}
.service h3 {
  padding: 15px; 
  background: #fff;
}
.services p {
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #6d6c6c;
}

/* ---------- MASONRY GALLERY ---------- */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
  padding: 20px 0;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.masonry-item:hover {
  transform: scale(1.03);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}
.masonry-item h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 16px;
}
.view-more-btn {
  display: inline-flex;
      align-items: center;
      gap: 8px;
  padding: 12px 32px;
  background: #3a1614;
  color: #fff;
  font-size: 12px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.view-more-btn:hover {
  background: #b69f1d;
  transform: translateY(-2px);
}

.view-more-btn {
      position: relative;
      overflow: hidden;
    }

    /* Icon hidden initially */
    .view-more-btn::after {
      content: "→"; /* You can replace with ▸, ›, or an SVG */
      opacity: 0;
      transform: translateX(-8px);
      transition: all 0.3s ease;
      position: relative;
    }

    /* On hover, show + slide icon */
    .view-more-btn:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
/* Tablets (≤ 992px) — reduce to 2 columns */
@media (max-width: 992px) {
  .masonry-gallery {
    column-count: 2;
  }
}

/* Mobile (≤ 768px) — ONLY 1 column */
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 1 !important;
  }

  .masonry-item img {
    width: 100%;
    height: auto;
  }
}
/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: 60px 20px; 
  text-align: center; 
  background: #fafafa;
}
.portfolio h2 {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.portfolio h2::after {
 content: '';
    display: block;
    width: 65px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}
.filters {
  margin: 20px 0;
}
.filters button {
  border: none; 
  background: #3a1614; 
  color: #fff;
  padding: 10px 20px; 
  margin: 2px;
  cursor: pointer; 
  transition: 0.3s;
}
.filters button.active, .filters button:hover {
  background: #b69f1d;
}
.portfolio-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px; 
  margin-top: 30px;
  margin-bottom: 30px;
}
.portfolio-item {
  position: relative; 
  overflow: hidden; 
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  transition: transform 0.3s;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio p {
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #6d6c6c;
  opacity: .9;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox .prev,
.lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* HERO */
.kitchen-hero {
  position: relative;
  background: url('../images/modularkitche.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kitchen-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.4);
}

.kitchen-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.kitchen-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}



.kitchen-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO SECTION */
.kitchen-intro {
  padding: 50px 12%;
  text-align: center;
}

.kitchen-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.kitchen-intro p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURE BLOCKS */
.kitchen-feature-block {
  padding: 40px 12%;
}

.kitchen-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.kitchen-text {
  flex: 1;
}

.kitchen-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.kitchen-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kitchen-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.kitchen-btn:hover {
  background: #b69f1d;
}

.kitchen-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.kitchen-images img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.kitchen-images img:hover {
  transform: scale(1.05);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .kitchen-hero-content h1 {
    font-size: 32px;
  }
  .kitchen-block {
    flex-direction: column;
  }
  .kitchen-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.bathroom-hero {
  position: relative;
  background: url('../images/bathroom2.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bathroom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.bathroom-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.bathroom-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.bathroom-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO */
.bathroom-intro {
  padding: 50px 12%;
  text-align: center;
}

.bathroom-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bathroom-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURE BLOCKS */
.bathroom-feature-block {
  padding: 40px 12%;
}

.bathroom-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.bathroom-text {
  flex: 1;
}

.bathroom-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.bathroom-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.bathroom-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.bathroom-btn:hover {
  background: #b69f1d;
}

.bathroom-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.bathroom-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.bathroom-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.bathroom-cta {
  text-align: center;
  padding: 40px;
}

.bathroom-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.bathroom-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bathroom-hero-content h1 {
    font-size: 30px;
  }
  .bathroom-block {
    flex-direction: column;
  }
  .bathroom-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.living-hero {
  position: relative;
  background: url('../images/innerliving.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.living-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.living-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.living-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.living-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO */
.living-intro {
  padding: 50px 12%;
  text-align: center;
}

.living-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.living-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* BLOCK LAYOUT */
.living-feature-block {
  padding: 40px 12%;
}

.living-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.living-text {
  flex: 1;
}

.living-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.living-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.living-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.living-btn:hover {
  background: #b69f1d;
}

.living-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.living-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.living-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.living-cta {
  text-align: center;
  padding: 40px;
}

.living-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.living-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .living-hero-content h1 {
    font-size: 30px;
  }

  .living-block {
    flex-direction: column;
  }

  .living-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.wardrobe-hero {
  position: relative;
  background: url('../images/wardrobe-main.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wardrobe-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.wardrobe-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.wardrobe-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.wardrobe-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO */
.wardrobe-intro {
  padding: 50px 12%;
  text-align: center;
}

.wardrobe-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wardrobe-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* BLOCK LAYOUT */
.wardrobe-feature-block {
  padding: 40px 12%;
}

.wardrobe-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.wardrobe-text {
  flex: 1;
}

.wardrobe-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.wardrobe-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.wardrobe-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.wardrobe-btn:hover {
  background: #b69f1d;
}

.wardrobe-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.wardrobe-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.wardrobe-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.wardrobe-cta {
  text-align: center;
  padding: 40px;
}

.wardrobe-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.wardrobe-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wardrobe-hero-content h1 {
    font-size: 30px;
  }

  .wardrobe-block {
    flex-direction: column;
  }

  .wardrobe-images {
    grid-template-columns: 1fr 1fr;
  }
}


/* HERO */
.decor-hero {
  position: relative;
  background: url('../images/decorative-main.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decor-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.decor-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.decor-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.decor-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO */
.decor-intro {
  padding: 50px 12%;
  text-align: center;
}

.decor-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.decor-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* BLOCK LAYOUT */
.decor-feature-block {
  padding: 40px 12%;
}

.decor-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.decor-text {
  flex: 1;
}

.decor-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.decor-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.decor-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.decor-btn:hover {
  background: #b69f1d;
}

.decor-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.decor-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.decor-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.decor-cta {
  text-align: center;
  padding: 40px;
}

.decor-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.decor-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .decor-hero-content h1 {
    font-size: 30px;
  }

  .decor-block {
    flex-direction: column;
  }

  .decor-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.walldecor-hero {
  position: relative;
  background: url('../images/walldecorinner.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.walldecor-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.walldecor-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.walldecor-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.walldecor-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO SECTION */
.walldecor-intro {
  padding: 50px 12%;
  text-align: center;
}

.walldecor-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.walldecor-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURE BLOCK */
.walldecor-feature-block {
  padding: 40px 12%;
}

.walldecor-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.walldecor-text {
  flex: 1;
}

.walldecor-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.walldecor-text p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.walldecor-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.walldecor-btn:hover {
  background: #b69f1d;
}

.walldecor-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.walldecor-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.walldecor-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.walldecor-cta {
  text-align: center;
  padding: 40px;
}

.walldecor-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.walldecor-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .walldecor-hero-content h1 {
    font-size: 30px;
  }

  .walldecor-block {
    flex-direction: column;
  }

  .walldecor-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.kids-hero {
  position: relative;
  background: url('../images/kidsroominner.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kids-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.4);
}

.kids-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.kids-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.kids-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO SECTION */
.kids-intro {
  padding: 50px 12%;
  text-align: center;
}

.kids-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.kids-intro p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURE BLOCKS */
.kids-feature-block {
  padding: 40px 12%;
}

.kids-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.kids-text {
  flex: 1;
}

.kids-text h3 {
  font-size: 24px;
  color: #3a16114;
  margin-bottom: 10px;
}

.kids-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kids-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.kids-btn:hover {
  background: #b69f1d;
}

.kids-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.kids-images img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.kids-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.kids-cta {
  text-align: center;
  padding: 40px;
}

.kids-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.kids-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kids-hero-content h1 {
    font-size: 32px;
  }
  
  .kids-block {
    flex-direction: column;
  }
  
  .kids-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* HERO */
.dining-hero {
  position: relative;
  background: url('../images/diningroom.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dining-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 22, 20, 0.45);
}

.dining-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.dining-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.dining-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* INTRO */
.dining-intro {
  padding: 50px 12%;
  text-align: center;
}

.dining-intro h2 {
  font-size: 28px;
  color: #3a1614;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dining-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURE BLOCK */
.dining-feature-block {
  padding: 40px 12%;
}

.dining-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.dining-text {
  flex: 1;
}

.dining-text h3 {
  font-size: 24px;
  color: #3a1614;
  margin-bottom: 10px;
}

.dining-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.dining-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3a1614;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.dining-btn:hover {
  background: #b69f1d;
}

.dining-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.dining-images img {
  width: 100%;
  border-radius: 6px;
  transition: 0.3s ease;
}

.dining-images img:hover {
  transform: scale(1.05);
}

/* CTA */
.dining-cta {
  text-align: center;
  padding: 40px;
}

.dining-cta-btn {
  padding: 12px 35px;
  background: #b69f1d;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.dining-cta-btn:hover {
  background: #3a1614;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dining-hero-content h1 {
    font-size: 30px;
  }

  .dining-block {
    flex-direction: column;
  }

  .dining-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------------------------------
   BEDROOM HERO
--------------------------------------------------- */
.bedroom-hero {
      position: relative;
    background: url(../images/bedroom.png) center / cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bedroom-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.bedroom-hero-content {
  position: relative;
    text-align: center;
    color: #fff;
}

.bedroom-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bedroom-hero-content p {
  font-size: 18px;
  font-weight: 400;
  opacity: .9;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
}
.breadcrumb a { color: #b69f1d; }

/* ---------------------------------------------------
   INTRO SECTION
--------------------------------------------------- */
.bedroom-intro {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.bedroom-intro h2 {
  font-size: 32px;
  color: #b69f1d;
  margin-bottom: 12px;
}

.bedroom-intro p {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ---------------------------------------------------
   FEATURE BLOCKS
--------------------------------------------------- */
.bedroom-feature-block {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.bedroom-block {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  align-items: center;
}

.bedroom-text {
  flex: 1;
}

.bedroom-text h3 {
  font-size: 28px;
  color: #b69f1d;
  margin-bottom: 10px;
}

.bedroom-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.bedroom-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #b69f1d;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: .2s ease;
}

.bedroom-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.bedroom-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bedroom-images div {
  background: #e8e8e8;
  height: 180px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

/* Reverse layout */
.bedroom-block:nth-child(even) {
  flex-direction: row-reverse;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 900px) {
  .bedroom-block {
    flex-direction: column;
  }
  .bedroom-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bedroom-hero-content h1 { font-size: 30px; }
  .bedroom-hero-content p { font-size: 15px; }
  .bedroom-images { grid-template-columns: 1fr; }
}
/* ---------- CLIENTS ---------- */
.clients {
  position: relative;
  padding: 80px 0px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.clients-overlay {
  background-image: url('../images/testimonial-bg.jpg');
  padding: 60px 10px;
  background-size: cover;
  background-position: center;
}
.clients h2 {
  font-size: 18px;
  display: inline-block;
      margin-bottom: 10px;
  text-transform: uppercase;
}

 .clients h2::after {
 content: '';
    display: block;
    width: 65px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}
.clients p {
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #6d6c6c;
  margin-bottom: 10px; 
  line-height: 1.6;
  opacity: .9;
}

/* ---------- TESTIMONIAL SLIDER ---------- */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
.testimonial-avatar {
  width: 80px; 
  height: 80px;
  border-radius: 50%; 
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
}
.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
  color: #fff;
}
.testimonial h4 {
  font-weight: bold;
  margin-top: 5px;
  color: #fff;
}
.testimonial-btn {
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.testimonial-btn:hover {
  background: rgba(255,255,255,0.6);
}
.testimonial-prev { left: -50px; }
.testimonial-next { right: -50px; }
.testimonial-dots {
  margin-top: 20px;
}
.testimonial-dots span {
  display: inline-block;
  width: 12px; 
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
}
.testimonial-dots span.active {
  background: #fff;
}

/* ---------- PARTNERS ---------- */
.partners {
  padding: 40px 20px; 
  text-align: center; 
  background: #fff; 
  position: relative; 
  overflow: hidden;
}

.partners h2 {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.partners h2::after {
 content: '';
    display: block;
    width: 65px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}

.partners-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.partners  p {
 font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #6d6c6c;
    margin-bottom: 10px;
    line-height: 1.6;
	opacity: .9;
}

.partners img {
  height: 90px; 
  margin: 15px; 
  flex-shrink: 0;
  transition: 0.3s;
}

.partners img:hover {
  transform: scale(1.1);
}
.partner-btn {
  position: absolute; 
  top: 70%; 
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6); 
  color: white; 
  border: none;
  font-size: 12px; 
  cursor: pointer; 
  padding: 10px 15px; 
  border-radius: 50%;
}
.partner-btn:hover {
  background: rgba(0,0,0,0.9);
}
.partner-prev { left: 10px; } 
.partner-next { right: 10px; }


/* PARTNERS MARQUEE */
.partners {
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

/* Container */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

/* Marquee content */
.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollLeft 8s linear infinite;
}

/* Logos */
.marquee-content img {
  width: 140px;
  height: auto;
  opacity: 0.9;
  filter: grayscale(40%);
  transition: 0.3s ease;
}

.marquee-content img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.12);
}

/* FADE EDGE EFFECT (Netflix Style) */
.fade-left, .fade-right {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* LEFT → RIGHT SCROLL */
.marquee-right .marquee-content {
  animation: scrollRight 6s linear infinite;
}

/* RIGHT → LEFT SCROLL */
.marquee-left .marquee-content {
  animation: scrollLeft 6s linear infinite;
}

/* Animations */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Pause on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 600px) {
  .marquee-content img {
    width: 100px;
  }
  .fade-left, .fade-right {
    width: 80px;
  }
}

/* ===== INTERIOR KEYWORDS SECTION ===== */
.interior-keywords {
  background: #f8f8f8;
  padding: 50px 10%;
  text-align: center;
  border-top: 1px solid #eee;
}

.interior-keywords h2 {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.interior-keywords h2::after {
    content: '';
    display: block;
    width: 165px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}
.interior-keywords p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto;
  letter-spacing: .425px
}

/* -------- Terms & Conditions Section -------- */
section.terms {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
}

section.terms h2 {
  font-size: 26px;
  margin: 30px 0 15px;
  color: #2b1f25; /* your theme color */
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

section.terms h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: #444;
}

section.terms p {
  margin-bottom: 15px;
  text-align: justify;
}

section.terms ul {
  margin: 15px 0 20px 25px;
  padding: 0;
}

section.terms ul li {
  margin-bottom: 10px;
  list-style: disc;
}

section.terms a {
  color: #b8860b; /* gold-ish highlight */
  text-decoration: none;
  transition: 0.3s;
}

section.terms a:hover {
  color: #d4a017;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  section.terms {
    padding: 20px 15px;
    margin: 30px 10px;
    font-size: 15px;
  }

  section.terms h2 {
    font-size: 22px;
  }

  section.terms h3 {
    font-size: 18px;
  }
}
/* =========================
   MASONRY GALLERY SECTION
========================= */

/* =========================
   WHY CUSTOMIZED INTERIORS
========================= */

/* -------- Privacy Policy Section -------- */
section.privacy {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #fff;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 8px;
}

/* Main Page Heading */
section.privacy h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #2b1f25; /* theme primary */
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

/* Section Headings */
section.privacy h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #444;
  border-left: 4px solid #b8860b; /* gold accent */
  padding-left: 10px;
}

section.privacy h3,
section.privacy h4 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #555;
}

/* Paragraphs */
section.privacy p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Lists */
section.privacy ul {
  margin: 15px 0 20px 25px;
  padding: 0;
}

section.privacy ul li {
  margin-bottom: 10px;
  list-style: disc;
}

/* Links */
section.privacy a {
  color: #b8860b;
  text-decoration: none;
  transition: 0.3s;
}

section.privacy a:hover {
  color: #d4a017;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  section.privacy {
    padding: 20px 15px;
    margin: 30px 10px;
    font-size: 15px;
  }

  section.privacy h1 {
    font-size: 24px;
  }

  section.privacy h2 {
    font-size: 20px;
  }
}

/* -------- Sitemap Section -------- */
.sitemap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sitemap h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #2b1f25; /* theme dark */
  position: relative;
}

.sitemap h1::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #b8860b; /* gold accent */
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Grid Layout */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Sitemap Cards */
.sitemap-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
}

.sitemap-card:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sitemap-card h2 {
  font-size: 20px;
  color: #2b1f25;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sitemap-card h2 i {
  color: #b8860b; /* gold icon */
  font-size: 18px;
}

.sitemap-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-card ul li {
  margin-bottom: 10px;
}

.sitemap-card ul li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  font-size: 1rem;
    line-height: 1.5;
    letter-spacing: .425px;
  }

.sitemap-card ul li a i {
  color: #b8860b;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.sitemap-card ul li a:hover {
  color: #b8860b;
}

.sitemap-card ul li a:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .sitemap {
    padding: 20px 15px;
    margin: 30px 10px;
  }

  .sitemap h1 {
    font-size: 26px;
  }

  .sitemap-card {
    padding: 20px;
  }
}
/* -------- Breadcrumb -------- */
.breadcrumb {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding: 10px 15px;
  font-size: 14px;
  color: #555;
}

.breadcrumb a {
  color: #b8860b; /* gold accent */
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #d4a017;
  text-decoration: underline;
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #888;
}

.breadcrumb .current {
  color: #333;
  font-weight: 600;
}

/* -------- FAQ Section -------- */
.faqs {
  max-width: 900px;
  margin: 70px auto;
  padding: 40px 20px;
}

.faqs h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2b1f25;
  position: relative;
}
.faqs h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #b8860b;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #b8860b;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg); /* plus → cross */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #555;
  line-height: 1.6;
  opacity: 0; /* start hidden */
  transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px !important; /* big enough for your content */
  padding: 15px;
  opacity: 1; /* fade in */
}

    /* Breadcrumb */
    .breadcrumb {
      background: #f8f8f8;
      padding: 12px 20px;
      font-size: 14px;
      margin-bottom: 20px;
    }
    .breadcrumb a {
      color: #b8860b;
      text-decoration: none;
    }
    .breadcrumb span {
      margin: 0 5px;
      color: #555;
    }

    /* FAQ Section */
    .faqs {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
    }
    .faqs h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 2rem;
      color: #2b1f25;
    }
    .faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background: #fff;
      transition: all 0.3s ease;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 15px 20px;
      font-size: 1rem;
      font-weight: 600;
      background: #f9f9f9;
      border: none;
      outline: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }
    .faq-question:hover {
      background: #f1f1f1;
    }
    .faq-question i {
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question i {
      transform: rotate(45deg); /* plus → cross */
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      line-height: 1.6;
      color: #555;
      transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.4s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 15px 20px;
      opacity: 1;
    }
	
	/* Benefits Section */
.benefits {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  text-align: center;
}

.benefits h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #2b1f25;
  font-weight: 700;
}

.benefits .intro-text {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #2b1f25;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
/* Full-Width Hero Section */
.benefits-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("..//images/benefits-hero-bg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: flex-end; /* Push content to bottom */
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.benefits-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(43, 31, 37, 0.8), rgba(43, 31, 37, 0.2));
  z-index: 1;
}

.benefits-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  margin-bottom: 10px; /* lifts text a bit from absolute bottom */
   /* Animation */
  opacity: 0;
  transform: translateY(80px); /* deeper start for more effect */
  animation: slideUp 3s ease-in-out forwards; /* slower (3s) */
}
/* Keyframes for slide-up effect */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.benefits-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.benefits-hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #f1f1f1;
}

.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #b8860b;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  background: #8b6508;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-hero h1 {
    font-size: 2rem;
  }
  .benefits-hero p {
    font-size: 1rem;
  }
  .benefits-hero .hero-content {
    margin-bottom: 40px;
  }
}

		/* CTA Button in Benefits Section */
.benefits-cta {
  margin-top: 50px;
}

.benefits-cta .cta-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #b8860b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.benefits-cta .cta-btn:hover {
  background: #8b6508;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* WHY US Section */
.whyus {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.whyus-container {
  max-width: 1200px;
  margin: auto;
}

.whyus h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #2b1f25;
}

.whyus-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.whyus-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.whyus-item i {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 15px;
}

.whyus-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.whyus-item p {
  font-size: 0.95rem;
  color: #666;
}

.whyus-cta {
  margin-top: 40px;
}

.whyus-cta .btn {
  background: #b8860b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whyus-cta .btn:hover {
  background: #8b6508;
}
/* TEAM SECTION */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  text-align: center;
}

.team-section .section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #2b1f25;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.08);
}

/* Unique Overlay */
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 31, 37, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.team-member:hover .team-overlay {
  opacity: 1;
}

.overlay-content a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s, transform 0.3s;
}

.overlay-content a:hover {
  color: #ff6b6b;
  transform: scale(1.2);
}

/* Member Details */
.team-member h3 {
  margin: 15px 0 5px;
  font-size: 1.4rem;
  color: #222;
}

.team-member .role {
  font-size: 1rem;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 20px;
}

/* MINI HERO BANNER ANIMATION */
@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mini-hero {
  position: relative;
  width: 100%;
  height: 45vh; /* You can adjust height per design */
  background: url('..//images/about-us.jpg') no-repeat center center;
  background-size: cover;   /* ensures full coverage */
  background-attachment: scroll; /* avoid issues on mobile (instead of fixed) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.mini-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
}

.mini-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px; /* increased width */
  width: 90%;
  padding: 20px;
}

.mini-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: capitalize;
  opacity: 0;
  animation: slideFadeUp 2.5s ease forwards;
}

.mini-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.5;
   opacity: 0;
  animation: slideFadeUp 3.5s ease forwards;
}

.mini-hero-content .btn-hero {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #b69f1d; /* gold accent */
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  animation: slideFadeUp 4.5s ease forwards;
}

.mini-hero-content .btn-hero:hover {
  background: #8b6508;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .mini-hero { height: 55vh; }
  .mini-hero-content h1 { font-size: 2.4rem; }
  .mini-hero-content p { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  .mini-hero { height: 50vh; padding: 30px 20px; }
  .mini-hero-content { width: 95%; }
  .mini-hero-content h1 { font-size: 2rem; }
  .mini-hero-content p { font-size: 1rem; }
}
@media (max-width: 480px) {
  .mini-hero { height: auto; padding: 60px 20px; }
  .mini-hero-content h1 { font-size: 1.6rem; }
  .mini-hero-content p { font-size: 0.95rem; }
  .btn-hero { padding: 10px 20px; font-size: 0.9rem; }
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li {
  position: relative;
  padding-left: 28px; /* space reserved for tick */
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-points li::before {
  content: "\f00c"; /* solid check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745; /* green tick */
}


/* =========================
   FULL WIDTH BOTTOM BANNER
========================= */
.bottom-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.bottom-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
  color: #333;
}

.about-section h2, 
.about-section h3 {
  margin-bottom: 15px;
  color: #222;
  text-align: left;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
    letter-spacing: .425px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-size: 1rem;
}

.about-points li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
}

.team-btn-wrapper {
margin-bottom: 20px;
}

.btn-team {
  display: inline-block;
  padding: 8px 18px;
  background: #3a1614;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-team:hover {
  background: #b69f1d
}

.our-story {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  line-height: 1.5;
  color: #333;
}

.our-story h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #222;
  text-align: center;
}


 .our-story h2::after {
    content: '';
    display: block;
    width: 65px;
    margin: 0 auto;
    border-bottom: 3px solid;
    height: 1px;
    box-sizing: border-box;
}

.our-story p {
  margin-bottom: 18px;
  font-size: 1rem;
  text-align: justify;
  letter-spacing: .425px;
}

/* Story Hero Section */
.story-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('..//images/our-story.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.story-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;  /* increased from 900px */
  width: 90%;         /* makes it flexible */
  padding: 20px;
}

.story-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.story-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.btn-hero {
  display: inline-block;
  padding: 12px 25px;
  background: #8b6508;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-hero:hover {
  background: #b69f1d;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .story-hero-content h1 {
    font-size: 2.5rem;
  }
  .story-hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .story-hero {
    height: 50vh;
    padding: 40px 20px;
  }
  .story-hero-content {
    width: 95%;
  }
  .story-hero-content h1 {
    font-size: 2rem;
  }
  .story-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .story-hero {
    height: auto;
    padding: 60px 20px;
  }
  .story-hero-content h1 {
    font-size: 1.6rem;
  }
  .story-hero-content p {
    font-size: 0.95rem;
  }
  .btn-hero {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.stats-section {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 80px 20px;
      background: #faf7f2;
    }

    .stat-box {
      text-align: center;
      flex: 1;
    }

    .stat-box img {
      width: 60px;
      margin-bottom: 15px;
    }

    .stat-title {
      font-size: 16px;
      font-weight: bold;
      color: #FFD700; /* yellow */
      margin-bottom: 8px;
    }

    .stat-number {
      font-size: 28px;
      font-weight: bold;
      color: #3a1614;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .stats-section {
        flex-direction: column;
      }
      .stat-box {
        margin-bottom: 30px;
      }
    }
	
	
	#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  display: none;
  background: #000;
  color: #fff;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
}

#backToTop i {
  pointer-events: none;
}

/* =========================
   TIMELINE BASE STYLES
========================= */
.timeline-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.timeline-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #b69f1d;
}

/* Timeline container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #3a1614; /* green vertical line */
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: inline-block;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  letter-spacing: .425px;
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: #3a1614;
  font-size: 1.3rem;
}

/* Circle dots */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #b69f1d;
  border-radius: 50%;
  z-index: 3;
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

/* =========================
   RESPONSIVE STYLES
========================= */

/* Tablets & below */
@media (max-width: 1024px) {
  .timeline::before {
    left: 20px; /* move line to the left */
    transform: none;
  }
  .timeline-item {
    width: 100%;
    padding-left: 60px; /* space for line & dot */
    text-align: left !important;
    left: 0 !important;
  }
  .timeline-item::before {
    left: 20px;
    right: auto;
  }
  .timeline-content {
    max-width: 100%;
  }
}

/* Mobile text scaling */
@media (max-width: 480px) {
  .timeline-section h2 {
    font-size: 1.6rem;
  }
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  .timeline-content p {
    font-size: 0.95rem;
  }
}



    /* Responsive Typography */
    @media (max-width: 992px) {
      .faqs h2 {
        font-size: 1.8rem;
      }
      .faq-question {
        font-size: 0.95rem;
      }
    }
    @media (max-width: 768px) {
      .faqs {
        padding: 30px 15px;
      }
      .faqs h2 {
        font-size: 1.6rem;
      }
      .faq-question {
        font-size: 0.9rem;
        padding: 12px 15px;
      }
      .faq-answer {
        padding: 0 15px;
      }
    }
    @media (max-width: 480px) {
      .faqs h2 {
        font-size: 1.4rem;
      }
      .faq-question {
        font-size: 0.85rem;
      }
    }







