@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&family=Righteous&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
}

#main {
  width: 100vw;
  height: 100%;
}

.mouse-follower {
  position: fixed;
  -webkit-backdrop-filter: blur(80);
  backdrop-filter: blur(80);
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  z-index: 9999;
}

.heroSection {
  background-image: url(../img/herobg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}

.navbar-nav li a {
  color: #f5fafb !important;
  font-size: 16px;
  font-weight: 500;
}

.hero-btn {
  background: #fec839;
  color: #252525;
  font-family: "Righteous", sans-serif !important;
  padding: 10px;
  border-radius: 8px;
  width: 300px;
  font-size: 18px;
  font-weight: 500;
  z-index: 9999;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  scale: 1.02;
}

.hero-imgs {
  display: flex;
}

.hero-imgs img {
  margin-right: -15px;
}

.hero-imgs img:last-child {
  margin: 0;
}

.about-card {
  background: linear-gradient(
    135deg,
    rgba(246, 246, 246, 0.9019607843) 0%,
    rgba(255, 255, 255, 0.9490196078) 100%
  );
  box-shadow: -4px 4px 25px 0px rgba(12, 104, 110, 0.2) !important;
  box-shadow: 0px 16px 50px 0px rgba(0, 0, 0, 0) inset;
  border-radius: 20px;
  padding: 55px;
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background-image: url("../img/about.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  z-index: 1;
}
@media (max-width: 991.98px) {
  .about-card {
    padding: 40px 30px;
  }
  .about-card::before {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  .about-card {
    padding: 30px 20px;
  }
  .about-card::before {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 575.98px) {
  .about-card {
    padding: 25px 15px;
  }
  .about-card::before {
    width: 180px;
    height: 180px;
  }
}

.about-card-img {
  display: none;
}

.about-text {
  position: relative;
  z-index: 2;
  margin-left: 320px;
}
@media (max-width: 991.98px) {
  .about-text {
    margin-left: 270px;
  }
}
@media (max-width: 767.98px) {
  .about-text {
    margin-left: 220px;
  }
}
@media (max-width: 575.98px) {
  .about-text {
    margin-left: 200px;
  }
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-steps {
  position: relative;
}

.process-steps-line {
  content: "";
  position: absolute;
  top: 35px; /* adjust to match circle center */
  left: 15%;
  right: 15%;
  height: 2px;
  width: 900px;
  border-top: 3px dashed #ccc;
  z-index: -999;
}

.step-description {
  color: #575c67;
}

.step-title {
  color: #161c2d;
}

.why-choose-us {
  background-color: #f5fafb;
}

.custom-shape {
  width: 23vw;
  height: 26vw;
  background: url("../img/testimaonials.avif") no-repeat center/cover;
  background-blend-mode: multiply;
  background-color: #fff9f8;
  transform: skewX(-5deg) skewY(-5deg);
  border-top-left-radius: 50px;
  border-top-right-radius: 70px;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 50px;
  border: 1px solid rgba(12, 103, 110, 0.32);
  position: relative;
  z-index: 111;
}
.custom-shape > * {
  transform: skewX(5deg) skewY(5deg);
}
@media (max-width: 991.98px) {
  .custom-shape {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .custom-shape {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .custom-shape {
    height: 300px;
  }
}

.custom-shape-back {
  width: 23vw;
  height: 26vw;
  background: url(../img/testimonials-back.jpg);
  transform: skewX(5deg) skewY(5deg);
  border-top-left-radius: 70px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 70px;
  border: 1px solid rgba(12, 103, 110, 0.32);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
}
@media (max-width: 991.98px) {
  .custom-shape-back {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .custom-shape-back {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .custom-shape-back {
    height: 300px;
  }
}

.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.705);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgb(0, 0, 0);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

footer .row {
  justify-content: space-between;
}
footer .row ul {
  list-style: none;
}
footer .row i {
  scale: 1.3;
}
footer .row i:hover {
  color: #68d585 !important;
  cursor: pointer;
} /*# sourceMappingURL=style.css.map */
