<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

footer {
  margin-top: 50px;
  border-top: 1px solid gray;
}

.currentNav{
  background-color: #7d6f5c;
  font-weight: bold;
  color: white;

}

.stylesIntro {
  background-color: ;
}

nav {
  padding: 5px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .logo img {
  max-width: 80px;
  margin-right: 10px;
  padding: 5px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: -webkit-gradient(linear, left top, right top, from(#b927fc), to(#2c64fc));
  background: -o-linear-gradient(left, #b927fc 0%, #2c64fc 100%);
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}



.flexCabinetStyle {
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  border-bottom: 1px solid lightgrey;
  padding-bottom: 15px;
}

.cabinetStyleImg {
  width: 50%;
}

.cabinetStyleImg img {
  max-width: 100%;
}

.cabinetStyleText {
  text-align: left;
  width: 50%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: white;
  display: block;
  margin: 7px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(90deg);
      -ms-transform: translateY(-5px) rotate(90deg);
          transform: translateY(-5px) rotate(90deg);
}

section {
    margin: 20px auto;
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  z-index: 2;
  color:  #1f1f1f;
}
.active {
  left: 0;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
  color:  #1f1f1f;
}
.menubar ul li {
  margin-bottom: 32px;
  color:  #1f1f1f;
}

.menubar ul li a {
  text-decoration: none;
color:  #1f1f1f;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #7d6f5c;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
  
}

#homepageBanner {
    background-image: url("../images/homepageBanner.png");
}

.heroBanner {
    background-position: center;    
    display: -webkit-box;    
    display: -ms-flexbox;    
    display: flex;
    height: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px auto;
    -webkit-box-shadow: 10px 10px 10px gray;
            box-shadow: 10px 10px 10px gray;
    background-position: center;
    background-size: cover;
}

.heroBannerTitle h1 {
    font-size: 4.5rem;
    text-align: center;
    margin: 0px;
    color: white;
}

.heroButtons {
    text-align: center;
}

/* Social Media Section Styling */
.socialMediaSection {
  padding: 40px 0;
  text-align: center;
}

.socialMediaIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 15px auto;
  color: white;
}

.socialIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.socialIcon img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.socialIcon:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.socialIcon:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}



.heroButton {
    text-align: center;
    display: inline-block;
    width: 200px;
    max-height: 50px;
    padding: 5px;
    background-color: #7d6f5c;
    margin: 0 10px;
    opacity: 0.8;
    color: black;
    cursor: pointer;
    font-weight: 400;
}

.bodyContainer {
    max-width: 70%;
    margin: 10px auto;
    color:#626262;
    text-align: center;
}



.imageGallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: auto;
}

.imageGallery div {
  position: relative;
    width: 30%;
    margin: 20px 10px;
    border: 5px solid #BAB5A1;
}

.imageGallery div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.explorePortfolioBtn {
  position: absolute;
  bottom: 0px;
  color: #626262;
  background-color: white;
  opacity: 0.8;
  padding: 5px;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;  
  font-weight: bold;
}

.sectionHeading {
    border-bottom: 1px solid #BAB5A1;
    padding-bottom: 3px;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    margin: 10px auto;
}

.testimonials {
    background-color: #7d6f5c;
    padding: 5px;
    -webkit-box-shadow: 10px 10px 10px gray;
            box-shadow: 10px 10px 10px gray;
}

.brownBtn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ab9d8b;
  color: white;
}

.testimonialsFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.testimonialComment {
  padding: 0 7px;
  width: 33%;
}

.contactForm form {
  display: block;
  margin: 20px auto;
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.form-group button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #7d6f5c;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.form-group button:hover {
  background-color: #b3a595;
}

/* Accordion Styling */
.accordianContainer {
  max-width: 70%;
  margin: auto;
}

