@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Ubuntu:wght@400;700&display=swap");

:root {
  --primary-color: #fd760d;
  --secondary-color: #1e9bd0;
  --text-dark: #262626;
  --text-gray: #686868;
  --text-light-gray: #ababab;
  --bg-light: #f6f6f6;
  --black-shade: #282a2c;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
}

.font-inter {
  font-family: "Inter", sans-serif;
}
.font-ubuntu {
  font-family: "Ubuntu", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  border-radius: 33px;
  padding: 10px 24px;
}
.btn-primary:hover {
  background-color: #e56a0c;
  border-color: #e56a0c;
  color: #fff;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

/* Navbar */
.navbar-custom {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
  background-color: white;
  padding: 15px 0;
}
.nav-pill-container {
  background-color: #f2f2f2;
  border: 1px solid var(--secondary-color);
  border-radius: 9999px;
  padding: 8px 30px;
}
.nav-link {
  color: #374151;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  padding: 0 10px;
  font-size: 14px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../assets/img/imgBackdrop.png") center/cover no-repeat;
  padding: 50px 0 50px;
}
.border-dashed {
  border-style: dashed !important;
}
.border-orange {
  border-color: #fd760d !important;
}

.hero-heading {
  font-family: "Ubuntu", sans-serif;
  font-size: 55px;
  line-height: 1.2;
}

.form-box {
  background: white;
  border: 2px solid #ffedd5;
  border-radius: 24px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 32px;
  position: relative;
}
.form-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 24px 24px 0 0;
}

.form-control,
.form-select {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 15px;
}

/* Stats */
.stats-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  font-style: italic;
  font-size: 11px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}
.bg-light-gray {
  background-color: var(--bg-light);
}

/* Projects background shapes */
.projects-section {
  position: relative;
  overflow: hidden;
}
.projects-section::before,
.projects-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 800px;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
.projects-section .projects-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 35%,
    rgba(255, 255, 255, 0.85) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.projects-section::after {
  background: #fd760d;
  top: 100px;
  right: 400px;
}
.projects-section::before {
  top: -250px;
  right: -50px;
  height: 800px;
  background: #1e9bd0;
}
.projects-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .projects-section::before,
  .projects-section::after {
    top: -180px;
    right: -160px;
    width: 320px;
    height: 320px;
  }
  .badge-tag1 {
    display: flex;
    align-items: center;
  }
}

.badge-tag {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 49px;
  padding: 12px 24px;
  color: var(--secondary-color);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 14px;
}

.badge-tag1 {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 49px;
  padding: 20px;
  color: var(--secondary-color);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rounded-30 {
  border-radius: 30px;
}

/* Projects Before After */
.ba-card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 30px;
  background: #e9e9e9;
}
.ba-after {
  width: 100%;
  height: 100%;
}
.ba-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.ba-resizer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 3;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background: #ffffff;
  cursor: ew-resize;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.ba-resizer::after {
  font-size: 22px;
  font-weight: normal;
  color: black; /* matches brand colors nicely */
  content: "< >";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -2px;
}
.ba-label {
  position: absolute;
  top: 20px;
  background: var(--black-shade);
  color: white;
  padding: 5px 15px;
  border-radius: 9px;
  font-size: 14px;
  z-index: 4;
}
.ba-label-left {
  left: 20px;
}
.ba-label-right {
  right: 20px;
}
.ba-slider:focus-within .ba-resizer::after {
  outline: 2px solid #000;
  outline-offset: 4px;
}

/* Exact Testimonials Section */
.testimonials-exact-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
}
.testimonials-shape-bg::before,
.testimonials-shape-bg::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.testimonials-shape-bg::before {
  top: -10%;
  right: -5%;
  width: 100%;
  height: 120%;
  background-color: #1e9bd0;
  clip-path: polygon(100% 0, 100% 100%, 30% 100%, 75% 0);
}
.testimonials-shape-bg::after {
  bottom: 0;
  right: 0;
  width: 30%;
  height: 50%;
  background: #fd760d;
  clip-path: polygon(100% 30%, 40% 100%, 100% 100%);
}
/* .testimonials-shape-bg .testimonials-exact-title,
.testimonials-shape-bg .bg-quote-marks {
  position: relative;
  z-index: 1;
} */

