@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
footer {
  margin-top: auto;
}
:root {
  --blue-color: #1894c4;
  --light-color: rgb(125, 162, 169);
  --whitish-color: #f7f7f7;
  --hero-color: rgba(0, 0, 0, 0.463);
  --gray-color: #f0f0f0;
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  --black-color: black;
}
.logo {
  /* max-width: 160px; */
  max-height: 85px;
  margin-top: 0;
}

@media (min-width: 1020px) {
  .home-info {
    margin-left: 40px;
  }
  .hero-header {
    font-size: 60px;
  }
}
@media (min-width: 300px) and (max-width: 1019px) {
  .sheesh {
    display: flex;
    justify-content: center;
  }
  .home-info {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-header {
    font-size: 50px;
  }
}

.hero-home {
  background-image: url(/img/filterchange.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
.hero-home::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}

.hero-service {
  background-image: url(/img/minisplit.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 800px;
}
.hero-service::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-art {
  background-image: url(/img/eagle.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-art::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-carve {
  background-image: url(/img/eagle.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.nav-shadow {
  box-shadow: var(--box-shadow);
}
.hero-carve::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-frost {
  background-image: url(/img/dumbo.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-frost::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-mirror {
  background-image: url(/img/ball_mirror.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-mirror::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-trophy {
  background-image: url(/img/grad.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-trophy::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
@media (min-width: 350px) and (max-width: 575.98px) {
  .nav-link {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .nav-link {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-link {
    font-size: 16px;
    margin-left: 6px;
    margin-right: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    font-size: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 1200px) {
  .nav-link {
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.hover-btn:hover {
  background-color: grey;
  color: white;
  transform: scale(1.05);
}
.hover-btn {
  color: white;
  background-color: var(--blue-color);
  border-radius: 5px;
  padding: 15px;
  transition: transform 0.3s;
}
.service-btn:hover {
  background-color: grey;
  color: white;
  transform: scale(1.05);
}
.service-btn {
  color: white;
  background-color: var(--blue-color);
  border-radius: 5px;
  transition: transform 0.3s;
}
.background1 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.background2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.card-effect {
  box-shadow: var(--box-shadow);
  background-color: white;
  /* transition: all 0.65s ease; */
}
.card-effect-blog {
  box-shadow: var(--box-shadow);
  background-color: white;
  padding-top: 15px;
  /* transition: all 0.65s ease; */
}
.card-effect-slider {
  box-shadow: var(--box-shadow);
  background-color: white;
  padding: 25px;
  /* transition: all 0.65s ease; */
}
.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color);
  color: rgb(255, 255, 255);
  font-size: 28px;
  border-radius: 100px;
  flex: none;
}
/* .menu-item:hover {
  color: #dc3545;
} */

.line,
.line-two {
  width: 100%;
  max-width: 480px;
}
@media (min-width: 200px) and (max-width: 991px) {
  .line-two {
    /* width: 30%; */
    width: 80%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px 0; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
@media (max-width: 500px) {
  .line {
    /* width: 30%; */
    width: 70%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px auto; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
@media (max-width: 500px) {
  .line-two {
    /* width: 40%; */
    width: 80%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px 0; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
.section-line {
  /* width: 30%; */
  width: 90%;
  height: 4px; /* Adjust the line thickness as needed */
  background-color: black; /* Adjust the line color as needed */
  margin: 10px auto; /* Adjust the margin as needed the auto will make the line go to the center*/
}
.box-box {
  box-shadow: var(--box-shadow);
}

.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar-collapse {
  transition: all 0.3s ease;
}
.navbar.scrolled {
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: var(--box-shadow);
}

/* .nav-link.clicked {
  color: white;
} */
/* .menu-item.clicked:hover {
  color: red;
} */
.navbar-collapse.clicked {
  background-color: white;
}
.active-link.clicked {
  color: var(--blue-color);
}
.navbar-collapse.clicked .nav-link {
  color: black; /* Adjust this selector to match your link class */
}

.nav-link {
  color: white;
}
.nav-link.scrolled {
  color: black;
}
/* .nav-link.scrolled {
  color: white;
} */
.nav-link:hover {
  color: var(--blue-color);
}

.dropdown-toggle {
  color: white;
}
.dropdown-toggle.scrolled {
  color: black;
}
.dropdown-item:hover {
  color: var(--blue-color);
}
.dropdown-toggle:active,
.dropdown-toggle:focus {
  color: white !important;
}
.dropdown-toggle.scrolled:active,
.dropdown-toggle.scrolled:focus {
  color: black !important;
}
.logo-footer {
  max-height: 180px;
}
.footer-top {
  padding-bottom: 90px;
  padding: 50px;
  background-color: var(--gray-color);
}

.footer-margin {
  margin-top: 10px;
  margin: 7px;
}
.footer-bg {
  background-color: var(--black-color);
}
.underline-hover {
  font-size: 20px;
  margin: 0;
  padding: 2px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Add the default line underlay */
.underline-hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
}

/* Add the hover effect to reveal the line underlay */
.underline-hover:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
  background-color: var(
    --blue-color
  ); /* You can change the color as per your preference */
}

/* Add the retraction effect when not hovered */
.underline-hover:not(:hover)::before {
  transform-origin: bottom left;
  transform: scaleX(0);
}
.underline-hover-list {
  font-size: 15px;
  margin: 0;
  padding: 2px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Add the default line underlay */
.underline-hover-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
}
.underline-hover-list:hover {
  color: var(--blue-color);
}
/* Add the hover effect to reveal the line underlay */
.underline-hover-list:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
  background-color: var(
    --blue-color
  ); /* You can change the color as per your preference */
}

/* Add the retraction effect when not hovered */
.underline-hover-list:not(:hover)::before {
  transform-origin: bottom left;
  transform: scaleX(0);
}

.navbar-toggler {
  border-color: transparent;
  color: transparent;
}
.navbar-toggler-icon.scrolled {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.social-buttons {
  border: none;
}

.carousel-control-prev-icon {
  background-color: black;
  border-radius: 100px;
}

.carousel-control-next-icon {
  background-color: black;
  border-radius: 100px;
}
@media (max-width: 575px) {
  .carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    bottom: 0;
    transform: translateY(45%);
  }

  .carousel-inner.service-card {
    position: relative; /* Ensure the parent has relative positioning */
  }
}
.review-icon {
  color: orange;
}
.service-card {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  padding: 25px;
}

.padding-project {
  margin-top: 100px;
}
.shadow-nav {
  box-shadow: var(--box-shadow);
}
/* .img-hover {
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);

  background-color: #ffffff;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
} */
/* .active-link {
  color: var(--blue-color);
}
.active-link.scrolled {
  color: var(--blue-color);
} */
.img-hover {
  box-shadow: var(--box-shadow);
}
@media (min-width: 992px) {
  .contact-formation {
    justify-content: start;
  }
}

@media (min-width: 200px) and (max-width: 991px) {
  .contact-formation {
    justify-content: center;
  }
}
.contact-form-bg {
  background-color: #f3f3f3;
}
.padding-botton-contact {
  padding-bottom: 60px;
}
.padding-top-contact {
  padding-top: 60px;
}

@media (min-width: 200px) and (max-width: 991px) {
  .map-margin {
    margin-top: 30px;
  }
}
video {
  max-width: 100%;
}
.styled-video {
  border: 5px solid white;
  box-shadow: var(--box-shadow);

  transition: transform 0.3s;
}

.styled-video:hover {
  transform: scale(1.05);
}

.map {
  box-shadow: var(--box-shadow);
}
.art-hover {
  transition: transform 0.3s;
}
.art-hover:hover {
  transform: scale(1.05);
}
.word-box {
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}
.word-box:hover {
  transform: scale(1.05);
}
.review-photo {
  text-align: center;
}

.review-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}
.btn-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: var(--blue-color);
  border: none;
}
.btn-round:hover {
  background-color: grey;
  color: white;
  transform: scale(1.05);
}
.no-underline {
  text-decoration: none;
}
.bg-about {
  background-color: var(--blue-color);
  border-bottom: 4px solid #ffc107;
}
.bg-about-diff {
  background-color: var(--blue-color);
  border-bottom: 4px solid #ffc107;
  margin-top: 100px;
}
.bg-contact {
  background-color: var(--blue-color);
  border-bottom: 4px solid #ffc107;
}
.read-more {
  color: var(--blue-color); /* Light blue color */
  text-decoration: underline; /* Underline text */
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-slide {
  display: inline-block;
  animation: 200s slide infinite linear;
}

.logo-item {
  display: inline-block;
  text-align: center; /* Centers the text under the image */
  margin: 0 40px;
}

.logo-item img {
  display: block;
  margin: 0 auto;
}

.logo-item p {
  margin-top: 10px;
  /* Adjust text size as needed */
  /* Adjust text color */
}
.card-width-pic {
  height: 300px;
}
.hidden {
  display: none;
}
.active-link {
  position: relative; /* Allows positioning the pseudo-element */
  text-decoration: none; /* Remove the default underline */
}

.active-link::after {
  content: ""; /* Empty content for the pseudo-element */
  position: absolute; /* Position it relative to the parent */
  left: 50%; /* Center it horizontally */
  top: 100%; /* Position it below the text */
  transform: translateX(-50%); /* Center it using transform */
  border-left: 10px solid transparent; /* Left half of the arrow */
  border-right: 10px solid transparent; /* Right half of the arrow */
  border-top: 10px solid var(--blue-color); /* Color of the arrow (change as needed) */
}
.footer-icon {
  color: var(--blue-color);
}
.nova-lux {
  color: black;
}
.nova-lux:hover {
  color: var(--blue-color);
}
.hvac-shadow {
  box-shadow: var(--box-shadow);
}

.text-dark-nav {
  color: black;
}
.text-dark-nav:hover {
  color: var(--blue-color);
}
.float-left {
  float: left;
  margin-right: 20px; /* Adds space between the image and the text */
  max-width: 40%; /* Adjust the width as needed */
}

@media (max-width: 768px) {
  .float-left {
    float: none;
    margin-right: 0;
    max-width: 100%; /* Full width for smaller screens */
  }
  .service-margin {
    margin-top: 40px;
  }
}
.carousel-image {
  height: 600px; /* Set the desired height */
  object-fit: cover; /* Ensures the image covers the container without distortion */
}
/* .review-card {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  padding: 25px;
} */
