:root {
  --primary: #045eb4;
  --secondary: #4aafff;
  --white: #fff;
}

body {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--white);
  padding-top: 101px;
}

a {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: var(--secondary) !important;
  border-color: var(--secondary);
  outline: none;
}

.text-primary {
  color: var(--primary) !important;
}

.spinner-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  z-index: 10000;
}

.pulse-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}

.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.getintouch {
  border: 1px solid var(--primary);
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
}
.getintouch:hover {
  background-color: var(--white);
  color: var(--primary);
}

header {
  background-color: var(--white);
}

.headSlider .swiper {
  width: 100%;
  height: 100%;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
}
.headSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 101px);
  color: var(--white);
}
.headSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.headSlider .swiper-button-next,
.headSlider .swiper-button-prev {
  color: var(--white);
}

.features {
  display: flex;
  width: 1200px;
  margin: auto;
  box-shadow: 0 0 50px 0 rgba(19, 19, 28, 0.12);
}
.features .feature-card {
  background-color: var(--white);
  width: 240px;
  height: 240px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid #ddd;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.features .feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary);
  transition: all 0.3s ease;
  z-index: -1;
}
.features .feature-card:last-child {
  border-right: 0;
}
.features .feature-card:hover h5 {
  color: #fff;
}
.features .feature-card:hover::before {
  height: 100%;
}
.features .feature-card .feature-icon {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  padding: 5px;
}
.features .feature-card .feature-icon img {
  width: 65px;
}
.features .feature-card h5 {
  color: var(--primary);
  font-weight: 400;
}

.featuredProjectSlider {
  display: flex;
  flex-wrap: wrap;
}
.featuredProjectSlider .project-card {
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #fcfcfc;
}
.featuredProjectSlider .project-card .header {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.featuredProjectSlider .project-card .header img {
  width: 100%;
}
.featuredProjectSlider .project-card .header .label-container {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  z-index: 2;
}
.featuredProjectSlider .project-card .header .label-container span.one {
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.825rem;
  margin-right: 10px;
}
.featuredProjectSlider .project-card .header .label-container span.two {
  background-color: var(--secondary);
  color: var(--white);
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.825rem;
}
.featuredProjectSlider .project-card .header .price-container {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  z-index: 2;
  color: var(--white);
}
.featuredProjectSlider .project-card .header .price-container h3 {
  font-size: 1.35rem;
}
.featuredProjectSlider .project-card .body {
  padding: 1rem;
}
.featuredProjectSlider .project-card .body p.type {
  color: var(--primary);
  font-size: 14px;
}
.featuredProjectSlider .project-card .body .title {
  font-size: 1.15rem;
  color: #1b1a1e;
}
.featuredProjectSlider .project-card .body .title,
.featuredProjectSlider .project-card .body p {
  margin-bottom: 10px;
}
.featuredProjectSlider .project-card .body .details {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.featuredProjectSlider .project-card .body .details li {
  flex: 50% 0 0;
  max-width: 50%;
  color: #545c65;
  font-size: 15px;
  line-height: 1.75;
}
.featuredProjectSlider .project-card .body .details li:nth-child(3) {
  flex: 100% 0 0;
  max-width: 100%;
}
.featuredProjectSlider .swiper-button-next,
.featuredProjectSlider .swiper-button-prev {
  --swiper-navigation-size: 25px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: var(--white);
  background-color: var(--primary);
  box-shadow: var(--bs-box-shadow);
}
.featuredProjectSlider .swiper-button-next {
  right: 0;
}
.featuredProjectSlider .swiper-button-prev {
  left: 0;
}

.city-container {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.city-container::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.city-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s ease;
}
.city-container:hover img {
  transform: scale(1.2);
}
.city-container .text-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--white);
  z-index: 2;
}
.city-container .text-content h4 {
  font-size: 26px;
}
.city-container .text-content p {
  margin: 0;
}

.why-choose-us .wc-card {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 20px;
  transition: all 0.5s ease;
}
.why-choose-us .wc-card:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) translateY(-20px);
  box-shadow: var(--bs-box-shadow);
}
.why-choose-us .wc-card:hover .icon {
  background-color: var(--secondary);
}
.why-choose-us .wc-card .icon {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cae8ff;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  transition: all 0.5s ease;
}
.why-choose-us .wc-card .icon img {
  width: 80px;
}
.why-choose-us .wc-card .text {
  width: 100%;
  padding: 0 20px;
}
.why-choose-us .wc-card .text p {
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
  margin-top: 80px;
  position: relative;
}
footer .contact-section {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 160px;
  margin: auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e5f2ff;
  border-radius: 20px;
}
footer .contact-section h3 {
  margin: 0;
  font-size: 2.5rem;
  color: var(--primary);
}
footer .logo {
  margin-bottom: 40px;
}
footer .logo img {
  height: 100px;
}
footer a {
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
footer a:hover {
  border-bottom: 1px solid white;
}
footer .text-muted {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.786) !important;
}
footer .copyright {
  padding: 26px 0;
  background-color: var(--secondary);
  color: var(--white);
}
footer .copyright a {
  color: var(--white);
}

