@charset "utf-8";
/* CSS Document */
body {
      font-family: Arial, sans-serif;
      background: #f8f6f2;
    }

    .hero-carpet {
      position: relative;
      overflow: hidden;
      padding: 0;
      background:
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .hero-carpet::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(30deg, rgba(180, 150, 110, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(180, 150, 110, 0.06) 87.5%, rgba(180, 150, 110, 0.06)),
        linear-gradient(150deg, rgba(180, 150, 110, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(180, 150, 110, 0.06) 87.5%, rgba(180, 150, 110, 0.06)),
        linear-gradient(90deg, rgba(180, 150, 110, 0.04) 2%, transparent 2.5%, transparent 97%, rgba(180, 150, 110, 0.04) 97.5%, rgba(180, 150, 110, 0.04));
      background-size: 120px 210px;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 9999999;
    }

    .hero-subtitle {
      color: #8bc465;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hero-subtitle .square {
      display: inline-block;
      width: 12px;
      height: 12px;
      background: #8bc465;
      margin-right: 10px;
    }

    .hero-title {
      font-size:50px;
      line-height: 1.05;
      font-weight: 700;
      color: #012249;
      margin-bottom: 24px;
    }
    .hero-text {
      color: #6f6a65;
      font-size: 18px;
      line-height: 1.8;
      max-width: 620px;
      margin-bottom: 35px;
    }

    .hero-btn {
      background: #8bc465;
      color: #fff;
      padding: 18px 30px;
      font-weight: 700;
      text-transform: uppercase;
      border: none;
      border-radius: 0;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }

    .hero-btn:hover {
      background: #8bc465;
      color: #fff;
    }

    .slider-visual {
      position: relative;
      min-height: 700px;
      display: flex;
      
      justify-content: center;
    }

    .floating-back-image {
      position: absolute;
      left: 20px;
      bottom: 20px;
      width: 320px;
      height: 320px;
      object-fit: cover;
      z-index: 1;
      opacity: 0.95;
      animation: floatUpDown 4s ease-in-out infinite;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

    @keyframes floatUpDown {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-18px);
      }
    }

    .main-image-frame {
      position: relative;
      z-index: 2;
      width: 620px;
      max-width: 100%;
      padding: 28px;
      border: 1px solid rgba(140, 120, 100, 0.15);
      background: rgba(255,255,255,0.35);
    }

    .main-slide-image {
      width: 100%;
      height: auto;
/*      object-fit: cover;*/
      display: block;
    }

    .play-btn {
      position: absolute;
      left: -34px;
      top: 28%;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      border: 6px solid rgba(31, 121, 55, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8bc465;
      font-size: 34px;
      text-decoration: none;
      z-index: 4;
      animation: pulsePlay 2s infinite;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .play-btn:hover {
      color: #9dce70;
    }

    @keyframes pulsePlay {
      0% {
        box-shadow: 0 0 0 0 rgba(31, 121, 55, 0.45);
        transform: scale(1);
      }
      70% {
        box-shadow: 0 0 0 18px rgba(31, 121, 55, 0);
        transform: scale(1.06);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(31, 121, 55, 0);
        transform: scale(1);
      }
    }

    .thumbs-column {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin: 0;
    }

    .thumbs-column [data-bs-target] {
      border: 0;
      padding: 0;
      background: transparent;
      width: 120px;
      height: 130px;
      overflow: hidden;
      opacity: 0.55;
      transition: 0.35s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      text-indent: 0;
      margin: 0;
    }

    .thumbs-column .active {
      opacity: 1;
      transform: scale(1.03);
    }

    .thumbs-column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-social {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .hero-social a {
      color: #8c8177;
      font-size: 20px;
      transition: 0.3s ease;
    }

    .hero-social a:hover {
      color: #8bc465;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 55px;
      height: 55px;
      background: #fff;
      top: auto;
      bottom: 20px;
      opacity: 1;
      border: 1px solid rgba(31, 121, 55,0.15);
    }

    .carousel-control-prev {
      left: 35%;
    }

    .carousel-control-next {
      left: calc(35% + 70px);
      right: auto;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(43%) sepia(28%) saturate(729%) hue-rotate(344deg) brightness(94%) contrast(88%);
      width: 22px;
      height: 22px;
    }
	  .carousel-indicators{right:0 !important;left:inherit}
    .slide-counter {
      position: absolute;
      right: 10px;
      bottom: 30px;
      z-index: 5;
      font-size: 18px;
      color: #8bc465;
      font-weight: 500;
    }

    .slide-counter strong {
      color: #8bc465;
      font-size: 46px;
      line-height: 1;
      margin-left: 6px;
    }

    @media (max-width: 1399.98px) {
      .thumbs-column {
        right: -60px;
      }
    }

    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 56px;
      }

      .slider-visual {
        min-height: 600px;
      }

      .main-slide-image {
        height: 500px;
      }

      .thumbs-column {
        position: static;
        transform: none;
        flex-direction: row;
        margin-top: 25px;
        justify-content: center;
      }

      .thumbs-column [data-bs-target] {
        width: 95px;
        height: 95px;
      }

      .carousel-control-prev {
        left: 20px;
		  bottom: -50px
      }

      .carousel-control-next {
        left: 90px;
		  bottom:-50px
      }
    }

    @media (max-width: 991.98px) {
      .hero-carpet {
        padding: 60px 0;
      }

      .hero-title {
        font-size: 46px;
      }

      .hero-text {
        font-size: 16px;
      }

      .slider-visual {
        margin-top: 40px;
        min-height: auto;
      }

      .main-slide-image {
        height: 420px;
      }

      .floating-back-image {
        width: 220px;
        height: 220px;
        left: -10px;
        bottom: -10px;
      }

      .play-btn {
        width: 78px;
        height: 78px;
        font-size: 28px;
        left: -22px;
      }

      .hero-social {
        display: none;
      }

      .slide-counter {
        right: 20px;
      }
    }

    @media (max-width: 767.98px) {
      .hero-title {
        font-size: 38px;
      }

      .main-image-frame {
        padding: 16px;
      }

      .main-slide-image {
        height: 320px;
      }

      .floating-back-image {
        width: 170px;
        height: 170px;
      }

      .thumbs-column {
        gap: 10px;
        flex-wrap: wrap;
      }


      .thumbs-column [data-bs-target] {
        width: 75px;
        height: 75px;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 46px;
        height: 46px;
      }

      .slide-counter {
        position: static;
        margin-top: 18px;
        text-align: center;
      }
    }
	  .top-nav-section {
  background: #f3f5f1;
  border-top: 1px solid #eceee9;
  border-bottom: 1px solid #eceee9;
}

.logo-wrap {
  gap: 16px;
  text-decoration: none;
}

.nav-center-menu {
  gap: 10px;
}

.navbar-nav .nav-link {
  color: #012249;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 14px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #8bc465;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #8bc465;
  border-radius: 20px;
}

.right-actions {
  gap: 24px;
  border-left: 1px solid #d8ddd4;
  padding-left: 24px;
}

.phone-box {
  gap: 14px;
}

.phone-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #8bc465;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.phone-info .phone-number {
  font-size: 20px;
  font-weight: 800;
  color: #8bc465;
  text-decoration: none;
  display: block;
  line-height: 1.1;
}

.phone-info p {
  font-size: 16px;
  color: #012249;
  line-height: 1.2;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 62px;
  padding: 0 28px;
  background: #8bc465;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  border-radius: 8px;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #8bc465;
  color: #fff;
}

@media (max-width: 1399px) {
  .logo-text h2 {
    font-size: 24px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
  }

  .phone-info .phone-number {
    font-size: 18px;
  }

  .quote-btn {
    font-size: 18px;
    min-width: 180px;
    height: 56px;
  }
}

@media (max-width: 1199px) {
  .right-actions {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .nav-center-menu {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .navbar {
    min-height: auto;
  }

  .logo-wrap {
    align-items: center;
  }

  .logo-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    font-size: 28px;
  }

  .logo-text h2 {
    font-size: 20px;
  }

  .logo-subtitle span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .logo-subtitle .line {
    width: 35px;
  }

  .phone-info .phone-number {
    font-size: 17px;
  }

  .phone-info p {
    font-size: 14px;
  }

  .quote-btn {
    width: 100%;
    min-width: auto;
    font-size: 18px;
  }

  .navbar-nav .nav-link {
    font-size: 17px;
    padding: 8px 0 !important;
  }

  .navbar-nav .nav-link.active::after {
    left: 0;
    width: 40px;
  }
}
/*2nd section*/
.about-section {
      position: relative;
      padding: 90px 0;
      overflow: hidden;
      background: #f5f5f5;
    }

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

    /* decorative marble shapes */
    .shape-left,
    .shape-right {
      position: absolute;
      z-index: 1;
      opacity: 0.95;
      pointer-events: none;
    }

    /* left collage */
    .about-gallery {
      position: relative;
      margin: 0 auto;
      min-height: 560px;
    }

    .gallery-img {
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      background: #fff;
    }

    .gallery-img img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      display: block;
    }

    .gallery-sm {
      position: absolute;
      left: 20px;
      top: 0;
      width: 215px;
      height: 310px;
    }

    .gallery-lg {
      position: absolute;
      left: 260px;
      top: 0;
/*      width: 245px;*/
      height: 555px;
    }

    .gallery-bottom {
      position: absolute;
      left: 20px;
      bottom: 5px;
      width: 215px;
      height: 215px;
      background: #8bc465;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-bottom-icon {
      width: 105px;
      height: 105px;
      border: 10px solid #fff;
      position: relative;
    }

    .gallery-bottom-icon::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 8px solid #fff;
    }

    .gallery-bottom-icon::after {
      content: "";
      position: absolute;
      width: 38px;
      height: 20px;
      background: #fff;
      top: 42px;
      left: 50%;
      transform: translateX(-50%);
    }

    .rotating-badge {
      position: absolute;
      left: 155px;
      top: 210px;
      width: 155px;
      height: 155px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
      animation: spin 14s linear infinite;
    }

    .rotating-badge svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .rotating-badge text {
      fill: #8bc465;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .rotating-badge .badge-center {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #8bc465;
      color: #fff;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    /* right content */
    .about-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #8bc465;
      font-size: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      position: absolute;
      left: -8px;
      top: 10px;
    }

    .about-tag span.box {
      width: 14px;
      height: 14px;
      background: #8bc465;
      display: inline-block;
    }

    .about-content {
      position: relative;
      padding-left: 36px;
    }

    .about-title {
      color: #012249;
      font-size: 45px;
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 28px;
    }

    .about-divider {
      border: 0;
      border-top: 1px solid #d9d0c9;
      margin: 0 0 28px;
    }

    .about-subtitle {
      color: #8bc465;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .about-text {
      color: #6e655f;
      font-size: 21px;
      line-height: 1.85;
      max-width: 760px;
      margin-bottom: 36px;
    }

    .feature-box {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      position: relative;
      padding-right: 25px;
    }

    .feature-box.border-end-custom::after {
      content: "";
      position: absolute;
      right: 0;
      top: 8px;
      width: 1px;
      height: 76px;
      background: #d9d0c9;
    }

    .feature-icon {
      width: 72px;
      height: 72px;
      min-width: 72px;
      border-radius: 50%;
      background: #eee6e0;
      color: #8bc465;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      transition: all 0.35s ease;
      cursor: pointer;
    }

    .feature-box:hover .feature-icon {
      background: #8bc465;
      color: #fff;
      animation: buzz 0.35s linear 2;
      transform: scale(1.06);
      box-shadow: 0 10px 20px rgba(184, 120, 74, 0.3);
    }

    .feature-title {
      color: #012249;
      font-size: 25px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .feature-text {
      color: #6e655f;
      font-size: 21px;
      line-height: 1.6;
      margin: 0;
    }

    .theme-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: #8bc465;
      color: #fff;
      text-decoration: none;
      padding: 18px 26px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .theme-btn span.line {
      width: 1px;
      height: 22px;
      background: rgba(255, 255, 255, 0.45);
      display: inline-block;
    }

    .theme-btn:hover {
      background: #012249;
      color: #fff;
      transform: translateY(-3px);
    }

    /* animations */
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes buzz {
      0%   { transform: translateX(0) rotate(0deg) scale(1.06); }
      20%  { transform: translateX(-3px) rotate(-6deg) scale(1.06); }
      40%  { transform: translateX(3px) rotate(6deg) scale(1.06); }
      60%  { transform: translateX(-2px) rotate(-4deg) scale(1.06); }
      80%  { transform: translateX(2px) rotate(4deg) scale(1.06); }
      100% { transform: translateX(0) rotate(0deg) scale(1.06); }
    }

    /* responsive */
    @media (max-width: 1399.98px) {
      .about-title {
        font-size: 48px;
      }
      .about-subtitle {
        font-size: 28px;
      }
      .about-text,
      .feature-text {
        font-size: 18px;
      }
      .feature-title {
        font-size: 22px;
      }
    }

    @media (max-width: 991.98px) {
      .about-gallery {
        margin-bottom: 60px;
      }

      .about-title {
        font-size: 40px;
      }

      .about-subtitle {
        font-size: 24px;
      }

      .about-text,
      .feature-text {
        font-size: 17px;
      }

      .feature-box.border-end-custom::after {
        display: none;
      }

      .about-content {
        padding-left: 0;
      }

      .about-tag {
        position: static;
        writing-mode: initial;
        transform: none;
        margin-bottom: 16px;
      }
    }

    @media (max-width: 575.98px) {
      .about-gallery {
        max-width: 100%;
        min-height: 520px;
      }

      .gallery-sm {
        width: 42%;
        height: 250px;
        left: 0;
      }

      .gallery-lg {
        width: 48%;
        height: 430px;
        left: 48%;
      }

      .gallery-bottom {
        width: 42%;
        height: 180px;
        left: 0;
      }

      .rotating-badge {
        width: 120px;
        height: 120px;
        left: 32%;
        top: 120px;
      }

      .about-title {
        font-size: 32px;
      }

      .feature-box {
        padding-right: 0;
      }

      .theme-btn {
        font-size: 16px;
        padding: 15px 20px;
      }
    }
/*2nd section*/
/*gallery*/
.services-section {
      background: linear-gradient(135deg, #8bc465, #8bc465);
      padding: 80px 0;
      overflow: hidden;
    }

    .section-label {
      color: #9fe3b1;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 10px;
    }

    .section-title {
      color: #fff;
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .section-line {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.15);
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .view-all-btn {
      border: 1px solid rgba(159, 227, 177, 0.5);
      color: #fff;
      padding: 14px 26px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: 0.3s ease;
      font-weight: 600;
    }

    .view-all-btn:hover {
      background: #9fe3b1;
      color: #0f2f24;
    }

    .services-slider-wrapper {
      position: relative;
    }

    .services-track {
      display: flex;
      transition: transform 0.7s ease-in-out;
      will-change: transform;
    }

    .service-slide {
      flex: 0 0 20%;
      padding: 14px;
    }

    .service-card {
      background: #f5f3ef;
      height: 100%;
      padding: 22px;
      position: relative;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      border-bottom: 4px solid #9fe3b1;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    }

    .service-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      margin-bottom: 22px;
    }

    .service-icon {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 54px;
      height: 54px;
      border: 2px solid #75c98d;
      color: #174d3a;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      background: rgba(159, 227, 177, 0.12);
    }

    .service-title {
      font-size: 20px;
      font-weight: 700;
      color: #012249;
      margin-bottom: 14px;
    }

    .service-text {
      color: #5c655f;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 24px;
      min-height: 115px;
    }

    .service-btn {
      border: 1px solid #75c98d;
      color: #174d3a;
      text-decoration: none;
      padding: 13px 18px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      transition: 0.3s ease;
    }

    .service-btn:hover {
      background: #75c98d;
      color: #0f2f24;
    }

    .slider-controls {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .slider-btn {
      width: 48px;
      height: 48px;
      border: 1px solid #9fe3b1;
      background: transparent;
      color: #fff;
      font-size: 20px;
      transition: 0.3s ease;
    }

    .slider-btn:hover {
      background: #9fe3b1;
      color: #0f2f24;
    }

    @media (max-width: 1399px) {
      .service-slide {
        flex: 0 0 25%;
      }
    }

    @media (max-width: 1199px) {
      .service-slide {
        flex: 0 0 33.3333%;
      }

      .section-title {
        font-size: 40px;
      }
    }

    @media (max-width: 991px) {
      .service-slide {
        flex: 0 0 50%;
      }

      .section-title {
        font-size: 34px;
      }
    }

    @media (max-width: 575px) {
      .service-slide {
        flex: 0 0 100%;
      }

      .section-title {
        font-size: 28px;
      }

      .service-img {
        height: 200px;
      }
    }/*gallery*/
/*call*/
.carpet-call-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.carpet-call-banner {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 0;
  background:
    linear-gradient(rgba(15, 71, 42, 0.78), rgba(15, 71, 42, 0.78)),
    url('images/carpet-texture.jpg') center center / cover no-repeat;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.banner-overlay::before,
.banner-overlay::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(146, 208, 80, 0.45);
  border-radius: 50%;
}

.banner-overlay::before {
  width: 18px;
  height: 18px;
  top: 22px;
  left: 28px;
}

.banner-overlay::after {
  width: 10px;
  height: 10px;
  top: 28px;
  left: 34px;
  border-color: rgba(146, 208, 80, 0.9);
}

.banner-content {
  position: relative;
  z-index: 2;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 35px 55px;
}

.banner-left {
  max-width: 470px;
}

.banner-left h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.banner-left p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.banner-shape-wrap {
  position: absolute;
  left: 53%;
  bottom: -8px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.shape {
  display: block;
  width: 78px;
  height: 140px;
  transform: skewX(-24deg);
}

.shape-light {
  background: #8bc34a;
  opacity: 0.55;
}

.shape-dark {
  background: #14532d;
  margin-left: -8px;
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.phone-icon i {
  color: #14532d;
  font-size: 1.8rem;
}

.phone-number {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.phone-number:hover {
  color: #8bc34a;
}

@media (max-width: 991.98px) {
  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 30px;
  }

  .banner-shape-wrap {
    display: none;
  }

  .banner-right {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .phone-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .carpet-call-section {
    padding: 50px 0;
  }

  .carpet-call-banner {
    min-height: auto;
  }

  .banner-content {
    min-height: auto;
    padding: 28px 20px;
  }

  .banner-left h2 {
    font-size: 1.55rem;
  }

  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .phone-icon {
    width: 60px;
    height: 60px;
  }

  .phone-icon i {
    font-size: 1.4rem;
  }

  .phone-number {
    font-size: 1.35rem;
  }
}
/*call*/
/*testimonials*/
.testimonial-section {
  padding: 90px 0;
  background: #fff;
}

.testimonial-main-img {
  height: 620px;
}

.testimonial-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-heading-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}

.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 700;
  color: #8bc465;
}

.testimonial-heading-wrap h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* avatars */
.review-avatars {
  display: flex;
  gap: 15px;
}

.avatar-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  background: none;
  transition: .3s;
}

.avatar-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
}

.avatar-btn.active {
  transform: scale(1.2);
}

.avatar-btn.active img {
  border-color: #241812;
}

/* card */
.testimonial-card {
  background: #e7e7e7;
  padding: 50px;
  margin-left: -25%;
  width: 110%;
  position: relative;
}

.quote-icon {
  font-size: 90px;
  color: #8bc465;
}

.stars {
  position: absolute;
  right: 40px;
  top: 40px;
  color: #8bc465;
}

.review-box p {
  font-size: 18px;
  color: #666;
  margin: 20px 0;
}

.review-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.review-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.review-next {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: #8bc465;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
}
/*testimonials*/
/* Contact */
.contact-section {
  position: relative;
  padding: 90px 0 80px;
  background: #f6f1eb;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .25;
}

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

.section-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #8bc465;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  float: left;
  margin-right: 18px;
  font-size: 13px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #8bc465;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
}

.contact-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd4cc;
  margin-top: 25px;
}

.contact-text {
  color: #77706c;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.contact-info-box {
  background: #012249;
  padding: 28px;
  min-height: 165px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item span {
  width: 34px;
  height: 34px;
  background: #8bc465;
  color: #fff;
  display: grid;
  place-items: center;
  margin-right: 10px;
}

.info-item p {
  margin: 0;
  background: rgba(255,255,255,.13);
  color: #fff;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
}

.contact-form-box {
  background: #fff;
  padding: 42px 38px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.contact-form-box h4 {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 28px;
  border-left: 4px solid #8bc465;
  padding-left: 18px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ddd6d0;
  padding: 14px 0;
  font-size: 13px;
  color: #777;
  outline: none;
  margin-bottom: 10px;
}
.contact-form-box textarea {
  height: 95px;
  resize: none;
  border: 0;
  padding: 16px;
  margin-top: 12px;
}
.contact-form-box button {
  margin-top: 15px;
  border: 0;
  background: #8bc465;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 800;
}
.contact-form-box button i {
  margin-left: 18px;
}
.side-image {
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  height: 360px;
  margin-left: -40px;
}
.side-image img {
  width: 100%;
  height: 100%;
/*  object-fit: cover;*/
}
/* Map */
.map-section iframe {
  width: 100%;
  height: 330px;
  border: 0;
  display: block;
}
/* Footer */
.footer-section {
  background: #012249;
  color: #fff;
  padding: 75px 0 30px;
  position: relative;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .35;
}
.footer-section .container {
  position: relative;
  z-index: 2;
}
.footer-logo {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}
.footer-logo::before {
  content: "▧";
  color: #8bc465;
  margin-right: 5px;
}
.footer-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.newsletter {
  display: flex;
  background: #fff;
  max-width: 280px;
  height: 58px;
}
.newsletter input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  outline: none;
  font-size: 13px;
}
.newsletter button {
  width: 55px;
  border: 0;
  background: #fff;
  color: #8bc465;
  border-left: 1px solid #eee;
}
.footer-section h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 25px;
}
.footer-section h5::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #8bc465;
  display: inline-block;
  margin-right: 9px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}
