/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 19 2026 | 14:37:07 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* ====== LAYOUT WRAPPER ====== */
  .services-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 60px;
  }

  /* ====== SWIPER BASE ====== */
  .services-swiper {
    overflow: visible;
  }

  .services-swiper .swiper-wrapper {
    align-items: stretch;
  }
.services-swiper {
    padding-top: 10px !important;
}
  .services-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
  }

  /* ====== CARD / ARCH STYLE ====== */
.service-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}
  .service-card {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 200px 200px 28px 28px; /* curved top, soft bottom corners */
    overflow: hidden;
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35); */
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45); */
  }

  .service-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
  }

  /* Dark bottom gradient so text is readable */
  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
    pointer-events: none;
  }

  /* TITLE TEXT */
  .service-title {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 600;
    z-index: 2;
  }
.service-title h2 {
    font-size: 24px;
}
.service-title p {
    display: none;
}
.service-card:hover .service-title p {
    display: block;
}
p.service-info {
    font-size: 14px;
    font-weight: 400;
}

  /* ====== NAVIGATION ARROWS ====== */
  .services-carousel .swiper-button-next,
  .services-carousel .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #6fd02b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }

  .services-carousel .swiper-button-next::after,
  .services-carousel .swiper-button-prev::after {
    font-size: 22px;
    font-weight: 700;
  }

  .services-carousel .swiper-button-prev {
    left: -10px;
  }

  .services-carousel .swiper-button-next {
    right: -10px;
  }

  /* ====== PROGRESSBAR PAGINATION (BOTTOM LINE) ====== */
  .services-pagination.swiper-pagination-progressbar {
    position: relative;
    max-width: 180px;
    margin: 36px auto 0;
    height: 4px;
    background: #d2d2d2;
    border-radius: 999px;
    overflow: hidden;
  }

  .services-pagination .swiper-pagination-progressbar-fill {
    background: #6fd02b;
    border-radius: inherit;
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 1024px) {
    .services-carousel {
      padding-inline: 20px;
    }

    .services-carousel .swiper-button-prev {
      left: 0;
    }

    .services-carousel .swiper-button-next {
      right: 0;
    }
  }

  @media (max-width: 767px) {
    .services-carousel {
      padding-inline: 10px;
    }

    .services-carousel .swiper-button-next,
    .services-carousel .swiper-button-prev {
      display: none; /* hide arrows on mobile if you prefer */
    }

    .service-card {
      border-radius: 40px 40px 24px 24px;
    }
  }

/* ---- map styling --- */

/* WRAPPER */
  #service-map-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25) inset;
  }

  /* MAP CONTAINER */
  #service-map {
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  /* TOP-LEFT LABEL (Service areas) */
  .service-map-heading {
    position: absolute;
    top: 28px;
    left: 28px;
    background: #ffffff;
    padding: 14px 26px;
    border-radius: 16px;
    font-size: 26px;
    font-weight: 600;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    z-index: 1000;
  }

  /* RIGHT SIDEBAR */
  .service-area-box {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 320px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    padding: 18px 20px 16px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }

  .service-area-box-header {
    background: #103321;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    margin: -18px -20px 12px -20px;
    font-size: 17px;
    font-weight: 600;
  }

  #area-search {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
    font-size: 14px;
    outline: none;
  }

  #area-search::placeholder {
    color: #b0b0b0;
  }

  #area-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
    font-size: 15px;
  }

  #area-list li {
    padding: 7px 2px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  #area-list li:last-child {
    border-bottom: none;
  }

  #area-list li span.city {
    font-weight: 600;
    display: block;
  }

  #area-list li span.state {
    font-size: 13px;
    color: #555;
  }

  #area-list li:hover {
    color: #0b8b47;
  }

  #area-list li.active {
    color: #0b8b47;
    font-weight: 600;
  }
  #service-map-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0));
  pointer-events: none;
}

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    #service-map-wrapper {
      height: 820px;
    }

    .service-area-box {
      top: auto;
      bottom: 20px;
      right: 50%;
      transform: translateX(50%);
      width: 90%;
    }

    .service-map-heading {
      top: 20px;
      left: 20px;
      font-size: 22px;
    }
  }

  @media (max-width: 600px) {
    #service-map-wrapper {
      height: 680px;
      border-radius: 18px;
    }

    .service-area-box {
      width: calc(100% - 40px);
      right: 50%;
      transform: translateX(50%);
    }
  }

/* ---- map styling end --- */

/* ---- get quote cards --- */

/* ====== BASIC SECTION STYLING ====== */
.steps-section {
 /* background: #071b18;            
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center; */
}

.steps-wrapper {
  max-width: 830px;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
	margin: 0px auto;
}

/* ====== CARD ====== */
.step-card {
    position: relative;
    flex: 1 1 280px;
    max-width: 30%;
    background: #ffffffcf;
    border-radius: 200px 200px 24px 24px;
    padding-top: 60px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 20%);
    overflow: visible;
    backdrop-filter: blur(16px);
    border: 3px solid #fff;
}

.step-card--active {
  background: #ffffff;
}

/* inner content */
.step-card--active .step-inner{
  padding: 30px 10px 10px !important;
}
.step-card .step-inner {
    padding: 60px 10px 10px;
    text-align: center;
    height: 185px;
}

.step-inner h3 {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 400;
  color: #111;
}

/* ====== BADGE ====== */
.step-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.step-badge--active {
  background: #4ed245;    /* bright green */
  color: #ffffff;
}

/* ====== BUTTON (Step 1) ====== */
.step-btn {
  border: none;
  padding: 16px 50px;
  border-radius: 16px 5px 16px 5px;
  background: #4ed245;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(78, 210, 69, 0.55);
}
ul.hours li {
    list-style: none;
    font-size: 17px;
    font-weight: 500;
	line-height: 28px;
}

ul.hours {
    margin: 0;
    padding: 0;
}
/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .steps-wrapper {
    gap: 24px;
  }
  .step-inner {
    padding-inline: 30px;
  }
}

@media (max-width: 600px) {
  .steps-section {
    padding-inline: 16px;
  }
  .step-card {
    max-width: 100%;
  }
}

/* --- get quote cards ends --- */