:root {
  --primary: #009dff;
  --secondary: #def3ff;
  --text-main: #059eff;
  --text-dark: #1a1a1a;
  --gray-bg: #f5f5f5;
  --gray-border: #dcdcdc;
  --bg: #ffffff;
  --green-accent: #86c150;
  --green-dark: #3b6713;
  --navy: #34495e;
  --orange: #e86c2f;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  color: #000000 !important;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-align: center;
}

.service-page-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  /* text-align: left; */
}

.service-page-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
}

.hero-sub-heading {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.7;
  text-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  /* text-align: left; */
  color: #fff;
}

.hero-cta-btn {
  background: #f26522;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  width: fit-content;
  border-radius: 5px;
  margin: 0 auto;
  border: none;
  border: 2px solid #f26522;
}
.hero-cta-btn:hover {
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #2e9e46;
}

.sp-services-section {
  background-color: #f0f4f8;
}

.sp-header {
  margin-bottom: 50px;
}

.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-service-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.sp-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 280px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sp-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sp-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.sp-view-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .sp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .service-page-hero {
    height: 450px;
  }
  .service-page-hero .hero-title {
    font-size: 26px;
  }
  .hero-sub-heading {
    font-size: 16px;
    padding: 0 20px;
  }
  .sp-services-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-title {
    font-size: 24px;
  }
}

.hidden-card {
  display: none !important;
}

.show-card {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-view-more-btn {
  display: inline-block;
  color: #ffffff;
  background-color: #f26522;
  padding: 14px 40px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border: 2px solid #f26522;
}

.sp-view-more-btn:hover {
  background-color: #ffffff;
  color: #000000 !important;
  border: 2px solid #2e9e46;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-section {
  padding: 30px 0;
  background-color: #ffffff;
}

.cta-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 40px 32px;
  border-radius: 6px;
  background-color: var(--header-green, #2e9e46);
}

.cta-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--header-green, #f26522);
}

.cta-banner__icon svg {
  width: 28px;
  height: 28px;
}

.cta-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}

.cta-banner__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.cta-banner__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.cta-banner__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 26px;
  border-radius: 4px;
  background-color: #f26522;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 2px solid #f26522;
}

.cta-banner__btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: 2px solid #2e9e46;
}

@media (max-width: 767px) {
  .cta-banner {
    flex-wrap: wrap;
    padding: 22px;
    text-align: center;
    justify-content: center;
  }

  .cta-banner__text {
    flex: 1 1 100%;
    order: 2;
  }

  .cta-banner__icon {
    order: 1;
  }

  .cta-banner__btn {
    order: 3;
    flex: 1 1 100%;
    text-align: center;
  }
}

/* =========================================================
   TESTIMONIAL SLIDER SECTION
   ========================================================= */
.testimonial-section {
  position: relative;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.testi-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 1s;
}
.testi-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}
.testi-slide.leaving {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.9s;
}

.testi-slide__media {
  position: relative;
  overflow: hidden;
}
.testi-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-slide__panel {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f4692b;
  padding: 60px 60px 60px 90px;
  margin-left: -82px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.testi-slide__inner {
  max-width: 480px;
}

.testi-slide__inner .section-title-dash {
  position: relative;
  display: inline-block;
  margin: 0 0 34px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
}
.testi-slide__inner .section-title-dash-bottom {
  position: absolute;
  left: 0;
  bottom: -14px;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

.testi-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: 0.6;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.testi-quote-text {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #ffffff;
}

.testi-quote-author {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
  .testi-slide__panel {
    padding: 50px 40px;
  }
  .testi-slide__inner .section-title-dash {
    font-size: 22px;
  }
  .testi-quote-mark {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .testimonial-slider {
    min-height: 0;
  }
  .testi-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .testi-slide.active {
    display: grid;
  }
  .testi-slide__media {
    height: 260px;
  }
  .testi-slide__panel {
    margin-left: 0;
    clip-path: none;
    padding: 40px 24px;
  }
  .testi-slide__inner {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-slide {
    transition: none !important;
  }
}

.service-tile__tooltip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: normal;
  z-index: 5;
}

.sp-service-card-link:hover .service-tile__tooltip {
  opacity: 1;
  transform: translateY(0);
}