.accordion-item {
  margin: 10px 0;
  border: 1px solid #7d6f5c;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.accordion-header {
  background-color: #7d6f5c;
  padding: 15px 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.accordion-header h4 {
  margin: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.accordion-content {
  background-color: #f7f7f7;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  -o-transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  text-align: left;
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.accordion-item.active .accordion-content {
  padding: 15px 20px;
  -webkit-transition: max-height 0.5s ease-in, padding 0.5s ease-in;
  -o-transition: max-height 0.5s ease-in, padding 0.5s ease-in;
  transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.accordion-item.active .accordion-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Search Bar and Clear Button Styling */
.faq-search {
  margin: 20px 0;
  text-align: center;
}

.faq-search input {
  padding: 10px;
  width: 70%;
  max-width: 600px;
  border: 1px solid #7d6f5c;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.faq-search button {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  background-color: #7d6f5c;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.faq-search button:hover {
  background-color: #b3a595;
}

/* Adjust margin for the last paragraph in each accordion-content */
.accordion-content p:last-child {
  margin-bottom: 5px;
}

.termsSection {
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.homeBannerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homeBannerLinks span {
  display: block;
  text-align: center;
  margin-top: 20px;
  background-color: #7d6f5c;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8px;
}

.homeBannerLinks span a {
  text-decoration: none;
  color: white;
}

footer {
  margin-top: 50px;
  border-top: 1px solid gray;
}

nav {
  max-width: 100%;
  padding: 5px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .logo img {
  max-width: 80px;
  margin-right: 10px;
  padding: 5px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: -webkit-gradient(linear, left top, right top, from(#b927fc), to(#2c64fc));
  background: -o-linear-gradient(left, #b927fc 0%, #2c64fc 100%);
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: black;
  display: block;
  margin: 7px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(90deg);
      -ms-transform: translateY(-5px) rotate(90deg);
          transform: translateY(-5px) rotate(90deg);
}

/* Dropdown styles for desktop */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content li {
  list-style: none;
  margin-left: 0px;
}

.dropdown-content li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.dropdown-content li a:hover {
  background-color: #7d6f5c;
  color: white;
}

/* Show dropdown on hover for desktop */
.dropdown:hover .dropdown-content {
  display: block;
  list-style-type: none;
}

/* Dropdown for mobile menu */
.menubar .dropdown-content {
  display: none;
  position: static;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 10px;
}

.menubar .dropdown-content li {
  margin-bottom: 5px;
}

/* Toggle the dropdown on click for mobile */
.menubar .dropdown.active .dropdown-content {
  display: block;
}

ul .dropdown-content {
  padding-left: 0px;
  margin-left: 2px;
  text-align: center;
}


section {
    margin: 20px auto;
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color:  #1f1f1f;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #7d6f5c;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}

#homepageBanner {
    background-image: url("../images/heroBanners/homepageBanner.png");
}

#cabinetStylesBanner {
     background-image: url("../images/heroBanners/cabinet-styles.png"); 
}

#quoteBanner {
  background-image: url("../images/heroBanners/quotes-banner.png");
}

#contactBanner {
  background-image: url("../images/heroBanners/contact-banner.png");
}

#wallpanelBanner {
  background-image: url("../images/heroBanners/wall-panel-banner.png");
}

#termsBanner {
  background-image: url("../images/heroBanners/t&amp;cbanner.png");
}

#hallwaycabinets-banner {
  background-image: url("../images/heroBanners/hallway-cabinets-wallpaper.png");  
}

#prepainted-banner {
  background-image: url("../images/heroBanners/pre-painted-banner.png");    
}

#overheadwardrobe-banner {
  background-image: url("../images/heroBanners/overhead-banner.png");
  background-position: top;   
}

#bookcase-banner {
  background-image: url("../images/heroBanners/bookcase-banner.png");  
}

#wardrobes-banner {
  background-image: url("../images/heroBanners/wardrobes-banner.png");    
}

#faqBanner {
  background-image: url("../images/heroBanners/faq-banner.png");     
}

.heroBanner {
    height: 450px;
    background-size:contain;    
    display: -webkit-box;    
    display: -ms-flexbox;    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 10px 10px 10px gray;
            box-shadow: 10px 10px 10px gray;
    background-size: cover;
    background-position: center;
}

.heroBannerTitle h1 {
    font-size: 4.5rem;
    text-align: center;
    margin: 0px;
    color: white;
}

.heroBannerTitle h4 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0px;
  color: white;
}

.heroButtons {
    text-align: center;
}

.heroButton {
    text-align: center;
    display: inline-block;
    width: 200px;
    max-height: 50px;
    padding: 5px;
    background-color: #7d6f5c;
    margin: 0 10px;
    opacity: 0.8;
    color: black;
    cursor: pointer;
    font-weight: 400;
}

.bodyContainer, .explorerContainer {
    max-width: 70%;
    margin: 20px auto;
    color:#626262;
    text-align: center;
}

.galleryContainer {
  width: 75%;
  text-align: center;
  margin: 20px auto;
}

