

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Medium.ttf) format('truetype');
}

@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-Regular.ttf) format('truetype');
}

@font-face {
  font-family: "Playfair Display";
  src: url(fonts/PlayfairDisplay-VariableFont_wght.ttf) format('truetype');
}

@font-face {
  font-family: "CreamCake";
  src: url(fonts/CreamCake.otf) format('opentype');
}

	:root {
	  --primary: #2B6CB0;
	  --secondary: #FFA500;
	  --white: #ffffff;
	  --brown-light: #d4bfae;
	  --brown-dark: #8a6e50;
	  --gray: #333;
	}
	* h2 {
		font-family: "Playfair Display";
		font-size: 2rem;
		margin-bottom: 1rem;
		color: #8b5e3c;
	}

	/*Home-Quote Section*/

	.home-quote {
	  background-color: #fdf9f6;
	  padding: 2rem;
	  border-top: 2px solid var(--brown-light);
	  border-bottom: 2px solid var(--brown-light);
	}

	.home-quote {
		font-family: "Cream Cake";
		font-style: italic;
		font-size: 1.8rem;
		background-color: #ffffff;
		padding: 8rem 1rem;
		text-align: center;
		margin: 5rem 3rem;
	}

	/*End of Home-Quote Section*/

	.demo {
	  display: flex;
	  justify-content: center; /* centers the video horizontally */
	  align-items: center;
	  padding: 80px;
	  background-color: #8a6e50; /* light background for contrast */
	}

	.demo video {
	  max-width: 100%;
	  border-radius: 10px;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}

	body {
	  margin: 0;
	  font-family: 'Inter', sans-serif;
	  line-height: 1.6;
	  }

	header {
	  background: white;
	  padding: 1rem 2rem;
	  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  position: sticky;
	  top: 0;
	  z-index: 100;
	}

	.logo {
	  display: flex;
	  align-items: center;
	  font-size: 18px;
	  color: var(--gray);
	  font-weight: bold;
	}

	.logo img {
	  height: 50px;
	  width: auto;
	  margin-right: 10px;
	}

	.profile-icon {
	  width: 35px;
	  height: 35px;
	  margin-left: 10px;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}

	.profile-icon img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  border-radius: 50%;
	}

	.profile-link:hover .profile-icon {
	  transform: scale(1.1);
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	  border-color: #8b5e3c;
	   border-radius: 50%;
	}
	
/* Base nav styling */
nav {
	  display: flex;
	  align-items: center;
	  margin-left: auto;
	}
	.nav-container {
	  display: flex;
	  align-items: center;
	  gap: 15px; /* Adjust space between nav and burger */
	}
	
	nav a {
	  margin: 0 1rem;
	  text-decoration: none;
	  color: black;
	  font-weight: 500;
	  transition: color 0.3s ease, font-size 0.3s ease;
	}

	nav a:hover {
	  color: brown;
	  font-size: 18px;
	  font-weight: bold;
	}

desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  color: black;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease, font-size 0.3s ease;
}

 /* Desktop Active State */
 .desktop-nav a.active {
  color: #A57B5B !important;
  font-weight: 700;
  position: relative;
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #A57B5B;
  animation: underline 0.3s ease;
}

@keyframes underline {
  from { width: 0 }
  to { width: 100% }
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}


/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction:column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-nav a:hover {
  color: brown;
  background-color: #f9f9f9;
}

.mobile-nav.active {
  transform: translateX(0);
}

/* Mobile Active State */
.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a.active {
  color: #A57B5B !important;
  font-weight: 700;
  background: rgba(165, 123, 91, 0.1);
  border-left: 3px solid #A57B5B;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}




.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.form-box h3 {
	font-size: 1.3rem;
	color: #5a3813;
	margin: initial;
    margin-left: 130px;
    margin-bottom: 1rem;
}


  .home-about {
    flex-direction: column;
    gap: 2rem;
  }

  .about-content-section {
    flex-direction: column;
    
  }
}


/*Home Page Sections*/

/* About Section Styles */
.about-section {
  background-color: #fff;
  padding: 4rem 0;
  border-top: 2px solid var(--brown-light);
  border-bottom: 2px solid var(--brown-light);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h2 {
  font-size: 2.5rem;
  color: #8a6e50;
  font-family: 'Merriweather', serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--brown-light);
  margin: 0 auto;
}

