@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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

/* 1.Header Css Start */
.nav-link {
  color: #000 !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
.nav-item::after {
  content: "";
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}
.mean-menu .dropdown-menu {
  border: none;
  left: 0;
  z-index: 99;
  opacity: 0;
  display: block;
  border-radius: 8px;
  padding: 15px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #fff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.mean-menu .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-menu .dropdown-menu .dropdown-item {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 1.5rem !important;
}
.mean-menu .dropdown-menu .dropdown-item:focus,
.mean-menu .dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
  background-color: #e9ecef;
}
.default-btn {
  padding: 1rem 2.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--primary-color);
  color: #fff !important;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.6s;
  z-index: 1;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background-color: var(--second-color);
  border-radius: 50%;
  z-index: 0;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: 0.9s;
}
.default-btn:hover::before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
  z-index: -1;
}
/* header css end */

/* 2.Banner Slider Css */
.banner {
  background: var(--second-color);
}
.slick-prev,
.slick-next {
  height: 40px !important;
  width: 40px !important;
  border-radius: 50%;
  background: var(--second-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.3s;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: var(--primary-color);
}
.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  color: #fff;
}
.slick-prev::before,
.slick-next::before {
  color: #fff;
  font-weight: 900;
  opacity: 1 !important;
}
.slick-prev.slick-arrow {
  transform: translate(100%, -50%);
}
.slick-next.slick-arrow {
  transform: translate(-100%, -50%);
}
.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/* 3. Service section */
.service-image {
  display: inline-block !important;
  max-width: 416px;
  max-height: 360px;
  min-height: 360px;
}
.single-service-card {
  margin-bottom: 25px;
  border-radius: 5px;
}
.single-service-card .service-content {
  background-color: #f9fafb;
  box-shadow: unset;
  padding: 25px 70px 25px 25px;
  position: relative;
  transition: var(--transition);
}
.single-service-card .service-name {
  font-size: 1rem;
  margin-bottom: 0;
  color: #000;
  transition: 0.3s;
  display: block;
}
.single-service-card .service-content .add-icon {
  display: inline-block;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  text-align: center;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.single-service-card:hover .service-content {
  background-color: var(--primary-color);
  transition: 0.6s;
}
.single-service-card:hover .service-name {
  color: #fff;
}
.single-service-card:hover .add-icon {
  background-color: var(--second-color);
}
/* SERVICE CSS END */

/* 4. ABOUT US CONTENT */
.about-content {
  margin-left: 30px;
}
.about-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 18px;
  display: inline-block;
}
.about-tagline {
  margin-top: 10px;
  color: #000;
  font-weight: 600;
  font-size: 2.1rem;
  margin-bottom: 18px;
  line-height: 1.4;
}
.about-desc {
  color: #6c7177;
  font-size: 0.9rem;
  text-align: justify;
  font-weight: 400;
  margin: 0;
}
.about-list {
  padding: 0;
  margin-bottom: 0;
  margin-top: 20px;
}
.about-list-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-weight: 600;
}
.about-list-item .fa-check {
  color: var(--primary-color);
}
.about-content .about-btn {
  margin-top: 30px;
}

/*  ABOUT US CONTENT Ed*/

/* 5. Stats Section */
.Statistics-area {
  background-color: transparent;
  background-image: url("https://templates.envytheme.com/kadi/default/assets/images/fun-fact-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 75px;
  padding-top: 100px;
}
.small-title {
  font-size: 1rem;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 15px;
}
.exp-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0;
}
.single-stat-box {
  margin-bottom: 25px;
}
.single-stat-box .icon {
  display: inline-block;
  line-height: 0;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding: 5px 20px;
}
.single-stat-box .icon::before {
  display: inline-block;
  position: absolute;
  content: "";
  height: 85px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.single-stat-box .icon::before {
  border: 1px solid var(--primary-color);
}
.single-stat-box .icon::after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 80px;
  width: 80px;
  background-color: #f9fafb;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
}
.single-stat-box .icon::after {
  background-color: #1a1e27;
}

.single-stat-box .icon i {
  color: #fff;
}
.single-stat-box .icon i {
  font-size: 70px;
  color: #fff;
  /* line-height: 0; */
}
.stat-num {
  color: var(--primary-color);
  /* line-height: 0; */
  font-size: 35px;
  margin-bottom: 5px;
}
.stat-title {
  color: #fff;
}

/* 6. TESTIMONIAL */
.testimonial {
  background: #f1ecec;
}
.testimonial-slider {
  width: 86%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.testimonial-slider .slick-track {
  display: flex;
  gap: 10px;
}
.feedback-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1rem;
  height: 100%;
}

.feedback-card h4 {
  margin-top: 10px;
  font-weight: bold;
  color: #bf3a89;
}

