#section-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-color: #171717;
  
}

.header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.sticky {
  padding-top: 69px;
}

.sticky .header {
  padding: 0 20px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(52, 52, 52, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
  /*padding-top: ;*/
}

.header .main-nav .navbar-nav {
  gap: 25px
}

.header .main-nav .nav-link {
  font-family: var(--bold-font);
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.header .main-nav .nav-link:link,
.header .main-nav .nav-link:visited {
  color: white;
}

.header .main-nav .nav-link:hover,
.header .main-nav .nav-link:active {
  color: #c2c2c2;
}

.header .main-nav .offcanvas-end {
  width: 84%;
}

.header .main-nav .offcanvas ul {
  margin: 0;
}

.header .main-nav .offcanvas ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E0E0E0;
}

.header .main-nav .offcanvas ul li a:link,
.header .main-nav .offcanvas ul li a:visited {
  color: #252525;
}

.header .main-nav .offcanvas ul li a:active,
.header .main-nav .offcanvas ul li a:hover {
  font-weight: bold;
}

.header .main-nav .offcanvas ul li:last-child a {
  border: none;
}

.hero-box {
  text-align: center;
  color: white;
  font-family: var(--bold-font);
}

.img-box {
  max-width: 500px;
  max-height: 814px;
  min-height: 200px;
}

.img-box img {
  width: 78%;
}

.hero-box .text-box {
  max-width: 500px;
}

.heading-primary {
  font-size: 2rem;
}

.hero-description {
  font-size: 1.4rem;
  font-weight: normal;
}

/* section capabilities*/

#section-capabilities{
  background: #F9F9F9;
  padding-top: 20px;
}

.capabilities-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.capabilities-wrapper:after {
  content: "Gear";
  position: absolute;
  /*top: 0;*/
  /*bottom: 0;*/
  opacity: 0.5;
  right: -20%;
  bottom: 10%;
  color: #F1F1F1;
  transform: rotate(-90deg);
  font-family: var(--bold-font);
  font-size: 245px;
  font-weight: 600;
  line-height: 334px;
  text-align: left;
  z-index: -1;

}

.capabilities-text-box {
  max-width: 725px;
  margin: 0 auto 30px;
}



.capability-box {
  width: 180px; /* Set a fixed width */
  height: 230px; /* Set a fixed height */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.capability-box:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.capability-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fits inside the box */
}



/* Section process */


.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap; /* Allow wrapping for small screens */
}

.process-step {
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2), 
              -6px -6px 15px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease-in-out;
  width: 200px; /* Keep consistent size */
  max-width: 100%;
}

.process-step:hover {
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25), 
              -8px -8px 20px rgba(255, 255, 255, 0.6);
}

.process-step img {
  width: 100%;
  max-width: 150px; 
  height: auto;
}

.arrow {
  font-size: 50px;
  font-weight: bold;
  color: black;
}

/* Responsive styles */
@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    gap: 10px;
  }

  .arrow {
    display: none; 
  }

  .process-step {
    width: 80%;
    max-width: 250px; 
  }
}


#section-trusted_by  {
  background: #F9F9F9;
  padding-top: 30px;
}


.logo-wrapper {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.magic-mirror-logo {
  background-color: #333;
}

.magic-mirror-logo:hover {
  background-color: #007b
}

/* Resize Houzz logo */
.houzz-logo img {
  max-width: 30%;
  height: auto;
  margin: 0 auto;
}

.offer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EFEFEF;
  border-radius: 10px;
  text-align: center;
  border: 1px;
  width: 150px;
  height: 150px;
}

.offer-img {
  width: 100%;
}

.offer-text {
  font-family: var(--bold-font);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

/*Contact section */

#section-contact {
  padding-top: 30px;
  background-color: white;
}

.contact-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
}

.contact-text-box p {
  color: #4D4D4D;
  text-align: center;
  line-height: 1.8rem;
}


.contact-img-title {
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  width: 200px;
  left: 7%;
  top: 7%;
  z-index: 1;
}

.contact-img-title a {
  color: white;
  line-height: 1.8rem;
  font-weight: bold;
}

.contact-img-title p {
  font-size: 1.125rem;
}

.contact-description {
  position: relative;
  border-radius: 0 0 1.25rem 1.25rem;
  background: #171717;
  top: -20px;
  padding: 30px 20px;
  z-index: -1;
}

.contact-description p {
  color: white;
  line-height: 1.8rem;
}

.contact-description a:link,
.contact-description a:visited {
  color: white;
  font-weight: bold;
}

.contact-description a:hover,
.contact-description a:active {
  color: #c2c2c2;
  text-transform: uppercase;
}


.footer {
  padding: 30px 15px;
  background: #19201E;
  color: white;
}

.footer-logo {
  width: 180px;
}

.footer-statement {
  line-height: 1.8rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.ready {
  opacity: 50%;
  /*margin-bottom: 0;*/
}

.get-started {
  font-size: 1.3rem;
}

.footer-heading {
  font-weight: 600 !important;
  letter-spacing: -0.01281rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.copyright {
  opacity: 50%;
}

/* section-in_house */
#section-in_house h2 {
  color: #2B2B2B;
  font-weight: bold;
}

#section-in_house p {
  color: #4D4D4D;
  line-height: 1.8rem;
}
/* 
.decoration-box {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
} */

.decoration-box h4 {
  font-family: var(--bold-font);
  color: #2B2B2B;
  font-size: 1.25rem;
  margin-top: 23px;
}

.decoration-box img {
  max-width: 100%;
  height: auto;
  border-radius: 11px;
}