.about-content-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text-content {
  flex: 1;
}

.about-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  text-align: center;
}

.about-main-image {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}


.about-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--brown-dark);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.about-cta:hover {
  background-color: var(--brown-light);
  transform: translateY(-3px);
}

/*Homepage-Services Section*/
.home-services {
  padding: 3rem 1rem;
  text-align: center;
}

.home-services h2 {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 2.5rem;
  color: #8a6e50;
}

.home-services p {
	font-size: 1.3rem;
	font-family: "Poppins", sans-serif;
	text-align: center;
	line-height: 1.7;
	margin: 0 auto;
    color: #555;
    margin-bottom: 3rem;
}

.service-card {
	background-color: #a07a53;
	color: #fff;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #4a2d10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius:50px;
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-align: left;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.service-icon {
  margin-bottom: 0; /* Override existing margin-bottom */
}
.service-card p {
	font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
	text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/*End of Home-Services*/

.gallery-section {
  text-align: center;
}
.gallery-section {
	background-color: #ffffff;
}

.subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 3rem;
}

.gallery-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: #eaeaea;
  color: #000;
  border: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #5b3b1f;
  color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 5rem;
}

.gallery-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.overlay .date {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.overlay a {
  color: #d6b190;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.overlay a:hover {
  color: white;
  text-decoration: underline;
}

/* About Page Styles */
.about-hero {
  background-color: #f9f5f0;
  text-align: center;
  background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('images/texture-bg.jpg');
  background-size: cover;
  background-position: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  color: #8a6e50;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-hero .subtitle {
  font-size: 1.5rem;
  color: #a57b5b;
  font-weight: 300;
}

/* About Content Section */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #8a6e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #a57b5b;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.featured-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #8a6e50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #a57b5b;
  transform: translateY(-2px);
}

/* About-Mission/Vision Container */
.mission-vision_container {
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #8a6e50; 
  width:100%;
}

.mission, .vision {
	 border-top: 2px solid var(--brown-light);
	  border-bottom: 2px solid var(--brown-light);
  padding: 3rem;
  border-radius: 8px;
  flex: 1;
  text-align: center;
}

.mission h2, .vision h2 {
  color: #4a2d10;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.mission p, .vision p {
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 625px;
  color: white;
  margin-bottom: 5rem;
}


/* About-Quote Section */
	.about-quote {
	  background-color: #fdf9f6;
	  padding: 2rem;
	  border-top: 2px solid var(--brown-light);
	  border-bottom: 2px solid var(--brown-light);
	}

	.about-quote {
		font-family: "Cream Cake";
		font-style: italic;
		font-size: 1.8rem;
		background-color: #ffffff;
		padding: 6rem 1rem;
		text-align: center;
		margin: 5rem 3rem;
	}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-quote h2 {
  color: #8a6e50;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-quote p {
	font-family:"Cream Cake", script;
	font-size: 2rem;
	line-height: 1.3;
	color: #28292A;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 8rem;
	font-weight: normal;
}

.about-image img {
  height: 700px;
  object-fit: cover;
  padding: 10px;
}

.services, .gallery-grid, .testimonial-grid {
  display: grid;
  justify-items: stretch;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 50px;
}


.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.search-input,
.filters select {
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 220px;
  max-width: 100%;
}

.search-input:focus,
.filters select:focus {
  outline: none;
  border-color: #a07a53;
  box-shadow: 0 0 0 2px rgba(160, 122, 83, 0.2);
}

/* Services Page Styles */
.services-section {
  padding: 4rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #8a6e50;
  margin-bottom: 1rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
		margin-bottom: 5rem;
}

.services-card {
	background-color: #a07a53;
	color: #fff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.service-section p.subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Services Grid - 3 in first row, 2 centered in second */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Center the last two items when there are exactly 5 items */
.service-grid > :nth-child(4) {
  grid-column: 2 / span 1; /* Place 4th item in middle column */
}

.service-grid > :nth-child(5) {
  grid-column: 3 / span 1; /* Place 5th item in right column */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button:hover {
  background-color: #333;
  
}

/*More Services*/
.service-section {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
}

.service-section h2{
	text-align: center;
    margin: 10px auto;
    max-width: 700px;
}

.service-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #8a6e50;
}

.service-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
  border-top: 2px solid var(--brown-light);
  padding-top: 2rem;
  flex-wrap: wrap;
  margin-right: 50px;
}