.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.title-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #1e9bd0;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .testimonials-shape-bg::before {
    width: 120%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 60% 0);
  }
}
.bg-quote-marks {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 30%;
  height: 350px;
  pointer-events: none;
  z-index: 0;
}
.woman-portrait {
  position: absolute;
  bottom: 0;
  left: -2%;
  height: 100%;
  max-width: 45%;
  object-fit: contain;
  object-position: bottom left;
  z-index: 3;
  pointer-events: none;
}
.content-wrapper {
  position: relative;
  z-index: 4;
  padding-left: 40%;
}
.testimonials-exact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  text-align: center;
  color: #000;
  margin-bottom: 0;
}
.testimonials-exact-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 5px;
}
.testimonials-nav-btn {
  width: 80px;
  height: 50px;
  border-radius: 30px;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.3s;
}
.testimonials-nav-btn.inactive {
  background-color: #a3d9f5 !important;
  opacity: 0.6;
  cursor: default;
}
.cards-scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 30px 0 50px 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.cards-scroll-container::-webkit-scrollbar {
  display: none;
}
.exact-testimonial-card {
  width: 340px;
  height: auto;
  min-height: 400px;
  background: #fff;
  border-radius: 20px;
  flex-shrink: 0;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  scroll-snap-align: start;
}
.quote-icon-large {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  line-height: 0.8;
  color: #e2f2fd;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 0px;
}
.exact-card-text {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 24px;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}
.exact-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-top: auto;
}
.exact-card-stars {
  display: flex;
  gap: 2px;
  color: #fd760d;
  font-size: 14px;
}
.exact-card-author {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000;
  margin: 0;
}

@media (max-width: 1400px) {
  .content-wrapper {
    padding-left: 45%;
  }
  .woman-portrait {
    left: -5%;
  }
}
@media (max-width: 992px) {
  .content-wrapper {
    padding-left: 15px;
  }
  .woman-portrait {
    opacity: 0.15;
    left: -20%;
  }
  .bg-quote-marks {
    opacity: 0.3;
    left: 0;
  }
  .testimonials-exact-title {
    font-size: 36px;
    line-height: 42px;
  }
}

/* FAQ */
.faq-box {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq-question {
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding-top: 15px;
}
.faq-box.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.cta-box {
  background: #24160d;
  border-radius: 20px;
  padding: 80px 60px;
  color: white;
  margin: 60px 0;
  min-height: 380px;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
.cta-bg-shapes::before,
.cta-bg-shapes::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 40px;
}
.cta-bg-shapes::before {
  width: 350px;
  height: 320px;
  top: -80px;
  right: 20%;
  transform: rotate(15deg);
}
.cta-bg-shapes::after {
  width: 420px;
  height: 420px;
  bottom: -150px;
  left: 120px;
  transform: rotate(0deg);
}
.cta-worker-img {
  position: absolute;
  bottom: 0px;
  left: 8%;
  height: 140%;
  max-height: 550px;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
}
.cta-heading {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .cta-worker-img {
    opacity: 0.15;
    left: 10%;
    display: none;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-light);
}
.footer-links p {
  margin-bottom: 10px;
}

/* Responsive Enhancements */
@media (max-width: 991.98px) {
  .nav-pill-container {
    border-radius: 12px;
    padding: 15px;
    background-color: transparent;
    border: none;
  }
  .nav-pill-container .nav-link {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 36px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .cta-box {
    padding: 40px 20px;
    margin: 30px 0;
  }
  .badge-tag,
  .badge-tag1 {
    font-size: 12px;
    padding: 10px 15px;
  }
  .testimonials-exact-title {
    font-size: 32px;
  }
  .step456 {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .form-box {
    padding: 20px;
  }
  .exact-testimonial-card {
    width: 300px;
    min-height: 350px;
    padding: 25px 20px;
  }
  .quote-icon-large {
    font-size: 80px;
  }
}

/* Nav Desktop Specific Enhancements */
@media (min-width: 992px) and (max-width: 1439.98px) {
  .nav-pill-container {
    padding: 8px 15px;
  }
  .nav-link {
    padding: 0 6px !important;
    font-size: 12.5px;
  }
  .nav-btn {
    padding: 8px 15px !important;
    font-size: 13px;
  }
  .nav-phone {
    font-size: 13px;
  }
}

@media (min-width: 1440px) {
  .nav-pill-container {
    padding: 8px 30px;
  }
  .nav-link {
    padding: 0 12px !important;
    font-size: 14px;
  }
}
