/* =========================================================
   style.css — Polish Interiors KE (CLEAN + NO CONFLICTS)
   Font: Nunito Sans
   Theme: #ffc600 (accent) | #2a623d (primary) | black/grey/white
   Notes:
   - Removed duplicated blocks (two full CSS sets)
   - Unified tokens in ONE :root
   - Replaced old green/yellow (#3b5d50/#f9bf29) with your new theme
   - Kept important template sections: navbar, hero, buttons, sections,
     why-choose, we-help, services, testimonials, timeline, team, footer
========================================================= */

/* -----------------------------
  Google Font (Nunito Sans)
----------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&display=swap");

/* -----------------------------
  Theme Tokens (Single Source of Truth)
----------------------------- */
:root {
  --pi-accent: #ffc600;
  --pi-primary: #2a623d;

  --pi-black: #000000;
  --pi-ink: #111111;
  --pi-text: #6a6a6a;

  --pi-bg: #f6f7f7;
  --pi-white: #ffffff;

  --pi-border: rgba(0, 0, 0, 0.10);
  --pi-border-soft: rgba(0, 0, 0, 0.06);

  --pi-radius-sm: 14px;
  --pi-radius: 18px;
  --pi-radius-lg: 22px;

  --pi-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  --pi-shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.10);

  --pi-container: 1200px;
}

/* -----------------------------
  Base / Reset
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: var(--pi-text);
  font-size: 14px;
  background-color: var(--pi-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-top: 0;
}

a {
  color: var(--pi-ink);
  text-decoration: none;
  transition: 0.25s all ease;
}

a:hover {
  color: var(--pi-ink);
  opacity: 0.95;
}

a.more {
  font-weight: 800;
}

/* Utility */
.text-muted {
  color: var(--pi-text) !important;
}

.bg-dark {
  background-color: var(--pi-black) !important;
}

.section-title {
  color: var(--pi-ink);
  font-weight: 900;
}

/* Template spacing rhythm */
.product-section {
  padding: 7rem 0;
}

.why-choose-section {
  padding: 7rem 0;
}

.we-help-section {
  padding: 7rem 0;
}

.popular-product {
  padding: 0 0 7rem 0;
}

.testimonial-section {
  padding: 3rem 0 7rem 0;
}

.untree_co-section {
  padding: 7rem 0;
}

.before-footer-section {
  padding-bottom: 7rem;
}






/* =========================================================
   Navbar
========================================================= */
.custom-navbar {
  background: var(--pi-primary) !important;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.custom-navbar .custom-navbar-nav li a {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86) !important;
  opacity: 0.95;
  position: relative;
  transition: 0.25s all ease;
  padding: 10px 0;
}

.custom-navbar .custom-navbar-nav li a:hover {
  color: #fff !important;
  opacity: 1;
}

.custom-navbar .custom-navbar-nav li.active a {
  color: #fff !important;
  opacity: 1;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 8px;
    right: 8px;
    height: 4px;
    width: 0;
    background: var(--pi-accent);
    border-radius: 999px;
    transition: 0.18s all ease-out;
  }

  .custom-navbar .custom-navbar-nav li a:hover:before {
    width: calc(100% - 16px);
  }

  .custom-navbar .custom-navbar-nav li.active a:before {
    width: calc(100% - 16px);
  }
}