.service-box.reverse {
  flex-direction: row-reverse;
}

.service_images {
  background-color: #A57B5B;
  width: 500px;
  height: 400px;
  flex-shrink: 1;
  border-radius: 4px;
  object-fit: cover;
}

.service-text {
  flex: 1;
  max-width: 600px;
  margin-bottom: 2rem;
}

.service-text h3 {
  font-size: 1.5rem;
}

.service-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
  text-align:left;
}

.service-text ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #555;
    text-align:left;
}

.inquire-btn:hover {
  background-color: #8b6145;
}

/*End Services Page Styles */

/*faqs-questions*/
.faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq {
  border-bottom: 1px solid #666;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-question {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  color: #444;
}

.faq-question::after {
  content: ">";
  color: #666;
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 0.5rem 1rem;
  color: #444;
  font-size: 16px;
}

.faq-answer.show {
  display: block;
}

.faq-answer .highlight {
  color: #f5a623;
  font-weight: bold;
}

.faq-answer a {
  color: #1a73e8;
  text-decoration: underline;
}

.highlight {
  color: #f5a623;
  font-weight: bold;
}

/*testimonials*/
.reviews-contacts {
  background: #8a6e50;
  color: white;
  padding: 10px 0;
}

.testimonials h2 {
  color: #302316;
  font-size: 2.5rem;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}

