html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
}

#header nav {
  background: white !important;
  box-shadow: 10px 0px 5px black;
  position: fixed;
  width: 100%;
  z-index: 1;
  padding: 10px;
}
#header a:hover {
  color: orangered;
  font-size: larger;
  font-weight: bolder;
}
#header #header_image {
  width: 100%;
  background-color: rgba(243, 190, 174, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}
#header #header_image img {
  width: 400px;
  height: 400px;
  position: relative;
  animation: moveUpDown 3s infinite;
}
#header #header_image h1 {
  color: rgba(41, 9, 9, 0.767);
}
#header #header_image p {
  color: rgba(82, 78, 78, 0.767);
}
#header #header_image button {
  border: 3px solid orangered;
  background-color: orangered;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  color: white;
}

/*****************************************/
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/**********************************************/
#about {
  display: flex;
  justify-content: center;
}
#about .card:hover {
  box-shadow: 0 8px 0px rgb(247, 99, 0); /* Changed box shadow on hover */
}
#about .card {
  margin-top: 0;
  margin: 20px;
  border: none;
  border-radius: 20px !important;
  box-shadow: 0px 10px 10px rgba(41, 9, 9, 0.568);
}
#about img {
  width: 400px;
  height: 400px;
  float: left !important;
  margin: 100px !important;
}
#about .row {
  margin-top: 70px;
}
#about .row h2 {
  color: rgba(41, 9, 9, 0.767);
}
#about .row p {
  color: rgba(82, 78, 78, 0.767);
}
#about .row h5 {
  color: rgba(41, 9, 9, 0.568);
}

.cardHeader {
  text-align: center;
}
.cardHeader h1 {
  margin: 0;
}
.cardHeader h2 {
  color: gray;
}
.cardHeader .line {
  background-color: orangered;
  width: 150px;
  height: 2px;
  margin: 10px auto;
  border: none;
}

#service {
  padding: 100px;
  background-color: rgba(243, 190, 174, 0.24);
  text-align: center;
}
#service .cardbgc .card {
  margin-top: 0;
  margin: 20px;
  border: none;
  border-radius: 20px !important;
  box-shadow: 0px 10px 10px rgba(41, 9, 9, 0.568);
}
#service .cardbgc .card i {
  color: orangered;
  font-size: x-large;
  margin-top: 10px;
}
#service .cardbgc .card:hover {
  box-shadow: 0 8px 0px rgb(247, 99, 0); /* Changed box shadow on hover */
}

/****************************************/
#portfolio {
  padding: 100px;
}
#portfolio .nav {
  justify-content: center;
  text-align: center;
}
#portfolio .cardImg {
  margin: 50px;
  background-color: white !important;
}
#portfolio .tab-pane.fade.show.active img {
  width: 100%; /* Makes images responsive */
  height: auto; /* Maintains aspect ratio */
  border-radius: 5px;
  margin: 5px;
}
#portfolio .tab-pane.fade.show.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 columns */
  grid-gap: 10px; /* Space between images */
}

/***********************************************/
#FAQ {
  padding: 100px;
  background-color: rgba(243, 190, 174, 0.24);
}
#FAQ .container {
  width: 100%;
  background-color: rgba(243, 190, 174, 0.24);
  padding: 10px;
  border-radius: 10px;
}
#FAQ .container .accordion .accordion-item {
  border-top: none;
  border-right: none;
  border-left: none;
  margin-bottom: 10px;
}
#FAQ .container .accordion-body {
  background-color: rgba(243, 190, 174, 0.5);
  color: gray;
  font-size: larger;
  font-weight: bolder;
}

#team {
  background-color: white;
  padding-bottom: 30px;
  text-align: center;
  padding: 100px;
}
#team .team_imgs {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin: 0 auto;
}
#team .team_imgs img {
  width: 250px;
  margin: 10px;
  border-radius: 10px;
}
#team .icons {
  font-size: 20px;
  text-align: center;
}

#client {
  text-align: center;
  padding: 100px;
  background-color: rgba(243, 190, 174, 0.24);
}
#client .carousel .carousel-inner .carousel-item {
  margin-top: 30px;
}
#client .carousel .carousel-inner .carousel-item .logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
#client .carousel .carousel-inner .carousel-item .logo-row img {
  max-height: 60px;
  width: auto;
}
#client .carousel .carousel-indicators {
  margin-bottom: -50px;
}
#client .carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e67e22;
}
#client .carousel .carousel-control-prev-icon,
#client .carousel .carousel-control-next-icon {
  filter: invert(50%) sepia(80%) saturate(300%) hue-rotate(10deg);
}

#contact {
  margin: 30px;
  text-align: center;
  padding: 100px;
}
#contact .icons {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}/*# sourceMappingURL=style.css.map */