.custom-navbar .navbar-toggler {
  border-color: transparent;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Dropdown */
.dropdown-menu-dark {
  border-radius: 14px;
  padding: 10px;
}

.dropdown-menu-dark .dropdown-item {
  text-decoration: none;
  font-weight: 800;
}

.dropdown-menu-dark .dropdown-item:hover {
  background: rgba(255, 198, 0, 0.18);
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:active,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn.btn-primary {
  background: var(--pi-primary);
  border-color: var(--pi-primary);
  color: #fff;
}

.btn.btn-primary:hover {
  filter: brightness(0.95);
  color: #fff;
}

.btn.btn-secondary {
  background: var(--pi-accent);
  border-color: var(--pi-accent);
  color: var(--pi-black);
}

.btn.btn-secondary:hover {
  filter: brightness(0.96);
  color: var(--pi-black);
}

.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn.btn-white-outline:hover {
  border-color: #fff;
  color: #fff;
}





















/* =========================================================
   HERO SECTION — Polish Interiors KE
   Theme: #2a623d (primary green) | #ffc600 (accent)
   Minimal 3-slide carousel
========================================================= */

/* Root tokens (only if not already declared) */
:root {
  --pi-primary: #2a623d;
  --pi-accent: #ffc600;
  --pi-black: #000000;
  --pi-white: #ffffff;
}

/* =============================
   HERO WRAPPER
============================= */
.hero {
  position: relative;
  background: var(--pi-primary);
  padding: 0;
  overflow: hidden;
}

.pi-hero {
  background: var(--pi-primary);
}

/* =============================
   HERO SLIDES
============================= */
.pi-hero-slide {
  position: relative;
  min-height: 80vh;
  /* Main height */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive height adjustments */
@media (max-width: 1200px) {
  .pi-hero-slide {
    min-height: 78vh;
  }
}

@media (max-width: 992px) {
  .pi-hero-slide {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .pi-hero-slide {
    min-height: 70vh;
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .pi-hero-slide {
    min-height: 65vh;
    padding: 50px 0;
  }
}

/* =============================
   OVERLAY
============================= */
.pi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(42, 98, 61, 0.85) 0%,
      /* deep brand green */
      rgba(42, 98, 61, 0.55) 60%,
      /* mid fade */
      rgba(42, 98, 61, 0.35) 100%
      /* soft fade */
    );
  z-index: 1;
}

.pi-hero-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  /* left only */
  width: min(720px, 62%);
  /* concentrates where text is */
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(90deg,
      rgba(42, 98, 61, 0.88) 0%,
      rgba(42, 98, 61, 0.60) 55%,
      rgba(42, 98, 61, 0.18) 85%,
      rgba(42, 98, 61, 0.00) 100%);
}

/* On small screens, cover a bit more width (text usually spans more) */
@media (max-width: 768px) {
  .pi-hero-overlay {
    width: 100%;
    background: linear-gradient(180deg,
        rgba(42, 98, 61, 0.86) 0%,
        rgba(42, 98, 61, 0.55) 55%,
        rgba(42, 98, 61, 0.10) 100%);
  }
}

/* =============================
   CONTENT
============================= */
.pi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.pi-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 198, 0, 0.15);
  color: var(--pi-accent);
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-bottom: 18px;
}

.pi-hero-title {
  font-weight: 900;
  color: var(--pi-white);
  line-height: 1.05;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.pi-hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 28px;
}

/* =============================
   BUTTONS (Hero specific polish)
============================= */
.hero .btn {
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 999px;
}

.hero .btn-secondary {
  background: var(--pi-accent);
  border-color: var(--pi-accent);
  color: var(--pi-black);
}

.hero .btn-secondary:hover {
  filter: brightness(0.95);
}

.hero .btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--pi-white);
}

.hero .btn-white-outline:hover {
  border-color: var(--pi-white);
}

/* =============================
   CAROUSEL FADE
============================= */
.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

/* =============================
   INDICATORS (Minimal Dots)
============================= */
.carousel-indicators {
  bottom: 25px;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  margin: 0 6px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--pi-accent);
  opacity: 1;
  transform: scale(1.2);
}

/* Hide arrows completely */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

/* =============================
   TEXT ALIGNMENT (Mobile polish)
============================= */
@media (max-width: 768px) {
  .pi-hero-content {
    text-align: left;
  }

  .pi-hero-title {
    font-size: 32px;
  }

  .pi-hero-text {
    font-size: 15px;
  }
}

/* =============================
   Accessibility improvement
============================= */
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none !important;
  }
}



























