@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif !important;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap') format('woff2');
  font-display: swap;
}

img {
  max-width: 100%;
  height: auto;
}

.navigation-items a {
  position: relative;
  transition: 0.3s ease;
}

.navigation-items a:hover::before {
  width: 100%;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050; 
  background-color: transparent; 
  width: 100%; 
}

header.scrolled {
  background-color: #ffffff !important; 
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.scrolled .navigation-items a,
header.scrolled .headerContact a {
  color: #000 !important; 
}

header.scrolled .headerContact img {
  filter: invert(1);
}

header.scrolled img {
  filter: invert(1); 
}

.menu-btn {
  top: 20px;
  right: 20px;
  background: url("/assets/images/menu.png") no-repeat center center;
  background-size: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1050; 
}

.menu-btn.active {
  background: url("/assets/images/close.png") no-repeat center center;
  background-size: 25px;
}


.headerLinks {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.headerLinks.show {
  display: flex;
  gap: 20px;
}

.headerLinks a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}
.headerContact {
  display: flex;
}
.navigation {
  display: none;
}

.navigation.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  padding-top: 80px; 
}



@media (max-width: 1028px) {

  .navigation {
    display: none !important;
  }

  .navigation.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(1, 1, 1, 0.6);
    z-index: 999;
  }

  .navigation.active .navigation-items {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .navigation.active .navigation-items a {
    color: #000 !important;
    position: relative;
    transition: 0.3s ease;
    text-decoration: none;
  }

  .navigation.active .navigation-items a::before {
    color: #000 !important;
    height: 3px;
  }

  .main-header {
    position: absolute; 
  }
}
@media (max-width: 768px) {
  .headerContact {
    display: none;
  }
  .testimonial-header {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-nav-buttons {
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.75rem;
  }
  header.scrolled {
    background-color: transparent !important;
    box-shadow: none !important;
    transition: none !important;
  }
}


@media (min-width: 2560px) {
  html {
    font-size: 20px;
  }
  .display-4 {
    font-size: 3.5rem;
  }
  .btn {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }

}

#testimonialSlider {
  overflow-x: auto; 
  overflow-y: hidden;
  padding: 30px 0;
  scrollbar-width: none;
}

#testimonialSlider::-webkit-scrollbar {
  display: none; 
}

.testimonial-card {
  border: 1px solid #ddd; 
  border-radius: 5px;  
}

.bg-custom {
  background-color: #F5F7F9;
}
.bg-secondCustoom {
  background-color: #dee0e2;
}

#testimonialSlider .testimonial-card {
  margin: 0 auto;
}

#testimonialSlider .testimonial-card .profile-image {
  display: block;
  margin: 0 auto; 
  object-fit: cover; 
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.image-container {
  max-width: 400px;
  margin: 0 auto;
}
.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.form-container {
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-container .btn {
  width: 100%;
  background-color: #8b4513;
  border-color: #8b4513;
}
.form-container .btn:hover {
  background-color: #6f2f0f;
  border-color: #6f2f0f;
}
.footer {
  background-color: #2f4f4f;
  color: white;
  padding: 40px 0;
  bottom: 0;
  width: 100%;
}
.footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.footer a:hover {
  color: #ddd;
}

@media (min-width: 3840px) {
  .image-container {
    max-width: 800px;
  }
  .form-container {
    max-width: 1000px;
  }
}
@media (min-width: 1024px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .homeHeading {
    animation: fadeIn 0.3s ease-in;
  }
}




.card {
  background: white;
  border-radius: 15px;
}

.equal-height-container {
  display: flex;
  align-items: stretch;
}

.equal-height-img {
  height: 93%;
  width: 93%;
  object-fit: cover;
  border-radius: 2rem;
}

.testimonal-card-images{
  object-fit: cover;
}

.floating-cards {
  margin-top: -60px;
}

.floating-cards-icon {
  background-color: #ac6b3d;
}

.btn-warning {
  background-color: #ac6b3d !important;
}

.form-container {
  border-radius: 12px;
  padding: 30px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.btn-custom {
  background-color: #a0551b;
  color: white;
}
.btn-custom:hover {
  background-color: #844214;
}
.bg-card {
  background-color: #AC6B3D;
}
.bi-house-door {
  color: #ac6b3d;
  font-size: 20px;
  margin-right: 8px;
}
.text-color {
  color: #ac6b3d;
  font-size: 18px;
}
.btn-outline {
  border: 2px solid #844214 !important;
  color: #844214 !important;
}

.btn-outline-circle {
  border: 1px solid #72abd9 !important;
  border-radius: 50% !important;
  padding: 0.5rem 0.75rem;
  transition: background-color 0.3s ease;
}

.btn-outline-circle:hover {
  background-color: #72abd9 !important;
  color: #fff !important;
}

.homeHeading
  .navigation-items
  a
  .about-us-heading
  .our-services-heading
  .Personal-Products-heading{
  font-family: "Space Grotesk" !important;
}
.hero-section-description {
  font-family: "Manrope" !important;
}
.about-us-description .Personal-Products-description .Personal-Products-card-description {
  color: #2b3e3d;
  font-family: "Manrope" !important;
  font-size: 14px;
}
.floating-cards-title {
  font-family: "Space Grotesk";
  font-size: 20px;
  margin-bottom: 5px;
}
.floating-cards-description {
  font-size: 14px;
  font-family: "Manrope";
}
.why-us-cards-description{
  font-size: 14px;
  font-family: "Manrope";
  font-weight: bold;
}
.about-us-btn {
  background-color: #ac6b3d !important;
}

.learn-more-btn {
  color: #72abd9 !important;
}

.Personal-Products-card-heading {
  font-family: "Space Grotesk" !important;
  color: #2B3E3D !important;
}

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

#prevBtnStaff, #nextBtnStaff {
  border: 2px solid #72abd9 !important;
  border-radius: 50% !important;
  padding: 0.5rem 0.75rem;
  background-color: #72abd9 !important;
  color: #fff !important;
  transition: background-color 0.3s ease;
  width: 40px; 
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

#prevBtnStaff:hover, #nextBtnStaff:hover {
  background-color: #5a9bcf !important;
  color: white !important;
}

#prevBtnStaff i, #nextBtnStaff i {
  color: black !important; 
}