.testimonial-card {
  background-color: #c8ad8d;
  padding: 1.5rem;
  width: 90%;
  border-radius: 10px;
  color: #000;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px; /* space for arrows */
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.testimonial-card {
  background: #c7ab94;
  padding: 20px;
  border-radius: 10px;
  flex: 0 0 calc(33.333% - 13.33px); /* 3 cards in a row */
  box-sizing: border-box;
  text-align: center;
}

.profile-pic {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: white;
  border: none;
  cursor: pointer;
  z-index: 2;
  color: #333;
  padding: 5px 10px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.arrow.prev {
  left: 0;
}

.arrow.next {
  right: 0;
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}


.quote {
  background-color: #4b2f13;
  text-align: center;
  font-style: italic;
  margin-top: 2rem;
  padding: 2rem;
}

.scroll-down {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scroll-down a {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.carousel-indicators .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators .dot.active {
  background-color: #333;
}
/*end of reviews*/

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 20vh;
}

.hero-content h1{
   font-size: 50px;
   text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);

}

.hero-content p{
   font-size: 20px;
   text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);

}

.cta-button:hover {
  background-color: #a57b4f;
}

.contact-hero {
	  padding: 10px;
	  text-align: center;
	}

	.contact-hero h2 {
	  font-size: 2.5rem;
	  margin-bottom: 5px;
	}

	.contact-hero p {
	  font-size: 19px;
	}

	.contact-container {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 2rem;
	  margin-top: 2rem;
	}

	.contact-form {
	  flex: 1;
	  padding: 2rem;
	  border-radius: 10px;
	  color: #fff;
	  background-color: #a3744d;
	}

	.contact-form h2 {
	  margin-bottom: 1rem;
	}

	.form-group label {
	  display: block;
	  font-weight: 600;
	  color: black;
	  font-size: 15px;
	  margin-bottom: 0.5rem;
	}
	
	.form-control {
	  width: 30%;
	  padding: 0.75rem;
	  border: none;
	  border-radius: 5px;
	  font-size: 1rem;
	}

	.form-control:focus {
	  outline: 2px solid #d7a47d;
	}

	.two-column-form .form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .two-column-form .form-row .form-group {
      flex: 1;
    }
    .two-column-form .form-group.full-width {
      width: 100%;
    }
    .two-column-form .form-group label {
      display: block;
      margin-bottom: 0.5rem;
    }
    .two-column-form .form-control {
      width: 90%;
      border-radius: 5px;
      border: 2px solid gray;
    }
	
	/* contact page */
.center {
  text-align: center;
  font-size: 19px;
  height: 80px;
}

.center h2 {
    text-align: center;
    font-size: 2.5px;
    color: #333;
}

.reviews-contacts h2{
    color: #4a2d10;
	font-size: 2.5rem;
}

.cta-button {
  background-color: #5b3b1f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-items: center;
}

	.cta-button:hover {
	  background-color: #3c2410;
	}

	.contact-info p,
	.contact-info i {
	  margin-bottom: 0.5rem;
	  font-size: 1rem;
	}

	.business-hours h3 {
	  margin-top: 1.5rem;
	}

	.map-container {
	  margin-top: 1rem;
	  padding: 1.5rem;
	  text-align: center;
	  border-radius: 5px;
	  color: #555;
	}

	.review-section {
	  margin-top: 3rem;
	  padding: 2rem 1rem;
	}

	.review-section h2 {
	  text-align: center;
	  margin-bottom: 2rem;
	}

	.review-card {
	  display: flex;
	  align-items: flex-start;
	  gap: 1rem;
	  margin-bottom: 2rem;
	}

	.review-card img {
	  width: 100px;
	  height: 100px;
	  background-color: #b0906d;
	  border-radius: 10px;
	}

	.review-card h3 {
	  margin-bottom: 0.25rem;
	}

	.column-layout {
	  display: flex;
	  flex-direction: column;
	  gap: 2rem;
	}

	.contact-container {
	  max-width: 800px;
	  margin: 0 auto;
	  margin-bottom: 5rem;
	}
	
	.radio-group {
	  display: flex;
	  margin-top: 0.5rem;
	  flex-direction: column;
	}

	.time-buttons {
	display: flex;
    gap: 0.1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
	}

	.time-buttons button {
	  padding: 0.5rem 1rem;
	  border: 1px solid #555;
	  background-color: white;
	  color: #000;
	  border-radius: 4px;
	  cursor: pointer;
	  transition: all 0.3s ease;
	}

	.time-buttons button:hover {
	  background-color: #007aff;
	  color: white;
	}
	
	.time-buttons button.selected {
	  background-color: #007aff;
	  color: white;
	}

	.note {
	  font-size: 0.75rem;
	  color: #fff;
	  margin-top: 0.3rem;
	}

	
label {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
  color: #fff;
}

input[type="file"] {
    width: 50%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #fff;
    margin-left: 7rem;
}

button[type="submit"] {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4a2d10;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

/*footer */
	footer {
	  color: #fff;
	  background-color: #333;
	  align-items: center;
	  
	}
	
	.footer-bottom p{
    color: #fff;
    background-color: #333;
    align-items: center;
    text-align: center;
}

	.footer-review {
	  display: flex;
	  justify-content: space-between;
	  background-color: #f1f1f1;
	  padding: 2rem;
	  color: #000;
	}

	.review-form {
	  display: flex;
	  flex-direction: column;
	  gap: 0.5rem;
	  width: 45%;
	  padding: 10px;
	}

	.review-form input,
	.review-form textarea {
	  padding: 0.5rem;
	  border: 1px solid #aaa;
	  border-radius: 5px;
	}

	.review-form button {
	  background-color: #5a3813;
	  color: white;
	  border: none;
	  padding: 0.5rem;
	  border-radius: 5px;
	  cursor: pointer;
	}

	.review-text {
	  width: 40%;
	  margin: 0 auto; 
	  text-align: center; 
	}

	.view-reviews {
	  background-color: #5a3813;
	  text-decoration: none;
	  color: white;
	  padding: 0.5rem 1rem;
	  border: none;
	  border-radius: 5px;
	  margin-top: 1rem;
	  cursor: pointer;
	}

	.review-box {
  text-decoration: none;
  color: inherit;
  display: block;
}
.review-box:hover {
  cursor: pointer;
}


	.footer-main {
	  background-image: url('images/img_footr.jpg'); 
	  background-size: cover;
      background-repeat: no-repeat;
	  background-position: center;
	  display: flex;
	  padding: 2rem;
	  padding-left: 5rem;
	  flex-wrap: wrap;
	}

	.footer-brand {
	  display: flex;
	  align-items: flex-start;
	  width: 40%;
	}

	.footer-brand img {
	  width: 150px;
	  margin-right: 2rem;
	}

	.footer-links {
	  align-content: center;
	  display: grid;
	  grid-template-columns: repeat(2, auto); 
	  gap: 2rem;
	  margin-top: 140px;
    margin-right: 250px;
    margin-left: -300px;
	}

	.footer-links a {
	  color: #fff;
	  text-decoration: none;   
	  font-size: 0.95rem;
	  transition: color 0.3s ease;
	}

	.footer-links a:hover {
	  color: #f7d7b4;
	  text-decoration: underline;
	}
		
	.footer-review {
	  display: flex;
	  justify-content: space-between;
	  border-top: 2px solid var(--brown-light);
	  align-items: center;
	  background-color: #ffffff;
	  padding: 3rem 4rem;
	  color: #000;
	  gap: 2rem;
	  flex-wrap: wrap;
	}

	/* Apply the background image only for the profile page */
body.profile-page {
  margin: 0;
  height: 100vh; 
  background-image: url('images/img_footr.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-container {
  width: 100%;
  max-width: 900px; 
  background-color: white;
  padding: 2rem;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-box {
  width: 80%;
  padding: 1rem;
}

.auth-toggle {
  display: flex;
  gap: 1rem;
}

button.active {
  background-color: #007BFF;
  color: white;
}
.description {
  text-align: center;
  font-size: 1rem;
  color: #333;
}
.review-text {
  flex: 1;
  padding: 1rem;
}

.footer-contact-card {
  border-style: solid;
  background-color: #e9d5c4;
  color: #000;
  padding: 2rem;
  border-radius: 10px;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-contact-card img {
  width: 30px;      
  height: 30px;     
  margin-right: 8px; 
  vertical-align: middle; 
  border-radius: 15px;
}

.footer-contact-card h2 {
  font-size: 1.5rem;
  margin: 0;
}
.footer-brand h3 {
  font-size: 2rem;
  margin: 0;
}

.footer-contact-card p {
  margin: 0.5rem 0;
  line-height: 1.6;
  text-align: left;
}

.footer-brand p{
	font-size: 18px;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.circle-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 0.5rem;
  background-color: #5a3813;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-icons img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.social-icons a:hover img {
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.inquire a {
  background-color: #5a3813;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  text-decoration: none;
}

.service-section a {
  background-color: #5a3813;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  margin-left: 50px;
  text-decoration: none;
}

.footer-contact-card a {
	background-color: #5a3813;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  margin-left: 50px;
  text-decoration: none;
}

.auth-container {
  background-color: #fffaf7;
  border: 1px solid #d9c3b2;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 470px;
  max-width: 400px;
  
}

.auth-toggle {
  display: flex;
  justify-content: center;
}

.auth-toggle button {
  background-color: #c2a489;
  border: none;
  padding: 0.6rem 1.2rem;
  color: white;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auth-toggle button:not(.active) {
  background-color: #e0d2c2;
  color: #5a3813;
}

.auth-toggle button.active {
  background-color: #8b5e3c;
  color: white;
}

.form-box {
  display: flex;
  flex-direction: column;
}

.form-box h2 {
  text-align: center;
  color: #5a3813;
  margin-bottom: 1rem;
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box input {
  padding: 0.6rem;
  margin-bottom: 0.8rem;
  border: 1px solid #c7ab94;
  border-radius: 5px;
  background-color: #fff8f3;
}

.form-box button {
  background-color: #8b5e3c;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-box button:hover {
  background-color: #6e4628;
}

.hidden {
  display: none;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.password-field input {
  width: 100%;
  padding: 0.6rem 4.5rem 0.6rem 0.6rem; /* extra right padding for button */
  border: 1px solid #c7ab94;
  border-radius: 5px;
  background-color: #fff8f3;
}

.toggle-password {
  position: absolute;
  right: 8px;
  font-size: 0.8rem;
  top: 1px;
  Left padding: 1rem ;
  Right padding: 2.5rem;
}

.toggle-password:hover {
  background-color: #6e4628;
}

	/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 35px;               /* Extra-wide scrollbar */
  height: 20px;              /* Makes horizontal scrollbar equally thick */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;       /* Light gray track */
  border-radius: 10px;       /* Rounded track */
  border: 3px solid white;   /* Creates padding effect */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8B5A2B 0%, #A57B5B 100%); /* Diagonal gradient */
  border-radius: 10px;       /* Matches track roundness */
  border: 5px solid #f1f1f1;/* Creates inset border effect */
  box-shadow: inset 0 0 3px rgba(0,0,0,0.2); /* Adds depth */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #A57B5B 0%, #8B5A2B 100%); /* Reversed gradient on hover */
}

/* For Firefox */
html {
  scrollbar-width: auto;     /* 'auto' makes it thicker than 'thin' */
  scrollbar-color: #8B5A2B #f1f1f1; 
}

/* Optional: Add smooth transition */
::-webkit-scrollbar-thumb {
  transition: all 0.3s ease;
}

body {
  scrollbar-gutter: stable; 
  background-color :#ffffff;
}

	/*------------------------------ Responsive adjustments -------------------------------------*/
	@media screen and (max-width: 768px) {
	
	body {
		overflow-x:hidden;
	}
	
  .header {
    width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }
  
   .desktop-nav {
    display: none;
	position: absolute;
    right: 20px;
    top: 20px;
  }

.hamburger {
    display: flex;
	position: absolute;
        right: 1rem;
        top: 1.2rem;
  }

  .mobile-nav {
    display: block;
  }

 .desktop-nav {
    display: none;
  }

 .hamburger {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    z-index: 1000;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav.active {
    display: flex;
  }
  
  
  /* Ensure logo and hamburger are properly spaced */
  .profile-icon {
	  width: 35px;
	  height: 35px;
	  margin-left: 10px;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin-right: 20px;
        margin-top: -5px;
	}

	.profile-icon img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  border-radius: 50%;
	}

	.profile-link:hover .profile-icon {
	  transform: scale(1.1);
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	  border-color: #8b5e3c;
	   border-radius: 50%;
	}
  
  .logo {
    margin-right: auto;
  }
  
  .logo img {
    height: 30px;
  }
  
	nav {
		width: 100%;
		justify-content: space-around;
	  }
	  
	nav a {
		margin: 0 0.25rem;
		font-size: 0.8rem;
	  }
	
	/*About Section*/
	
	.about-header h2 {
    font-size: 2rem;
  }
  
  .about-text-content p {
    font-size: 1rem;
  }
  
  .about-quote p {
    font-size: 1.8rem;
  }
  
   .about-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    order: -1;
  }
  
  .about-text-content {
    text-align: center;
  }
  
  .about-quote p {
    font-size: 2rem;
  }
  
  .about-us-heading h2 {
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
  }
  
  .home-about {
      
    flex-direction: column;
    align-items: center;
    text-align: center;
	padding: 1rem;
  }
  
  .home-about-content {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .home-about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
	text-align:left;
  }

  .home-about-image img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }
	
.faq-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-left: 250px;
}
/* About Content Section */
    
    .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-quote p {
    font-size: 2rem;
  }
    
  .about-us h2{
	  text-align:left;
    }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content-section {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .mission-vision_container {
    flex-direction: column;
    gap: 2rem;
  }

  .mission, .vision {
    margin: 1rem 0;
    width: 100%;
	padding:20px;
	box-sizing:border-box;
  }

  .mission p, .vision p {
    font-size: 1rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .map-container {
    width: 100% !important;
    height: 300px !important;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
  }
  
  .about-quote {
    padding: 3rem 1rem;
  }
  
  .about-quote h2 {
    font-size: 2.2rem;
  }
  
  .about-quote h3 {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .demo video {
    padding: 0 20px;
  }

  .services-page {
    padding: 2rem 1rem;
    text-align: center;
  }
	
  .services-page h2 {
    font-size: 2rem;
  }

  .services-subheading {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
	
  .service-content h3 {
    font-size: 1.2rem;
  }
  
    .service-box {
    flex-direction: column;
  }

  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
  }
  
  .services-section {
    padding: 2rem 1rem;
  }

  .services-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .service-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
    text-align: left;
  }

  .service-box.reverse {
    flex-direction: column;
  }

  .service_images {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .service-text {
    width: 100%;
    padding: 0 0.5rem;
  }

  .service-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .service-text p,
  .service-text ul {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-text ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
	margin-bottom: 2rem;
  }

  .service-text li {
    margin-bottom: 0.5rem;
  }

  .inquire-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  .service-section a {
    background-color: #5a3813;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    margin-left: 2px;
    text-decoration: none;
}
	
    .services {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: 5rem;
    }
	
	 /* Gallery Section Styles */
	.gallery-section {
		text-align: center;
		max-width: 1200px;
		margin: 0 auto;
	}

	.gallery-section h2 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: #8a6e50;
	}

	.gallery-section .subtitle {
		font-size: 1.1rem;
		color: #666;
		margin-bottom: 40px;
		line-height: 1.6;
	}

	.gallery-grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
		margin-top: 40px;
	}
	
	.gallery-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 5rem;
}

	.gallery-card:hover {
		transform: translateY(-5px);
	}

	.gallery-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.gallery-item {
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease;
		width: 90%;
		height:500px;
	}

	.gallery-item:hover {
		transform: translateY(-5px);
	}

	.gallery-item img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		display: block;
	}

	.gallery-item h3 {
		padding: 20px;
		font-size: 1.2rem;
		color: #333;
		margin: 0;
	}

	.gallery-buttons {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
		margin-bottom: 2.5rem;
	}

	.filter-btn {
		padding: 0.6rem 1.4rem;
		background: #ddd;
		color: #333;
		border: none;
		border-radius: 999px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.filter-btn:hover,
	.filter-btn.active {
		background: var(--brown-dark);
		color: #fff;
	}
	/* End of Gallery Page Styles */

  /* About section adjustments */
  .about-us {
    padding: 1rem;
	margin-left: -220px;
  }
  
  .about-content, .about-image {
    flex: 1 1 100%;
    padding: 0.5rem 0;
  }
  
  .about-image img {
    height: auto;
    max-height: 300px;
  }
  
  /* Contact form adjustments */
  .contact-container {
    flex-direction: column;
  }
  
  .two-column-form .form-row {
    flex-direction: column;
  }
  
  .two-column-form .form-control {
    width: 95%;
  }
  
  .map-container {
    height: 250px;
    margin-top: 1rem;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 5rem;
	width: 700px;
}
  
  /* Footer adjustments */
  .footer-review {
    flex-direction: column;
    padding: 1rem;
  }
  
  .review-form, .review-text {
    width: 100%;
  }
  
  .footer-main {
    padding: 1rem;
  }
  
  .footer-brand, .footer-links {
    margin-left:50px;
    margin-bottom: 1rem;
	width: 85%;
	margin-top: 0;
  }
  
  .footer-contact-card {
	width: 50%;
    margin-left: 140px;
  }
  
  /* Text adjustments for mobile */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p, li {
    font-size: 0.9rem;
  }
}

/*Review Section/Contact*/
/* Reviews Section */
.reviews {
    display: grid;
    background: #8a6e50;
    padding: 60px;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container h2 {
    font-size: 2rem;
    align-items: center;
}

.home-services-subheading {
  text-align: center;
  margin: 10px auto;
  max-width: 700px; /* optional, for nicer readability */
  color: #333; /* optional, to make text more distinct */
}
.home-quote p {
	font-size: 1.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: #302316;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.reviews-homepage {
    display: grid;
    background: #8a6e50;
    padding: 60px;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.review-box:hover {
    transform: translateY(-5px);
}

.review-content p {
	color: #333;
	margin: 30px;
}

.customer-photo {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.review-content {
    padding: 25px;
}

.review-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}
	.stars {
   color: #ffc107;
   margin-top: 0.5rem;
	}

	.star-filter {
    margin: 20px 0;
    text-align: right;
  }

  .star-filter label {
    font-weight: bold;
    margin-right: 10px;
  }

  .star-filter select {
    padding: 8px 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .two-column-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.two-column-form .form-group {
  flex: 1 1 45%;
}

.two-column-form .form-group.full-width {
  flex: 1 1 100%;
}

.two-column-form .form-group label {
  display: block;
  font-weight: 600;
  color: black;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.form-control:focus {
  outline: 2px solid #d7a47d;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

	.review-form {
	  display: flex;
	  flex-direction: column;
	  gap: 0.5rem;
	  width: 45%;
	  padding: 10px;
	}

	.review-form input,
	.review-form textarea {
	  padding: 0.5rem;
	  border: 1px solid #aaa;
	  border-radius: 5px;
	}

	.review-form button {
	  background-color: #5a3813;
	  color: white;
	  border: none;
	  padding: 0.5rem;
	  border-radius: 5px;f
	  cursor: pointer;
	}

	.review-text {
	  width: 40%;
	  margin: 0 auto; 
	  text-align: center; 
	}

	.review-text h2 {
	  margin-top: 0;
	}

	.view-reviews {
	  background-color: #5a3813;
	  color: white;
	  padding: 0.5rem 1rem;
	  border: none;
	  border-radius: 5px;
	  margin-top: 1rem;
	  cursor: pointer;
	}
.review-box {
  display: block; /* ensure block so hidden ones don't affect layout */
	}
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-box {
  display: block;
}