/* =========================================================
   Why Choose / Mission / Values (Your custom blocks)
========================================================= */
.why-choose-section .img-wrap {
  position: relative;
}

.why-choose-section .img-wrap:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-40%, -40%);
  z-index: -1;
  opacity: 0.45;
}

.why-choose-section .img-wrap img {
  border-radius: 20px;
}

.feature {
  margin-bottom: 30px;
}

.feature .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
  margin-bottom: 16px;
  border: 1px solid rgba(42, 98, 61, 0.16);
}

.feature h3 {
  font-size: 14px;
  color: var(--pi-ink);
  font-weight: 900;
}

.feature p {
  font-size: 14px;
  line-height: 22px;
  color: var(--pi-text);
}

/* Unified card utility (kept) */
.pi-card {
  background: #ffffff;
  border-radius: var(--pi-radius-lg);
  box-shadow: var(--pi-shadow);
  border: 1px solid var(--pi-border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}

.pi-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
}

.pi-divider {
  border-color: rgba(0, 0, 0, 0.08);
  margin: 22px 0;
}

@media (prefers-reduced-motion: reduce) {

  .pi-card,
  .pi-card:hover {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Process / Grid images (Template support)
========================================================= */
.we-help-section .imgs-grid {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-40%, -40%);
  z-index: -1;
  opacity: 0.45;
}

.we-help-section .imgs-grid .grid img {
  border-radius: 20px;
  max-width: 100%;
}

.we-help-section .imgs-grid .grid.grid-1 {
  grid-column: 1 / span 18;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  grid-column: 19 / span 27;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

.we-help-section .imgs-grid .grid.grid-3 {
  grid-column: 14 / span 16;
  grid-row: 6 / span 27;
  padding-top: 20px;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--pi-primary);
  position: absolute;
  left: 0;
  top: 8px;
}

/* =========================================================
   Services Cards
========================================================= */
.service-card {
  background: #ffffff;
  border-radius: var(--pi-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pi-shadow-lg);
}

.service-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s ease;
}

.service-card:hover .service-thumb img {
  opacity: 0.92;
}

.service-body {
  padding: 18px 18px 20px 18px;
  text-align: left;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
}

.service-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
}

.service-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--pi-ink);
  margin-bottom: 8px;
}

.service-text {
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
  margin-bottom: 14px;
}

.service-link {
  font-weight: 900;
  text-decoration: none;
  color: var(--pi-primary);
}

.service-link:hover {
  filter: brightness(0.92);
}

/* =========================================================
   Testimonials
========================================================= */
.testimonial-card {
  background: #fff;
  border-radius: var(--pi-radius-lg);
  padding: 28px 26px;
  box-shadow: var(--pi-shadow);
  border: 1px solid var(--pi-border);
  text-align: left;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.stars i {
  font-size: 14px;
  margin-right: 2px;
  color: var(--pi-accent);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
}

.quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
  margin-bottom: 14px;
}

.testimonial-quote p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 18px;
  color: var(--pi-ink);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.author-pic img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 2px;
  color: var(--pi-ink);
}

.author-role {
  display: block;
  font-size: 13px;
  color: var(--pi-text);
}

/* Slider nav (kept) */
.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider-wrap #testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 100%;
  display: none;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav {
    display: block;
  }
}

.testimonial-slider-wrap #testimonial-nav>span {
  cursor: pointer;
  position: absolute;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: rgba(255, 198, 0, 0.12);
  color: var(--pi-ink);
  transition: 0.3s all ease;
}

.testimonial-slider-wrap #testimonial-nav>span:hover {
  background: var(--pi-accent);
  color: var(--pi-black);
}

.testimonial-slider-wrap #testimonial-nav .prev {
  left: -10px;
}

.testimonial-slider-wrap #testimonial-nav .next {
  right: 0;
}

/* =========================================================
   Timeline (Process)
========================================================= */
.pi-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 10px 0;
}