#enquireNowModal .modal-content {
  border-radius: 20px;
}
#enquireNowModal .img {
  width: 100%;
  height: 450px;
  background-color: transparent;
  border-radius: 20px;
  overflow: hidden;
}
#enquireNowModal .img img {
  width: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.enquiry-form {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
  position: absolute;
  width: 400px;
  height: 520px;
  top: -35px;
  right: 0;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
.enquiry-form .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.enquiry-form form {
  width: 100%;
}
.enquiry-form .form-control {
  font-size: 1rem !important;
}

.right_conatct_social_icon {
  background: linear-gradient(to top right, var(--primary) 0%, var(--secondary) 70%);
}

.contact_us {
  background-color: #f1f1f1;
  padding: 60px 0px;
}

.contact_inner {
  background-color: #fff;
  position: relative;
  box-shadow: 20px 22px 44px rgba(204, 204, 204, 0.8);
  border-radius: 25px;
}

.contact_field {
  padding: 60px 340px 90px 100px;
}

.right_conatct_social_icon {
  height: 100%;
  border-radius: 0 25px 25px 0;
}

.contact_field h3 {
  color: #000;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact_field p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.contact_field .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #1325e8;
}

.contact_field .form-control::-moz-placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_info_sec {
  position: absolute;
  background-color: #1b1b1b;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: -moz-fit-content;
  height: fit-content;
  width: 340px;
  padding: 40px;
  border-radius: 25px 0 0 25px;
  color: rgb(180, 182, 210);
  display: flex;
  align-items: center;
}

.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 15px;
}

.info_single {
  margin: 30px 0 0 0px;
}

.info_single i {
  margin-right: 15px;
}

.info_single span {
  font-size: 14px;
  letter-spacing: 1px;
}

button.contact_form_submit {
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  margin-top: 25px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
}

.socil_item_inner li {
  list-style: none;
}

.socil_item_inner li a {
  color: #fff;
  margin: 0px 15px;
  font-size: 14px;
}

.socil_item_inner {
  padding-bottom: 10px;
}

.map_sec {
  padding: 50px 0px;
}

.map_inner h4,
.map_inner p {
  color: #000;
  text-align: center;
}

.map_inner p {
  font-size: 13px;
}

.map_bind {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.times-new-roman {
  font-family: "Times New Roman", Times, serif;
}

.vision {
  width: 992px;
  position: relative;
  margin: 0 auto 80px;
}
.vision .img-container {
  border-radius: 20px;
  width: 400px;
  height: 500px;
  overflow: hidden;
}
.vision .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision .text-container {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 592px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--white);
  padding: 30px 50px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: var(--bs-box-shadow);
}
.vision .text-container .title {
  font-size: 60px;
  color: var(--primary);
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
}
.vision .text-container p {
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

.mission {
  width: 992px;
  position: relative;
  margin: auto;
}
.mission .img-container {
  border-radius: 20px;
  width: 440px;
  height: 600px;
  overflow: hidden;
  margin-left: auto;
}
.mission .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission .text-container {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 592px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--white);
  padding: 30px 50px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: var(--bs-box-shadow);
}
.mission .text-container .title {
  font-size: 60px;
  color: var(--primary);
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
}
.mission .text-container p {
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

.connect-btn-box {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: transparent;
  z-index: 99;
}
.connect-btn-box a {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  line-height: 1;
  color: #25d366;
  border-radius: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 4rem;
  transition: all 0.3s ease;
}
.connect-btn-box a:hover {
  color: var(--white);
  background-color: #25d366;
}

@media (max-width: 768px) {
  .headSlider .swiper {
    width: 100%;
    height: 300px;
  }
  .headSlider .swiper-slide {
    height: 240px;
  }
  .features {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: none;
    justify-content: center;
  }
  .features .feature-card {
    width: 160px;
    height: 160px;
    border: 0;
    margin: 12px;
    box-shadow: 0 0 50px 0 rgba(19, 19, 28, 0.12);
  }
  .featuredProjectSlider {
    display: flex;
    flex-wrap: wrap;
  }
  .featuredProjectSlider .project-card {
    margin-right: auto;
    margin-left: auto;
  }
  footer .contact-section {
    flex-direction: column;
    justify-content: center;
  }
  footer .contact-section h3 {
    margin-bottom: 20px !important;
  }
}/*# sourceMappingURL=main.css.map */