.footer-section ul li a:hover {
  color: #8bc465;
  padding-left: 5px;
}
.footer-section p {
  font-size: 14px;
  line-height: 1.8;
}
.footer-section p i {
  color: #8bc465;
  margin-right: 9px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 65px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-grid;
  place-items: center;
  color: #b7aaa0;
  margin-right: 6px;
  text-decoration: none;
  transition: .3s;
}

.socials a:hover {
  background: #8bc465;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-title {
    font-size: 38px;
  }

  .section-label {
    writing-mode: initial;
    transform: none;
    float: none;
    margin-bottom: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/*form*/
/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width:49%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 47%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
	margin-right:3%
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   → ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}


/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}

/*form*/
.offset-lg-1{color:#fff!important}
a{color:inherit!important}
/*faqs*/
.faq-section {
  background: #f5fbff;
}

.faq-subtitle {
  display: inline-block;
  color: #8bc465;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 42px;
  font-weight: 800;
  color: #10233f;
}

.faq-text {
  max-width: 720px;
  margin: 15px auto 0;
  color: #5d6b7c;
  font-size: 17px;
}

.faq-service-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0, 40, 90, 0.08);
}

.faq-service-title {
  font-size: 24px;
  font-weight: 800;
  color: #10233f;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 5px solid #8bc465;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fbff;
}