#prevBtnStaff:hover i, #nextBtnStaff:hover i {
  color: white !important;
}

#staffSlider {
  overflow: hidden;
  scrollbar-width: none; 
}

#staffSlider::-webkit-scrollbar {
  display: none;
}


.footer-heading{
  font-size: 30px;
  font-family:  "Space Grotesk", sans-serif;
}
.footer-ancor a .hours-text .footer-ancor{
  font-family: "Space Grotesk", sans-serif;
}


  .navigation-items a.active {
    text-decoration: underline !important;
    text-underline-offset: 4px; 
    text-decoration-thickness: 2.5px; 
    color: #fff !important;
  }
  

.page-section {
  height: 100%;
  padding: 50px 0px;
  box-sizing: border-box;

}

.contact-us-heading{
  
  font-size: 50px;
    color: #2B3E3D !important;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-label{
  font-size: 14px;
}

.hours-container {
  display: flex;
  align-items: center;
  color: #fff; 
}

.icon-col {
  margin-right: 10px;
  color: #72ABD9;
}

.icon-col img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.text-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.divider {
  margin: 4px 0;
  border: 0;
  border-top: 1px solid #fff; 
  width: 100%;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

.page-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
}

#staffSlider > * {
  max-width: 100%;
}

.navigation.active {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

section#services.bg-light.text-center.page-section {
  color: #333333; /* Darker text for better readability */
}

section#get-a-quote.page-section.bg-white {
  color: #333333; /* Darker text for better readability */
}

.text-color {
  color: #333333 !important; /* was likely too light like #999 */
}
body {
  color: #212529; /* Bootstrap’s default body color, good contrast */
}
.about-us-btn {
  background-color: #0056b3 !important; /* dark blue or any color with high contrast to white */
  color: #ffffff;
}
#services {
  color: #212529; /* dark grey, ensures 7:1 ratio on #f8f9fa */
}
#get-a-quote {
  color: #212529; /* Bootstrap body text again is safe */
}
a.btn.text-white {
  background-color: #0069d9; /* dark enough for white text */
  color: #fff;
}


#staffNavButtons{
  background-color: red;
  display: none !important;
}

.main-header.scrolled {
  background: #fff !important;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.main-header.scrolled .navigation-items a,
.main-header.scrolled .navigation-items .text-white {
  color: #222 !important;
}

/* Active section underline */
.navigation-items a.active-section,
.footer-ancor a.active-section {
  text-decoration: underline !important;
  font-weight: 600;
   text-underline-offset: 4px; 
  text-decoration-thickness: 2.5px; 
  color: #fff !important;

}
.page-section{
  padding-top: 100px;
}
@media (max-width: 767.98px) {
  .page-section {
    padding-top: 10px;
  }
   .custom-mobile-padding {
    padding: 50px 10px !important;
  }
}
 
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #000; /* Dark Slate Gray */
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #4f6f6f; /* Lighter on hover */
}