.pi-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pi-accent) 0%, var(--pi-primary) 100%);
  height: 0;
  opacity: 0;
  transition: height 1.2s ease-out, opacity 1.2s ease-out;
}

.pi-timeline-item {
  position: relative;
  width: 50%;
  padding: 18px 46px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}

.pi-timeline-item.left {
  left: 0;
}

.pi-timeline-item.right {
  left: 50%;
}

.pi-timeline-item::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--pi-accent);
  z-index: 3;
}

.pi-timeline-card {
  background: #fff;
  border-radius: var(--pi-radius-lg);
  padding: 18px 18px 16px 18px;
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  position: relative;
}

.pi-timeline-card:hover {
  box-shadow: var(--pi-shadow-lg);
  transform: translateY(-2px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pi-timeline-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pi-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--pi-primary);
  background: rgba(42, 98, 61, .10);
  min-width: 44px;
}

.pi-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 98, 61, .10);
  color: var(--pi-primary);
  border: 1px solid rgba(42, 98, 61, .18);
}

.pi-title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--pi-ink);
}

.pi-text {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}

.pi-show {
  opacity: 1;
  transform: translateY(0);
}

.pi-timeline.pi-show-line::after {
  height: 100%;
  opacity: 1;
}

.pi-timeline.pi-hide-line::after {
  height: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .pi-timeline::after {
    left: 26px;
    transform: none;
  }

  .pi-timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 14px 12px 14px 64px;
  }

  .pi-timeline-item::before {
    left: 26px;
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .pi-timeline::after,
  .pi-timeline-item,
  .pi-timeline-card {
    transition: none !important;
  }

  .pi-timeline-card:hover {
    transform: none !important;
  }
}

/* =========================================================
   Team Cards (Cover images on desktop + mobile)
========================================================= */
.pi-team-card {
  background: #fff;
  border-radius: var(--pi-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pi-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pi-shadow-lg);
}

.pi-team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eceb;
}

.pi-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pi-team-body {
  padding: 16px 16px 18px 16px;
  text-align: left;
}

.pi-team-name {
  font-size: 15px;
  font-weight: 900;
  color: var(--pi-ink);
  margin: 0 0 4px 0;
}

.pi-team-role {
  margin: 0 0 10px 0;
  font-size: 13px;
  font-weight: 900;
  color: var(--pi-primary);
  opacity: 0.95;
}

.pi-team-bio {
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
  margin: 0 0 14px 0;
}

.pi-team-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pi-team-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(42, 98, 61, 0.10);
  color: var(--pi-primary);
}

@media (max-width: 575.98px) {
  .pi-team-photo {
    aspect-ratio: 16 / 10;
  }
}

















/* =========================================================
   POLISH INTERIORS FOOTER (FULL)
   Theme: #2a623d (primary) | #ffc600 (accent) | white/grey/black
========================================================= */

.footer-section{
  background: #2a623d;
  color: rgba(255,255,255,0.85);
  padding: 90px 0 40px 0;
  position: relative;
  overflow: hidden;
}

