body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

:root {
  --primary-color: #a67c66;
  --secondary-color: #545454;
  --bg-color: #f5e9dc;
  --cream-color: #fffdd0;
}

.laptop-nav {
  z-index: 99;
  margin-top: 10px;
  position: fixed;
  width: 80%;
  top: 0 !important;
  background-color: var(--bg-color);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px 5px rgba(166, 124, 102, 0.3);
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.laptop-logo img {
  height: 70px;
  width: 110px;
}

.menus ul > li {
  list-style-type: none;
  padding: 5px;
}

.menus ul > li > a {
  text-decoration: none;
  color: var(--primary-color);
  padding: 8px 2%;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menus ul {
  display: flex;
  align-items: center;
}

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--primary-color);
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

.social-media-icons ul > li {
  list-style-type: none;
  padding: 5px;
}

.social-media-icons ul {
  display: flex;
  align-items: center;
}

.social-media-icons > ul > li > a {
  color: var(--primary-color);
  padding: 8px 2%;
  font-size: 1rem;
  transition: 0.3s;
}

.social-media-icons > ul > li > a:hover {
  color: var(--secondary-color);
  padding: 8px 2%;
  font-size: 1rem;
}

.mobile-nav {
  margin-top: 10px;
  position: fixed;
  width: 80%;
  top: 0 !important;
  background-color: var(--bg-color);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px 5px rgba(166, 124, 102, 0.3);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99 !important;
}

.mobile-logo {
  height: 60px !important;
  width: 80px !important;
  padding: 8px;
}

.menu-btn {
  color: var(--primary-color) !important;
  font-size: 1.2rem;
}

.offcanvas {
  height: 100vh;
  overflow-x: hidden;
  width: 100%;
  z-index: inherit;
}
/* hero section  */

.hero-section {
  background: linear-gradient(#54545477), url(../img/hero.jpg);
  /* background-image: url(../img/hero.jpg); */
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  align-content: center;
}

.hero-matter {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero-main-text {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
  color: white;
}

.hero-sub-text {
  margin-top: 1rem;
  color: white;
  font-weight: 300;
  font-size: 1rem;
}

.hero-cta-btn {
  margin-top: 1rem;
}

.quote-btn {
  margin: 1rem;
  text-decoration: none;
  color: var(--primary-color);
  padding: 10px 3%;
  background-color: var(--secondary-color);
  border-radius: 10px;
  transition: 0.3s;
}

.quote-btn:hover {
  margin: 1rem;
  text-decoration: none;
  color: var(--secondary-color);
  padding: 10px 3%;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.contact-btn {
  margin: 1rem;
  text-decoration: none;
  color: var(--secondary-color);
  padding: 10px 3%;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  margin: 1rem;
  text-decoration: none;
  color: var(--primary-color);
  padding: 10px 3%;
  background-color: var(--secondary-color);
  border-radius: 10px;
}

.offcanvas-body a {
  text-decoration: none;
  color: var(--primary-color);
}

.section-padding {
  padding: 1rem;
}

.core-values {
  background-color: white;
}

.core-values-topic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gradiant-text {
  font-weight: bold; /* optional */
  background: linear-gradient(to right, #a67c66, #545454, #f5e9dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
}

.core-values-topic-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.section-topic {
  margin-top: 1rem;
  /* display: flex; */
  justify-content: center;
  color: var(--primary-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.core-values-sub-topic {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
}

.service-box {
  text-align: center;
  /* border: 1px solid var(--secondary-color); */
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  /* box-shadow: 0 0 1px rgba(0, 0, 0, 0); */
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.service-box::before {
  content: "";
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.service-box:hover,
.service-box:focus,
.service-box:active {
  color: white;
}

.service-box:hover:before,
.service-box:focus:before,
.service-box:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.service-box:hover .service-description {
  color: white;
}

.service-box:hover .service-box {
  box-shadow: 0 2px 4px rgba(166, 124, 102, 0.2),
    /* soft from primary */ 0 4px 8px rgba(84, 84, 84, 0.15),
    /* deeper from secondary */ 0 0 10px rgba(245, 233, 220, 0.5); /* warm glow from bg-color */
}

.service-box:hover .service-icon {
  color: var(--primary-color);
}

.service-icon {
  display: flex !important;
  justify-content: center !important;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 900;
  background-color: var(--secondary-color);
  padding: 10px;
  width: min-content;
  margin: 0 auto; /* centers the circle horizontally */
  border-radius: 50px;
}

.service-title {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.service-description {
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 1rem;
}

.why-choose-us {
  background-color: var(--bg-color) !important;
  display: flex;
  justify-content: center;
}

.why-inner-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-inner-box {
  margin-top: 1rem;
}

.why-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0 5px;
  border-radius: 5px;
}

.why-inner-box-title {
  color: black;
  font-weight: 700;
  font-size: 1.3rem;
}

.why-inner-box-desc {
  color: var(--primary-color);
  font-weight: 300;
  font-size: 1rem;
}

.why-box img {
  /* height: 100%;  */
  max-height: 500px;
  width: 500px;
  border-radius: 25px;
  outline: 3px solid var(--primary-color);
  outline-offset: 5px;
}

.cta {
  /* width: 80%; */
  display: flex;
  justify-content: center;
}

.cta-content {
  border-radius: 25px;
  background: linear-gradient(#54545498), url(../img/cta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  align-content: center;
}

.cta-title {
  font-size: 2rem;
  color: var(--bg-color);
  font-weight: 900;
  text-align: center;
}

.cta-desc {
  font-size: 1rem;
  color: white;
  font-weight: 300;
  text-align: center;
}

.footer {
  background-color: var(--bg-color);
}

.footer-box {
  padding: 10px;
}

.footer-small-text {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.text-justify {
  text-align: justify;
}

.footer-title {
  font-weight: 500;
  color: var(--primary-color);
}

.footer-box li {
  list-style-type: none;
  margin-top: 0.8rem;
}

.footer-box a {
  text-decoration: none;
  color: black;
  padding-top: 1.5rem;
  /* font-weight: 500; */
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#myBtn {
  transform: rotate(-90deg);
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  /* font-size: 18px; */
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: 0.3s;
}

#myBtn:hover {
  background-color: var(--secondary-color);
}

.footer iframe {
  border-radius: 20px;
}


/* about page  */

.about-hero-section {
  background: linear-gradient(#54545477), url(../img/about-hero.jpg);
  /* background-image: url(../img/hero.jpg); */
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  align-content: center;
}

.set-apart {
  background-color: var(--bg-color);
  justify-content: center;
}

.section-box {
  padding: 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  transition: 0.3s;
}

.apart-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  /* background-color: var(--secondary-color); */
  padding: 5px;
  width: fit-content;
  border-bottom: 5px solid var(--secondary-color);
}

.apart-box-title {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
}

.apart-box-desc {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 300;
}

.section-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6), 0 0 12px rgba(255, 255, 255, 0.4);
}

.expert-top {
  display: flex;
  justify-content: space-between;
}

.expert-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.expertise-box {
  padding: 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  transition: 0.3s;
}

.expert-icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0.5;
}

.expertise-box:hover .expert-icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color) !important;
  opacity: 0.5;
}

.expert-summary {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 300;
  text-align: justify;
}

.expert-img {
  border-radius: 20px;
}

.expertise-box:hover {
  transform: scale(1.05);
}

.bg-light-color {
  background-color: var(--bg-color) !important;
}

.service-hero-section {
  background: linear-gradient(#54545477), url(../img/service.jpg);
  /* background-image: url(../img/hero.jpg); */
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  align-content: center;
}

.service-content {
  padding: 0.8rem;
  border: 1px solid var(--bg-color);
  border-radius: 20px;
  transition: 0.3s;
}

.service-content-icon {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.service-content-topic {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 0.8rem;
  text-align: center;
}

.service-sub-topic {
  color: var(--primary-color);
  font-size: 1rem;
  opacity: 0.8;
  text-align: center;
}

.service-content-summary {
  color: var(--secondary-color);
  text-align: justify;
  margin-top: 0.8rem;
  font-weight: 400;
}

.service-small-topic {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.service-content-list li {
  margin-top: 0.8rem;
  list-style-type:disclosure-closed;
}

.service-content:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #a67c66;

}

.service-description a {
  text-decoration: none;
  color: var(--primary-color);
}

.service-box:hover .service-description a {
  color: white !important;
}