.accordion-button {
  font-weight: 700;
  color: #10233f;
  background: #f8fbff;
  box-shadow: none;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #8bc465, #14532d);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.7;
  background: #ffffff;
}

@media (max-width: 767px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-service-box {
    padding: 22px;
  }

  .faq-service-title {
    font-size: 21px;
  }
}
/*faqs*/
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .dropdown-menu {
   z-index: 999999999999999!important
  }
}
@font-face{font-display:block;font-family:bootstrap-icons;src:url("../fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),url("../fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff")}
.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.services-section .theme-btn {width:auto}

.bi-arrow-right::before{content:"\f138"}
.bi-facebook::before{content:"\f344"}
.bi-instagram::before{content:"\f437"}
.bi-play-fill::before{content:"\f4f4"}
.bi-telephone-fill::before{content:"\f5b4"}
.bi-pinterest::before{content:"\f663"}
.bi-twitter-x::before{content:"\f8db"}
.bi-stars::before{content:"\f589"}
.bi-cash-coin::before{content:"\f632"}
.bi-lightning-charge-fill::before{content:"\f46c"}
.bi-arrow-left::before{content:"\f12f"}
.bi-recycle::before{content:"\f64f"}
.bi-send-fill::before{content:"\f6b9"}
.bi-geo-alt-fill::before{content:"\f3e7"}
.bi-clock::before{content:"\f293"}