.mainImage {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.thumbnail {
  width: 300px;  
  height: 300px; 
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}


.thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

footer {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #7d6f5c;
  background-color: #9993a1;
  color: white;
}

@media screen and (max-width: 800px) {
.heroBannerTitle {
  max-width: 90%;
  margin: auto;
}

  .bodyContainer {
    max-width: 90%;
    margin: 10px auto;
  }
}

@media (max-width: 650px) {
  .flexCabinetStyle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cabinetStyleImg, .cabinetStyleText {
    width: 100%;
    text-align: left;
  }

  .faq-search {
    margin: 20px 0;
    text-align: center;
  }
  
  .faq-search input {
    padding: 10px;
    width: 90%;
    max-width: 600px;
    border: 1px solid #7d6f5c;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
  }
  
  .faq-search button {
    width: 90%;
    display: block;
    padding: 10px 20px;
    margin: 10px auto;
    border: none;
    background-color: #7d6f5c;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }

  .accordianContainer {
    max-width: 90%;
    margin: 10px auto;
  }
  
  .accordion-item {
    margin: 10px 0;
    border: 1px solid #7d6f5c;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .accordion-header {
    background-color: #7d6f5c;
    padding: 15px 20px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  
  .accordion-header h4 {
    margin: 0;
  }
  
  .accordion-icon {
    font-size: 1.5rem;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  
  .accordion-content {
    background-color: #f7f7f7;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    -o-transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    text-align: left;
  }

  .galleryContainer {
    width: 95%;
    text-align: center;
    margin: 20px auto;
  }

  .thumbnail {
    width: 180px;
    height: 180px;
  }

 @media (max-width: 500px) {
   .thumbnail {
    width: 150px;
    height: 150px;
  }
  }

  .heroBannerTitle h1 {
    font-size: 2.5rem;
  }

  .imageGallery {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .imageGallery div {
    position: relative;
      width: 90%;
      margin: 15px auto;
      -webkit-box-shadow: 5px 5px 5px gray;
              box-shadow: 5px 5px 5px gray;
      border: 10px solid #BAB5A1;
      height: 450px;
  }

}


.testimonialsSlider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonialItem {
  display: none;
  text-align: center;
  font-size: 1.1rem;
}

.testimonialItem.active {
  display: block;
}

.testimonialNav {
  text-align: center;
  margin-top: 20px;
}

.testimonialNav .prev,
.testimonialNav .next {
  cursor: pointer;
  padding: 8px 16px;
  background-color: #7d6f5c;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 5px;
}

.testimonialNav .prev:hover,
.testimonialNav .next:hover {
  background-color: #b3a595;
}

.testimonialsSection {
  padding: 40px 0;
  background-color: #BCBDC1;
  text-align: center;
  color: white;
  color: black;
}

.testimonialsSlider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  color: black;
}

.testimonialItem {
  display: none;
  text-align: center;
  font-size: 1.1rem;
  padding: 5px;
}

.testimonialItem.active {
  display: block;
}

.testimonialItem h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

.testimonialItem p {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
}

.testimonialNav {
  text-align: center;
  margin-top: 20px;
}

.testimonialNav .prev,
.testimonialNav .next {
  cursor: pointer;
  padding: 8px 16px;
  background-color: #7d6f5c;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.testimonialNav .prev:hover,
.testimonialNav .next:hover {
  background-color: #b3a595;
}

.ctaSection {
  background-color: #BCBDC1;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.ctaSection .ctaHeading {
  font-size: 2rem;
  margin-bottom: 20px;
}

.ctaSection p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
}

.ctaSection .ctaButton {
  background-color: #626262;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.ctaSection .ctaButton:hover {
  background-color: #2c2c2c;
}

@media (max-width: 768px) {
  .ctaSection {
    padding: 30px 0;
  }

  .ctaSection .ctaHeading {
    font-size: 1.8rem;
  }

  .ctaSection p {
    font-size: 1rem;
  }

  .ctaSection .ctaButton {
    padding: 12px 25px;
  }
}

.footerContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 40px 5%;
  background-color: #9993a1;
  text-align: left;
}

.footerLinks ul,
.footerLinks li {
  list-style: none;
  padding: 0;
}

.footerLinks a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.footerLinks a:hover {
  color: white;
}

.footerContact p {
  margin: 0;
  font-size: 1rem;
}

.footerNewsletter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footerNewsletter input {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.footerNewsletter button {
  padding: 12px;
  background-color: #7d6f5c;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: white;
  border-radius: 5px;
}

.footerNewsletter button:hover {
  background-color: #b3a595;
}

.footerBottom {
  padding: 20px 0;
  background-color: #7d6f5c;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .footerContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footerLinks,
  .footerContact,
  .footerNewsletter {
    margin-bottom: 20px;
    text-align: center;
  }
}

.faqSummary {
  padding: 10px 0;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #BCBDC1; /* Black background */
  color: black; /* White-ish text */
}

footer {
  margin-top: 50px;
  border-top: 1px solid #444444; /* Slight grey */
}

.currentNav {
  background-color: #2c2c2c;
  font-weight: bold;
  color: white;
}

nav {
  padding: 5px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #BCBDC1; /* Dark background for the nav */
  color: white;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 5px;
          box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 5px;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #444444;
}

.flexCabinetStyle {
  border-bottom: 1px solid #444444;
  color: #d0d0d0; /* Light grey text */
}

.menubar {
  background: #000000;
  color: #f0f0f0;
}

.menubar ul li a {
  color: #f0f0f0;
}

.menubar ul li a:hover {
  background-color: #444444;
}

.heroBanner {
  color: white;
  -webkit-box-shadow: 10px 10px 10px #1a1a1a;
          box-shadow: 10px 10px 10px #1a1a1a;
}

.heroBannerTitle h1 {
  color: #ffffff;
}

.heroButtons .heroButton {
  background-color: #2c2c2c;
  color: white;
}

.bodyContainer {
  color: #e0e0e0;
}

.testimonials {
  background-color: #2c2c2c;
}

.brownBtn {
  background-color: #2c2c2c;
}

.contactForm form {
  background-color: #BCBDC1;
}

.accordion-header {
  background-color: #2c2c2c;
}

.accordion-content {
  background-color: #BCBDC1;
  color: #e0e0e0;
}

.footerContainer {
  background-color: #BCBDC1;
}

.footerBottom {
  background-color: #000000;
}

/* Updated Stylesheet with theme-adjusted colors */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap");

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #BCBDC1; /* Background color */
  color: #1f1f1f; /* Darker text for readability */
}

footer {
  margin-top: 50px;
  border-top: 1px solid #444444; /* Slight grey */
  background-color: #2c2c2c;
  color: white; /* Footer background color */
}

.currentNav {
  background-color: #2c2c2c;
  font-weight: bold;
  color: white;
}

nav {
  padding: 5px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #BCBDC1; /* Updated to blend with theme */
  color: black;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 5px;
          box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 5px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #444444;
  color: white;
}

.flexCabinetStyle {
  border-bottom: 1px solid #444444;
  color: #1f1f1f; /* Darker text for readability */
}

.menubar {
  background: #626262; /* Updated */
  color: #f0f0f0;
}

.menubar ul li a {
  color: #f0f0f0;
}

.menubar ul li a:hover {
  background-color: #444444;
}

.heroBanner {
  color: white;
  -webkit-box-shadow: 10px 10px 10px #1a1a1a;
          box-shadow: 10px 10px 10px #1a1a1a;
  background-size: cover;
}

.heroBannerTitle h1 {
  color: #ffffff;
}

.heroButtons .heroButton {
  background-color: #626262; /* Updated */
  color: white;
}

.bodyContainer {
  color: #1f1f1f; /* Text color adjusted for readability */
}

.testimonials {
  background-color: #626262; /* Updated */
}

.brownBtn {
  background-color: #626262; /* Updated */
}

.contactForm form {
  background-color: #BCBDC1; /* Matches overall background */
}

.accordion-header {
  background-color: #626262; /* Updated */
}

.accordion-content {
  background-color: #f5f5f5;
  color: #1f1f1f;
}

.footerContainer {
  background-color: #626262; /* Updated */
  color: white;
}

.footerBottom {
  background-color: #2c2c2c;
}

.homeBannerLinks span {
  background-color: #626262; /* Updated */
  color: white;
}

.heroBannerTitle h1 {
  color: #ffffff;
}

.socialMediaIcons {
  color: #2c2c2c; /* Adjust social icons color for better contrast */
}

/* Update hover states and interactions */
nav ul li a:hover, .menubar ul li a:hover, .footerLinks a:hover, .socialIcon:hover {
  background-color: #444444; /* Consistent hover effect */
}

/* Footer adjustments */
footer {
  background-color: #2c2c2c;
  color: white;
  border-top: 1px solid #444444;
}

/* General button hover adjustments */
.heroButtons .heroButton:hover, .faq-search button:hover, .testimonialNav .prev:hover, .testimonialNav .next:hover {
  background-color: #444444; /* Slightly darker for hover state */
}

/* Social Media Section */
.socialIcon {
  color: #626262; /* Updated */
}

.socialIcon:hover {
  color: #444444; /* Hover for social icons */
}

.socialIcon:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* Testimonials and CTA Section Updates */
.testimonialItem h4 {
  color: white;
}

.ctaSection {
  background-color: #626262; /* Updated */
  color: white;
}

.ctaSection .ctaButton {
  background-color: #444444;
  color: white;
}

.ctaSection .ctaButton:hover {
  background-color: #2c2c2c;
}</pre></body></html>