.feedback-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
}
.customer-name {
  color: var(--second-color);
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* TESTIMONIAL END */

/* FOOTER CSS START */

.footer {
  background: var(--dark-color);
  padding: 40px 0 20px;
}

.footer-title {
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
}

.footer-subtitle {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  color: #ddd !important;
  text-align: justify;
}

.about-link {
  color: #737373;
}

.footer-link-list {
  list-style: none;
}

.footer-link {
  font-size: 14px;
  color: #fff;
  transition: 0.6s;
}
.footer-link:hover {
  letter-spacing: 1px;
  color: var(--primary-color);
}

.contact-icon {
  color: var(--primary-color);
  margin-right: 5px;
}
.footer-link-list .fa-angle-right {
  color: var(--primary-color);
}
.footer-link-list li {
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social-icon {
  color: var(--primary-color);
  font-size: 1.3rem;
}
/* FOOTER END */

/* Contact page */
.heading-title {
  font-size: 32px;
  line-height: 41.6px;
  letter-spacing: 0.64px;
}
.text-headers p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 22.4px;
  color: #000;
  /* width: 520px; */
}
.whatsapp-contact {
  margin-top: 32px;
  border-left: 4px solid var(--second-color);

  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-contact-innner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wp-title,
.adrs-title {
  font-size: 18px;
  font-weight: 600;
}
.wp-contact-innner p {
  font-size: 14px;
  color: #121212;
}
.wp-link {
  color: #000;
  font-weight: 600;
}
.address-section,
.email-section {
  margin-top: 32px;
  border-left: 4px solid var(--second-color);
  padding: 15px;
  align-items: center;
}
.address-line {
  white-space: pre-line;
  margin: 8px 0 0;
  line-height: 19.6px;
  color: #000;
}

.email-section .email-link {
  color: #121212 !important;
}
.social-icons-section {
  margin-top: 32px;
}
.contact-social-icons {
  display: flex;
  gap: 15px;
}
.contact-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #cbd5e1;
  background-color: #fff;
  color: var(--dark-color);
}
.social-link:hover {
  background-color: var(--second-color);
  color: #fff;
}
.text-content .container .row .wrapper {
  display: block;
  padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #f6f6f6;
}
.wrapper .container {
  max-width: 1320px !important;
}
.welcome-text {
  font-size: 3.25rem;
  color: var(--second-color);
}
.wrapper .icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.wrapper .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0px;
  color: black;
  padding: 15px !important;
}
.wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}
.icon-inside {
  color: var(--primary-color) !important;
}

.wrapper .btn {
  padding: 0.8rem 2.6rem;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.get-quote-btn {
  background-color: var(--primary-color);
  color: #fff;
}
.get-quote-btn:hover {
  background-color: var(--second-color);
  color: #fff;
}
.address-section:hover,
.email-section:hover,
.whatsapp-contact:hover {
  background-color: #e8eeee;
}
/* contact page end */

/* ABOUT SECTION CSS */
.contact-section .ps-desc {
  margin-bottom: 10px;
}
.contact-section .ps-title {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step {
  display: none;
}
.step.active {
  display: block;
}
.contactForm .input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  justify-content: space-between;
}
.contactForm input {
  width: 48%;
  padding: 10px;
  border: none;
}
.contactForm .btn-group {
  display: flex;
  justify-content: space-between;
}
.contactForm .nextBtn,
.contactForm .form-btn {
  background: white;
  color: var(--primary-color);
  padding: 5px 35px;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 20px;
  margin-top: 20px;
  outline: none !important ;
}
.contactForm .nextBtn:hover,
.contactForm .form-btn:hover {
  border-color: var(--second-color);
}
.right-form {
  flex: 1;
  background: var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  color: white;
  padding: 20px 20px 50px 20px;
  box-shadow: -1px 1px 6px 7px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}
.form-heading {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px;
}
.steps-count {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}
/* ABOUT SECTION CSS END*/

/* Bread Crumbs */
.breadcrumb {
  padding-top: 20px;
  background: #f6f6f6;
  margin-bottom: 0 !important ;
}
.breadcrumb .link-list {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
  list-style: none;
}
.breadcrumb .list-item {
  font-size: 14px;
}
.breadcrumb .slash {
  color: var(--grey-color);
  font-size: 8px;
}
.breadcrumb .current-page {
  color: var(--grey-color);
}
.breadcrumb .home-link {
  color: var(--primary-color);
}

/* Bread Crumbs  End*/

/* Single Service Page */
.service-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
  margin-top: 30px;
}
.service-desc {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: #6c7177;
}
.service-details-desc .services-details-image {
  margin-top: 35px;
  margin-bottom: 5px;
}
.widget-area .widget_services {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
.widget-area .widget {
  margin-bottom: 30px;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  font-size: 24px;
}
.widget-area .widget_services .services-list {
  padding: 0;
  margin-bottom: 0;
}
.widget-area .widget_services .services-list li {
  list-style-type: none;
  margin-bottom: 20px;
}
.widget-area .widget_services .services-list li a {
  display: inline-block;
  width: 100%;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.widget-area .widget_services .services-list li a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  transition: 0.6s;
}
.widget-area .widget_contact {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  text-align: center;
}
.widget-area .widget_contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.widget-area .widget_contact .icon {
  margin-top: 25px;
  margin-bottom: 20px;
}
.widget-area .widget_contact .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 90px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: 0.6s;
}
.widget-area .widget_contact .icon i:hover {
  background-color: var(--second-color);
}
.widget-area .widget_contact a {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

/* Privacy Page */
.page-point {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
}
.color-primary{
  color: var(--primary-color);
}

#quickForm .btn-close{
  position: absolute;
  right: 30px;
  z-index: 1;
  top: 65px;
}