/* subtle shapes */
.footer-section::before{
  content:"";
  position:absolute;
  top:-130px;
  right:-130px;
  width:340px;
  height:340px;
  border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.footer-section::after{
  content:"";
  position:absolute;
  bottom:-120px;
  left:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background: rgba(255,255,255,0.035);
}

.footer-section .container{ position: relative; z-index: 2; }

.footer-logo-img img{
  max-width: 185px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* text */
.footer-desc{
  font-size: 14px;
  line-height: 26px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.footer-small{
  font-size: 14px;
  line-height: 24px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

/* headings */
.footer-heading{
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
}

/* links */
.footer-links li{ margin-bottom: 12px; }
.footer-links a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 700;
  transition: .25s ease;
}
.footer-links a:hover{
  color: #ffc600;
  padding-left: 6px;
}

/* contacts */
.footer-contact p{
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}
.footer-contact a{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 700;
}
.footer-contact a:hover{ color: #ffc600; }

.footer-contact-icon{
  color: #ffc600;
  width: 18px;
}

/* social */
.footer-social{ padding: 0; margin: 0; }
.footer-social li{ display: inline-block; margin-right: 10px; }
.footer-social a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  transition: .25s ease;
}
.footer-social a:hover{
  background: #ffc600;
  color: #000;
  transform: translateY(-3px);
}

/* divider */
.footer-divider{
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 40px 0 28px 0;
}

/* newsletter */
.footer-newsletter{ margin-top: 4px; }
.footer-newsletter-row{
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-input{
  flex: 1;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  font-weight: 700;
}
.footer-input::placeholder{
  color: rgba(255,255,255,0.65);
}
.footer-input:focus{
  border-color: rgba(255,198,0,0.65);
}

.footer-btn{
  width: 52px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,198,0,0.35);
  background: #ffc600;
  color: #000;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}
.footer-btn:hover{ filter: brightness(0.96); transform: translateY(-1px); }

.footer-note{
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* gallery */
.footer-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.footer-gallery-item{
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.footer-gallery-item img{
  width: 100%;
  height: 70px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.footer-gallery-item:hover img{
  transform: scale(1.06);
  opacity: 0.92;
}

/* bottom */
.footer-copy{
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-copy a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
}
.footer-copy a:hover{ color: #ffc600; }

/* responsive */
@media (max-width: 768px){
  .footer-section{ padding: 70px 0 30px 0; }
  .footer-logo-img img{ max-width: 155px; }
  .footer-heading{ margin-top: 18px; }
  .footer-gallery-item img{ height: 66px; }
}
















/* =========================================================
   Forms
========================================================= */
.form-control {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  font-weight: 700;
}

.form-control:focus {
  box-shadow: none;
  border-color: rgba(255, 198, 0, 0.7);
}

/* =========================================================
   Responsive spacing
========================================================= */
@media (max-width: 991.98px) {
  .untree_co-section {
    padding: 5.5rem 0;
  }

  .product-section,
  .why-choose-section,
  .we-help-section {
    padding: 5.5rem 0;
  }
}




/* =========================================================
   About us css
========================================================= */

/* =========================
   About Page Static Header
========================= */
.pi-page-hero{
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background: #2a623d;
  overflow: hidden;
}

.pi-page-hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.pi-page-hero-overlay{
  position: absolute;
  inset: 0;
  /* green-tinted overlay concentrated to the left (text area) */
  background: linear-gradient(
    90deg,
    rgba(42,98,61,0.92) 0%,
    rgba(42,98,61,0.80) 45%,
    rgba(42,98,61,0.35) 75%,
    rgba(42,98,61,0.10) 100%
  );
}

.pi-page-hero-content{
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.pi-page-hero-title{
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  margin: 10px 0 14px 0;
  font-size: clamp(34px, 4vw, 56px);
}

.pi-page-hero-text{
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}

@media (max-width: 768px){
  .pi-page-hero{ min-height: 62vh; padding: 58px 0; }
  .pi-page-hero-overlay{
    background: linear-gradient(
      90deg,
      rgba(42,98,61,0.94) 0%,
      rgba(42,98,61,0.82) 60%,
      rgba(42,98,61,0.22) 100%
    );
  }
}


/* =========================================================
   Services CSS
========================================================= */
/* =========================
   SERVICES PAGE ADDITIONS
   - Onboarding + Deliverables blocks
   - Theme: #2a623d (primary) + #ffc600 (accent)
========================= */

.pi-step-card{
  background: #ffffff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  padding: 18px 18px 16px 18px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pi-step-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}

.pi-step-icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,98,61,0.12);
  color: #2a623d;
  border: 1px solid rgba(42,98,61,0.18);
  margin-bottom: 12px;
}

.pi-step-no{
  position: absolute;
  top: 14px;
  right: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  background: rgba(255,198,0,0.14);
  border: 1px solid rgba(255,198,0,0.22);
  padding: 6px 10px;
  border-radius: 999px;
}

.pi-step-title{
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 8px 0;
  color: var(--pi-ink);
}

.pi-step-text{
  margin: 0;
  color: var(--pi-text);
  font-size: 14px;
  line-height: 24px;
}

/* Deliverables */
.pi-deliverable{
  background: #ffffff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  padding: 20px 18px 18px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pi-deliverable:hover{
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}

.pi-deliverable-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,198,0,0.14);
  color: #111;
  border: 1px solid rgba(255,198,0,0.25);
  margin-bottom: 12px;
}

.pi-deliverable-title{
  font-size: 16px;
  font-weight: 900;
  color: var(--pi-ink);
  margin: 0 0 8px 0;
}

.pi-deliverable-text{
  margin: 0;
  color: var(--pi-text);
  font-size: 14px;
  line-height: 24px;
}
/* =========================
   Expanded Onboarding + Deliverables
   Adds better spacing + creative elements
========================= */

.pi-onboarding,
.pi-deliverables{
  padding: 84px 0; /* ✅ aligns with your standard section rhythm */
}

@media (max-width: 991.98px){
  .pi-onboarding,
  .pi-deliverables{
    padding: 64px 0;
  }
}

/* Small link style (matches your theme) */
.pi-link{
  font-weight: 900;
  color: var(--pi-ink);
  text-decoration: none;
}
.pi-link:hover{ opacity: .85; }

/* Step card improvements */
.pi-step-card{
  padding: 20px 18px 18px 18px;
  background: #fff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pi-step-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}
.pi-step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
}
.pi-step-icon{
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(42,98,61,.12);
  color: #2a623d;
  border: 1px solid rgba(42,98,61,.18);
}
.pi-step-no{
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(0,0,0,.45);
  background: rgba(255,198,0,.14);
  border: 1px solid rgba(255,198,0,.22);
  padding: 6px 10px;
  border-radius: 999px;
}
.pi-step-title{
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 8px 0;
  color: var(--pi-ink);
}
.pi-step-text{
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}
.pi-step-mini{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.pi-step-mini span{
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.70);
}

/* Callout strip */
.pi-callout{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px 18px;
  background: #ffffff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
}
.pi-callout-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,198,0,.14);
  border: 1px solid rgba(255,198,0,.22);
  color: var(--pi-ink);
  flex: 0 0 auto;
}
.pi-callout-title{
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: var(--pi-ink);
}
.pi-callout-text{
  color: var(--pi-text);
  font-size: 14px;
  line-height: 24px;
}

/* Deliverables blocks */
.pi-deliverable{
  padding: 20px 18px 18px 18px;
  background: #fff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pi-deliverable:hover{
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}
.pi-deliverable-icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,198,0,.14);
  border: 1px solid rgba(255,198,0,.25);
  color: var(--pi-ink);
  margin-bottom: 12px;
}
.pi-deliverable-title{
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px 0;
  color: var(--pi-ink);
}
.pi-deliverable-text{
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}
.pi-deliverable-list{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.pi-deliverable-list span{
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(42,98,61,.10);
  border: 1px solid rgba(42,98,61,.16);
  color: #2a623d;
}

/* CTA panel at the bottom */
.pi-cta-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: var(--pi-radius-lg);
  background: linear-gradient(90deg, rgba(42,98,61,.12) 0%, rgba(255,198,0,.12) 100%);
  border: 1px solid rgba(0,0,0,.08);
}
.pi-cta-title{
  font-size: 16px;
  font-weight: 900;
  color: var(--pi-ink);
}
.pi-cta-text{
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}
.pi-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

@media (max-width: 991.98px){
  .pi-cta-panel{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   CONTACT PAGE — Modern Blocks
   Works with your existing theme tokens
========================= */

.pi-contact-hero{
  background: var(--pi-black);
}

/* contact cards */
.pi-contact-cards{ padding: 84px 0; }
@media (max-width: 991.98px){ .pi-contact-cards{ padding: 64px 0; } }

.pi-contact-card{
  background:#fff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  padding: 20px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pi-contact-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pi-shadow-lg);
}
.pi-contact-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(42,98,61,.12);
  border: 1px solid rgba(42,98,61,.18);
  color: #2a623d;
  margin-bottom: 12px;
}
.pi-contact-title{
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px 0;
  color: var(--pi-ink);
}
.pi-contact-text{
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
  margin: 0;
}
.pi-contact-link{
  font-weight: 900;
  color: var(--pi-ink);
  text-decoration: none;
}
.pi-contact-link:hover{ opacity: .85; }

/* form card */
.pi-form-card{
  background:#fff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  padding: 22px 18px;
}
.pi-label{
  font-weight: 900;
  color: var(--pi-ink);
  margin-bottom: 6px;
  display: inline-block;
}
.pi-form-note{
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
}

/* badge */
.pi-help-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,198,0,.14);
  border: 1px solid rgba(255,198,0,.22);
  color: rgba(0,0,0,.70);
  font-weight: 900;
  font-size: 12px;
}

/* side info */
.pi-side-title{
  font-size: 16px;
  font-weight: 900;
  color: var(--pi-ink);
  margin: 0 0 14px 0;
}
.pi-side-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 0;
}
.pi-side-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,198,0,.14);
  border: 1px solid rgba(255,198,0,.22);
  color: var(--pi-ink);
  flex: 0 0 auto;
}
.pi-side-label{
  font-weight: 900;
  color: var(--pi-ink);
  margin-bottom: 4px;
}
.pi-side-text{
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}
.pi-divider{
  border-color: rgba(0,0,0,.08);
  margin: 14px 0;
}

/* hours */
.pi-hours{
  display:grid;
  gap: 10px;
}
.pi-hours > div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}
.pi-hours span{ color: rgba(0,0,0,.60); font-weight: 800; }
.pi-hours strong{ color: var(--pi-ink); font-weight: 900; }

/* map */
.pi-map-card{
  background:#fff;
  border-radius: var(--pi-radius-lg);
  border: 1px solid var(--pi-border);
  box-shadow: var(--pi-shadow);
  overflow:hidden;
  padding: 18px;
}
.pi-map-card iframe{
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
}
@media (max-width: 991.98px){
  .pi-map-card iframe{ height: 320px; }
}
.pi-map-text{
  font-size: 14px;
  line-height: 24px;
  color: var(--pi-text);
}
.pi-coverage{
  display:grid;
  gap: 10px;
}
.pi-coverage > div{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(42,98,61,.08);
  border: 1px solid rgba(42,98,61,.14);
  color: #2a623d;
  font-weight: 900;
  font-size: 13px;
}
/* Contact page hero keeps your existing .hero rules */
.pi-contact-hero{
  /* if you want it to feel slightly different but still consistent */
  background: var(--pi-black);
}

/* Optional: make the right image cleaner + modern */
.pi-contact-hero .hero-img-wrap img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional: if your default hero dots show and you don’t want them on contact */
.pi-contact-hero .hero-img-wrap:after{
  display: none;
}
/* ==========================================
   STATIC FULL-WIDTH HERO (CONTACT PAGE)
========================================== */

.pi-hero-static {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background wrapper */
.pi-hero-bg {
  min-height: 80vh; /* same as your carousel standard */
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay – green tone, focused left (text side) */
.pi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(42, 98, 61, 0.92) 0%,   /* strong green near text */
    rgba(42, 98, 61, 0.75) 35%,
    rgba(42, 98, 61, 0.45) 65%,
    rgba(42, 98, 61, 0.15) 100%  /* fades toward image side */
  );
  z-index: 1;
}

/* Content */
.pi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

/* Responsive height adjustments */
@media (max-width: 992px) {
  .pi-hero-bg {
    min-height: 70vh;
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .pi-hero-bg {
    min-height: 60vh;
    padding: 50px 0;
  }
}
