/* -----------------------------------------
	Hero Banner CSS
----------------------------------------- */
.hero-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, #e8f8ff 0%, #ffffff 70%);
}

.hero-banner .banner-content {
  position: relative;
  max-width: 640px;
  z-index: 2;
  color: #142257;
}

.hero-banner .banner-content p {
  font-size: 18px;
  max-width: 421px;
  margin-bottom: 0;
  color: #142257;
  font-weight: 400;
}

.search-box-container {
  max-width: 900px;
}

.search-box {
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.search-input {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 10px 15px;
}

.search-input .icon {
  font-size: 20px;
  margin-right: 10px;
  color: #0A1C4F;
}

.search-input input {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.divider {
  width: 1px;
  background: #ddd;
  height: 28px;
}

.search-btn {
  width: 48px;
  height: 48px;
  background: #0A1C4F;
  border: none;
  border-radius: 50%;
  margin-left: 8px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-btn i {
  font-size: 18px;
}

.search-btn:hover {
  background: #08163a;
}

.hero-banner .banner-content h1 {
  font-size: 56px;
  margin-bottom: 0;
  color: #142257;
  font-weight: 600;
}

.hero-banner .banner-content .subtitle {
  display: block;
}

.hero-banner .banner-content .title span {
  color: #142257 !important;
}

.hero-banner .banner-image {
  position: relative;
  margin-inline-start: auto;
  z-index: 1;
}

.hero-banner .banner-image img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.hero-banner .banner-filter-form .input-group {
  align-items: center;
  height: 40px;
  line-height: 40px;
}

.hero-banner .banner-filter-form label {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 0;
  line-height: 1;
}

.hero-banner .banner-filter-form .nice-select,
.hero-banner .banner-filter-form .form-control {
  padding: 0;
  margin: 0;
  border: 0;
  height: 100%;
  padding-inline-start: 8px;
  width: calc(100% - 20px);
  background: var(--bg-light);
}

.hero-banner .banner-filter-form .nice-select .list,
.hero-banner .banner-filter-form .form-control .list {
  left: -20px;
  width: 200px;
  color: var(--text-dark);
  border-radius: 3px;
  box-shadow: 0px 0px 30px 0px rgba(var(--color-dark-rgb), 0.15);
}

.hero-banner .banner-filter-form .nice-select .list li,
.hero-banner .banner-filter-form .form-control .list li {
  line-height: 30px;
  min-height: 30px;
}

.hero-banner .banner-filter-form .nice-select::after {
  position: static;
  display: inline-block;
  margin-inline-start: 10px;
  vertical-align: middle;
}

/* -----------------------------------------
	Hero Banner 1 CSS
----------------------------------------- */
.hero-banner.hero-banner-1 {
  padding-top: 210px;
  padding-bottom: 100px;
}

/* -----------------------------------------
	Hero Banner 2 CSS
----------------------------------------- */
.hero-banner.hero-banner-2 {
  padding-top: 220px;
  padding-bottom: 100px;
}

/* Outer Section Background */
.featured-services-section {
  background: #ffffff;
  border-radius: 35px;
  padding: 30px 20px;
  margin-top: 40px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.05);
}

/* Each Card */
.service-card {
  border-radius: 25px;
  overflow: hidden;
  background: white;
  transition: transform 0.25s ease;
}

/* Hover effect removed - no translateY transform */

/* Image container */
.service-img {
  margin: 0;
}

.service-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 25px;
}

/* Spacing between slides */
.swiper-slide {
  padding: 5px;
}

/* Swiper pagination line like your screenshot */
.swiper-pagination {
  margin-top: 15px;
}

.swiper-pagination-bullet {
  width: 30px !important;
  height: 4px !important;
  border-radius: 4px;
  background: #007AFF !important;
}

/* =========================================
   SERVICE CARD STYLES
   ========================================= */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* transform: translateY(-4px); */
}

.service-card-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  background: #ff4757;
  color: #fff;
}

.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Horizontal service card (image left, content right) */
.service-card-horizontal {
  flex-direction: row;
  align-items: stretch;
}

.service-card-horizontal .horizontal-img {
  flex: 0 0 251px;
  max-width: 251px;
}

.service-card-horizontal .horizontal-img img {
  width: 251px;
  height: 176px;
  object-fit: cover;
}

.service-card-horizontal .service-card-body {
  padding: 16px 18px;
}

@media (max-width: 575.98px) {
  .service-card-horizontal {
    flex-direction: column;
  }

  .service-card-horizontal .horizontal-img {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .service-card-horizontal .horizontal-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

/* iPad Mini (768px) and iPad 11 (834px) - Use desktop horizontal card style */
@media (min-width: 768px) and (max-width: 1024px) {
  .service-card-horizontal {
    flex-direction: row;
    align-items: stretch;
  }

  .service-card-horizontal .horizontal-img {
    flex: 0 0 251px;
    max-width: 251px;
  }

  .service-card-horizontal .horizontal-img img {
    width: 251px;
    height: 176px;
    object-fit: cover;
  }

  .service-card-horizontal .service-card-body {
    padding: 16px 18px;
  }
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-title a {
  color: #0A1C4F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-title a:hover {
  color: #007AFF;
}

.service-vendor {
  margin-bottom: 10px;
}

.service-vendor .tag {
  display: inline-block;
  padding: 4px 12px;
  background: #D5DEEF;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.service-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;

}

.service-price strong {
  font-size: 20px;
  font-weight: 700;
  color: #0A1C4F;
}

/* =========================================
   CATEGORY CARD STYLES
   ========================================= */
.category-card {
  display: block;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.cat-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* LEFT aligned */
}

/* Icon Circle */
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: 0.25s;
}

/* Hover effect */
.category-card:hover .cat-icon {
  transform: scale(1.07);
}

/* Title */
.cat-title {
  font-size: 20px;
  font-weight: 600;
  color: #1C1F24;
  margin-bottom: 6px;
}

/* Description */
.cat-desc {
  font-size: 15px;
  color: #6B6F76;
  line-height: 22px;
  max-width: 220px;
  margin: 0;
}


/* =========================================
   HOW IT WORKS SECTION STYLES
   ========================================= */
.how-it-works-area {
  position: relative;
  overflow: hidden;
}

.work-step {
  position: relative;
  margin-bottom: 40px;
}

.step-number {
  font-size: 72px;
  font-weight: 700;
  color: rgba(106, 199, 201, 0.15);
  line-height: 1;
  margin-right: 20px;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-card .icon {
  flex-shrink: 0;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0A1C4F;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.right-images {
  position: relative;
}

.right-images .img-main {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.right-images .img-side {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 16px;
}

.verified-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.verified-box .avatars {
  display: flex;
  margin-right: 10px;
}

.verified-box .avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  object-fit: cover;
}

.verified-box .avatars img:first-child {
  margin-left: 0;
}

.verified-box strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.verified-box span {
  font-size: 13px;
  color: #666;
}

/* -----------------------------------------
	Hero Banner 3 CSS
----------------------------------------- */
.hero-banner.hero-banner-3 {
  padding-top: 220px;
  padding-bottom: 100px;
}

.hero-banner.hero-banner-3 .banner-content {
  max-width: 680px;
}

.hero-banner.hero-banner-3 .shape svg {
  position: absolute;
  z-index: -1;
}

.hero-banner.hero-banner-3 .shape svg.shape-1 {
  top: 22%;
  left: 12%;
  animation: moveLeftRight 10s linear infinite;
}

.hero-banner.hero-banner-3 .shape svg.shape-2 {
  bottom: 10%;
  left: 22%;
  animation: moveUpDown 5s linear infinite;
}

.hero-banner.hero-banner-3 .shape svg.shape-3 {
  bottom: 10%;
  right: 22%;
  animation: moveAround 20s linear infinite;
}

.hero-banner.hero-banner-3 .shape svg.shape-4 {
  top: 22%;
  right: 16%;
  animation: rotate 8s linear infinite;
}

.shape-1 path,
.shape-2 path,
.shape-3 path,
.shape-4 path {
  fill: var(--color-primary);
}

/* -----------------------------------------
    Banner CSS
----------------------------------------- */
.action-banner {
  position: relative;
  overflow: hidden;
}

.action-banner .content-title {
  max-width: 540px;
}

.action-banner .content-title p {
  max-width: 500px;
}

.banner-sm {
  position: relative;
  overflow: hidden;
  background-position: top right;
}

.banner-sm .banner-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 50%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.banner-sm.content-top .banner-content {
  text-align: center;
  align-items: flex-start;
  padding: 30px 20px;
  left: 0;
  right: 0;
}

.banner-sm.content-bottom .banner-content {
  align-items: flex-end;
  left: 0;
}

.banner-sm.content-middle .banner-content {
  align-items: center;
  left: 0;
}

.banner-sm.content-center .banner-content {
  max-width: 100%;
  text-align: center;
  padding: 30px 10px;
}

/* -----------------------------------------
    Category CSS
----------------------------------------- */
.category-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.category-area .card-image {
  position: relative;
}

.category-area .card-icon {
  --size: 75px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  font-size: 34px;
  color: var(--text-white);
  box-shadow: 0 15px 30px -12px rgba(var(--color-primary-rgb), 0.5);
}

.category-area .card-icon i {
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-duration: 0.5s;
}

.category-area .card:hover .card-icon i {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.category-area .card:hover .card-title {
  color: var(--color-primary);
}

.category-area.category-2 .swiper-slide .card {
  padding: 20px 30px;
  transform: rotateZ(-10deg);
  border-radius: 50%/10%;
  transition: transform 0.3s;
}

.category-area.category-2 .swiper-slide .card:before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -5%;
  left: -5%;
  background: inherit;
  border-radius: 5%/50%;
  z-index: -1;
}

.category-area.category-2 .swiper-slide .bg-shape {
  position: absolute;
  left: 30px;
  bottom: -30px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: var(--color-primary);
  background-size: cover;
  border-radius: 50%/10%;
  text-indent: 0.1em;
  transition: transform 0.3s;
}

.category-area.category-2 .swiper-slide .bg-shape:before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -5%;
  left: -5%;
  background: inherit;
  background-size: cover;
  border-radius: 5%/50%;
}

.category-area.category-2 .swiper-slide {
  padding: 20px 30px 0 20px;
  transform: scale(0.75);
  transition: all 0.3s;
}

.category-area.category-2 .swiper-slide-active {
  transform: scale(1);
}

.category-area.category-2 .swiper-slide-next,
.category-area.category-2 .swiper-slide-prev {
  transform: scale(0.85);
}

.category-area.category-2 .swiper-slide-prev .card {
  transform: rotateZ(0);
}

.category-area.category-2 .swiper-slide-prev .bg-shape {
  transform: rotateZ(10deg);
  background-color: #FDBF50;
}

.category-area.category-2 .swiper-slide-next .card {
  transform: rotateZ(0);
}

.category-area.category-2 .swiper-slide-next .bg-shape {
  transform: rotateZ(-10deg);
  background-color: #50A0FD;
}

.category-area.category-2 .swiper-slide-duplicate:not(.category-area.category-2 .swiper-slide-prev) .bg-shape {
  transform: rotateZ(-10deg);
  background-color: #54D9DA;
}

.category-area.category-2 .swiper-slide:not(.swiper-slide-active, .swiper-slide-next, .swiper-slide-prev, .swiper-slide-duplicate) .card {
  transform: rotateZ(10deg);
}

.category-area.category-2 .swiper-slide:not(.swiper-slide-active, .swiper-slide-next, .swiper-slide-prev, .swiper-slide-duplicate) .bg-shape {
  transform: rotateZ(10deg);
  background-color: #0EFFCB;
}

/* -----------------------------------------
    Works CSS
----------------------------------------- */
.works-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.works-area .card {
  z-index: 1;
}

.works-area .card:hover .card-icon i {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.works-area.works-1 .card {
  overflow: hidden;
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
}

.works-area.works-1 .card-icon {
  line-height: 1;
  font-size: 60px;
}

.works-area.works-1 .card .line {
  width: 40px;
  height: 4px;
}

.works-area.works-2 .card {
  overflow: visible;
  margin-inline-start: 20px;
  margin-top: 40px;
}

.works-area.works-2 .card .h1 {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin-inline: -20px auto;
  margin-bottom: 0;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.works-area.works-3 .card-icon {
  --size: 95px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  font-size: 40px;
  color: var(--text-white);
  box-shadow: 0 15px 30px -12px rgba(var(--color-primary-rgb), 0.5);
}

.works-area.works-3 .card-icon i {
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-duration: 0.5s;
}

.works-area.works-3 .card:hover .card-icon i {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.works-area.works-3 .shape svg {
  position: absolute;
  z-index: -1;
}

.works-area.works-3 .shape svg.shape-1 {
  top: 16%;
  left: 12%;
  animation: moveLeftRight 10s linear infinite;
}

.works-area.works-3 .shape svg.shape-2 {
  top: 30%;
  left: 32%;
  animation: moveUpDown 5s linear infinite;
}

.works-area.works-3 .shape svg.shape-3 {
  top: 25%;
  right: 30%;
  animation: moveLeftRight 10s linear infinite;
}

.works-area.works-3 .shape svg.shape-4 {
  top: 12%;
  right: 16%;
  animation: moveUpDown 8s linear infinite;
}

.shape-1 path,
.shape-2 path,
.shape-3 path,
.shape-4 path {
  fill: var(--color-primary);
}

/* -----------------------------------------
    Product CSS
----------------------------------------- */
.product-default {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  transition: all 0.3s ease-out;
}

.product-default .product-img {
  position: relative;
  overflow: hidden;
}

.product-default .product-img img {
  transition: transform 0.3s ease-out;
}

.product-default .btn-icon {
  width: 30px;
  height: 30px;
  font-size: 12px;
  background-color: transparent;
  color: var(--text-medium);
}

.product-default .btn-icon:is(:hover, .wishlist-active) {
  background-color: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.product-default .product-title {
  margin-top: 5px;
}

.product-default .author * {
  color: var(--text-medium);
}

.product-default .author a {
  text-decoration: none;
}

.product-default .author img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-inline-end: 5px;
}

.product-default .product-price .old-price {
  font-weight: normal;
}

.product-default .hover-show {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  border-color: transparent;
  color: var(--text-white);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-default .product-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-default:hover {
  border-color: transparent !important;
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.1);
}

.product-default:hover .product-img img {
  transform: scale3d(1.05, 1.05, 1.05);
}

.product-default:hover .btn-outline-2 {
  color: var(--text-white);
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
  border-color: transparent;
}

.product-default:hover .hover-show {
  opacity: 1;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.product-price * {
  margin: 0;
}

.product-price .new-price {
  margin-bottom: 0;
}

.product-price .prev-price {
  text-decoration: line-through;
  font-family: var(--font-heading);
}


.product-column .product-details {
  padding: 10px 15px;
}

.shop-area.shop-2 .product-img {
  max-width: 140px;
}

.sort-area p {
  margin-inline-end: 20px;
}

.sort-area .sort-list {
  text-align: right;
}

.sort-area .item {
  display: inline-block;
}

.sort-area .item:not(:last-child) {
  margin-inline-end: 10px;
}

.sort-area .nice-select {
  border: 0;
  padding: 0;
  line-height: 1;
  height: auto;
  padding-inline-end: 10px;
}

.sort-area .nice-select::after {
  right: 0;
}

.sort-area .nice-select .list {
  min-width: 150px;
}

.sort-area .btn-icon {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--color-gray-1);
}

.sort-area .btn-icon.active,
.sort-area .btn-icon:hover {
  color: var(--color-primary);
}

/* -----------------------------------------
    Testimonial CSS
----------------------------------------- */
.testimonial-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonial-area .slider-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.testimonial-area .slider-item .client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px dashed rgba(var(--color-white-rgb), 0.2);
}

.testimonial-area .slider-item .quote {
  position: relative;
  padding: 25px 30px;
}

.testimonial-area .slider-item .text {
  padding: 20px 0 20px;
  padding-inline-start: 30px;
  border-inline-start: 5px solid var(--color-primary);
}

@media (max-width: 767.98px) {
  .testimonial-area .slider-item .text {
    padding-inline-start: 15px;
  }
}

.testimonial-area .slider-item .icon {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin-inline-start: 60px;
  font-size: 62px;
  line-height: 1;
  color: rgba(var(--color-primary-rgb), 0.1);
}

.testimonial-area .slider-item p {
  margin-bottom: 0;
}

.testimonial-area .slider-item .client-img {
  flex: 0 0 auto;
  width: 60px;
  margin-inline-end: 16px;
}

.testimonial-area .quote-icon {
  font-size: 16px;
  color: var(--color-primary);
}

.testimonial-area .swiper-slide {
  overflow: hidden;
}

/* -----------------------------------------
	Blog CSS
----------------------------------------- */
.blog-area {
  position: relative;
  overflow: hidden;
}

.blog-area .card {
  overflow: hidden;
  transition: all 0.3s;
}

.blog-area .card .card-img {
  overflow: hidden;
}

.blog-area .card img {
  transition: transform 0.3s ease-out;
}

.blog-area .card p {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-area .card .card-btn {
  line-height: 1;
  font-weight: var(--font-bold);
  text-decoration: underline;
  color: var(--color-primary);
}

.blog-area .card .card-list {
  align-items: center;
  gap: 20px;
}

.blog-area .card .card-list a {
  color: var(--text-medium);
}

.blog-area .card .card-list i {
  margin-inline-end: 7px;
  color: var(--color-primary);
}

.blog-area .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
}

.blog-area .card:hover .btn-text {
  letter-spacing: 0.1em;
}

.blog-area.blog-1 .card-content {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  margin-inline: auto;
  width: calc(100% - 20px);
}

.blog-area.blog-2 .card .card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.blog-area.blog-2 .card .card-content * {
  backface-visibility: hidden;
}

.blog-area.blog-2 .card .card-content .card-list {
  background-color: var(--bg-dark);
}

@media (max-width: 1199.98px) {
  .blog-area.blog-2 .card .card-content .card-list {
    gap: 15px;
  }
}

.blog-area.blog-2 .card .card-content .card-list li a:not(i) {
  color: var(--text-light);
}

@media (max-width: 1199.98px) {
  .blog-area.blog-2 .card .card-content .card-list li a:not(i) {
    font-size: 10px;
  }
}

.blog-area.blog-2 .card .card-content .hover-show {
  height: 0;
  transform: scaleY(0);
  opacity: 0;
  transition: all 0.3s;
}

.blog-area.blog-2 .card:hover .hover-show {
  height: auto;
  transform: none;
  opacity: 1;
  margin-bottom: 20px;
}

.blog-area.blog-2 .card:hover .card-content * {
  animation: slideUp 0.5s 1;
  animation-fill-mode: both;
}

.blog-area.blog-3 .card {
  border: 1px solid var(--border-color);
}

.blog-area.blog-3 .card .card-content {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.blog-area.blog-3 .card .card-content .card-list {
  width: 100%;
  background-color: var(--bg-white);
}

@media (max-width: 1199.98px) {
  .blog-area.blog-3 .card .card-content .card-list {
    gap: 15px;
  }
}

@media (max-width: 1199.98px) {
  .blog-area.blog-3 .card .card-content .card-list li a:not(i) {
    font-size: 10px;
  }
}

.blog-area.blog-3 .card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog-area.blog-3 .overlay {
  height: 40%;
  background-size: cover;
}

/* -----------------------------------------
    Staff CSS
----------------------------------------- */
.staff-area .card {
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  transition: all 0.3s;
}

.staff-area .card:hover {
  border-color: transparent;
  border-bottom-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}


/* popup css start */
/* Popup css */
.popup-wrapper {
  display: none;
}

.popup_main-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
  background: #FFF;
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 32px;
  margin-right: -15px;
  top: -15px;
}

.popup-wrapper {
  position: relative;
  width: auto;
  max-width: 960px;
  margin: 0 auto;
}

.popup-wrapper .form_control {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  line-height: 70px;
}

/* Popup-one */
.popup-one {
  position: relative;
  padding: 138px 120px;
}

.popup-one .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgba(69, 29, 83, 0.8);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
  color: #fff;
}

.popup-one .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-one .popup_main-content p {
  margin-bottom: 30px;
}

.popup-one .popup_main-content .popup-main-btn {
  padding: 15px 100px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
  background-color: #451D53;
  color: #fff;
  border-color: transparent;
}

/* Popup-two */

.popup-two {
  position: relative;
  padding: 120px;
}

.popup-two .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgba(255, 40, 101, 0.7);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
  color: #fff;
}

.popup-two .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-two .popup_main-content p {
  margin-bottom: 30px;
}

.popup-two .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-two .popup_main-content .subscribe-form .form_control {
  border: none;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #FF2865;
  color: #fff;
  border-color: transparent;
}


/* Popup-three */

.popup-three .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-three .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-three .popup_main-content .right-content {
  width: 55%;
  padding: 30px 15px;
  text-align: center;
}

.popup-three .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content .popup-main-btn {
  padding: 15px 70px;
  background-color: #FF2865;
  color: #fff;
  font-size: 19px;
  border-radius: 35px;
  display: inline-block;
  text-decoration: none;
}

/* Popup-four */

.popup-four .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-four .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-four .popup_main-content .right-content {
  width: 55%;
  padding: 30px 30px;
  text-align: center;
}

.popup-four .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-four .popup_main-content .subscribe-form .form_control {
  border: 2px solid #C5C5C5;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  background-color: #F8960D;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all .3s;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #F8960D;
  color: #fff;
  border-color: transparent;
}


/* Popup-five */

.popup-five .popup_main-content {
  text-align: center;
  padding: 75px;
}

.popup-five .popup_main-content h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  max-width: 600px;
}

.popup-five .popup_main-content h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 35px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-five .popup_main-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  background-color: #29A19C;
  border-radius: 40px;
  text-decoration: none;
}

/* Popup-six */
.popup-six .popup_main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  text-decoration: none;
}

.popup-six .popup_main-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.popup-six .popup_main-content .right-content {
  background-color: #930077;
  width: 50%;
  height: 100%;
  padding: 120px 15px;
  text-align: center;
  margin-left: 50%;
}

.popup-six .popup_main-content .right-content h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.popup-six .popup_main-content h4 {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-six .popup_main-content .right-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #494949;
  border-radius: 40px;
  text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.popup-wrapper .syotimer__body p {
  color: #fff;
}

.popup-wrapper .syotimer-cell {
  flex: 0 0 24%;
  padding-left: 10px;
  padding-right: 10px;
}

.popup-wrapper .syotimer-cell__value {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F3A52;
  border-radius: 10px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  border: 0;
}

.popup-wrapper .syotimer-cell__value:after {
  content: none;
}

.popup-wrapper .syotimer-cell__unit {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.popup-three .popup_main-content .left-bg,
.popup-four .popup_main-content .left-bg,
.popup-six .popup_main-content .left-bg {
  display: block;
}

/*Large Device*/
@media only screen and (min-width: 1200px) and (max-width : 1400px) {}


/*Large Device*/
@media only screen and (min-width: 992px) and (max-width : 1199px) {}

/*Medium Device*/
@media only screen and (min-width: 768px) and (max-width : 991px) {

  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .popup-wrapper {
    max-width: 720px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-one,
  .popup-two {
    padding: 80px 30px;
  }

  .syotimer__body {
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 991px) {
  .popup-wrapper .syotimer-cell {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
  .popup-wrapper {
    max-width: 500px;
  }

  .popup-five .popup_main-content {
    text-align: center;
    padding: 50px 15px;
  }

  .popup-three .popup_main-content .left-bg,
  .popup-four .popup_main-content .left-bg,
  .popup-six .popup_main-content .left-bg {
    display: none;
  }

  .popup-one,
  .popup-two {
    padding: 30px 15px;
  }

  .popup-one .popup_main-content,
  .popup-two .popup_main-content {
    padding: 20px 15px;
  }

  .popup-one .popup_main-content .main-btn {
    padding: 15px 30px;
  }

  .popup-three .popup_main-content .right-content,
  .popup-four .popup_main-content .right-content,
  .popup-six .popup_main-content .right-content {
    width: 100%;
    padding: 15px 15px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-two .popup_main-content .subscribe-form .form_control,
  .popup-four .popup_main-content .subscribe-form .form_control {
    font-size: 15px;
  }

  .popup-two .popup_main-content h1,
  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .popup-six .popup_main-content .right-content {
    margin-left: 0%;
  }

  .syotimer__body {
    max-width: 380px;
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .popup-wrapper .syotimer-cell__value {
    height: 50px;
    font-size: 25px;
  }

  .popup-six .popup_main-content h4 {
    font-size: 16px;
    line-height: 25px;
  }

  .popup-wrapper .syotimer-cell__unit {
    font-size: 15px;
  }
}

/* Mobile Devices, Tablets */
@media only screen and (max-width: 400px) {
  .popup-wrapper {
    max-width: 300px;
  }

  .popup-wrapper .syotimer__body {
    max-width: 300px;
    margin-bottom: 0px;
  }

  .popup-wrapper .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .popup-one .popup_main-content .popup-main-btn {
    padding: 15px 50px;
  }

  .popup-wrapper .syotimer-cell__value {
    height: 50px;
    font-size: 25px;
  }

  .popup-six .popup_main-content h4 {
    font-size: 16px;
    line-height: 25px;
  }

  .popup-wrapper .syotimer-cell__unit {
    font-size: 15px;
  }
}

/* Wide mobile Devices */
@media only screen and (min-width: 401px) and (max-width : 767px) {
  .popup-wrapper {
    max-width: 380px;
  }
}

/* wide mobile devices */
@media only screen and (min-width: 401px) and (max-width : 767px) {
  .popup-wrapper {
    max-width: 380px;
  }
}

/* popup css end */
/*---=========================
Start Cookie Alert
=========================---*/
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #262938;
  z-index: 99999;
  animation: slideUp 0.4s linear;
  transition: bottom 2s linear;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.cookie-consent.hide {
  bottom: -100%;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.cookie-consent__agree {
  padding: 5px 16px;
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

p.cookie-consent__message {
  background-color: transparent !important;
  font-size: 14px;
  color: #fff;
}

.js-cookie-consent .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.js-cookie-consent p.cookie-consent__message {
  margin: unset !important;
}

.cookie-consent {
  padding: 20px 20px !important;
  bottom: 0;
}

.cookie-consent .mt-2 {
  margin-top: 0 !important;
}

.js-cookie-consent>div {
  max-width: 1200px;
  margin-inline: auto;
}

.nice-select:after {
  display: none !important;
}

.icon-lan {
  font-size: 20px;
  margin-right: 5px;
  display: flex;
  align-items: center;
}




/* cart css */
#cartIcon {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #333;
}

#cartIcon .totalItems {
  position: absolute;
  top: 31px;
  /* moves above the icon */
  right: -10px;
  /* moves to right corner */
  background: #e63946;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
  line-height: 1;
  font-weight: 600;
}

a#cartIcon .cart-length {
  background: #242323;
  padding: 10px;
  font-weight: 500;
  color: #fff;
}

a#cartIcon .cart-length i {
  font-size: 16px;
}

a#cartIcon .cart-total {
  background-color: #fff;
  text-align: center;
  font-weight: 600;
  color: inherit;
}

.bg-facebook {
  color: #fff;
  background: #4267B2;
}

.bg-google {
  color: #fff;
  background: #DB4437;
}

.widget-visible {
  right: auto !important;
  left: 0 !important;
}

.widget-visible iframe {
  right: unset !important;
  left: 20px !important;
}

/* -----------------------------------------
  Floating Button CSS
----------------------------------------- */
.floating-btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 402;
}

.telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
}

.facebook-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;
}

.floating-wpp:not(.whatsapp-btn-1) {
  position: relative;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
  transform: unset !important;
}

.floating-wpp .floating-wpp-popup.active {
  right: 0;
}

.whatsapp-btn-1.floating-wpp {
  left: unset;
  right: 15px;
  z-index: 402;
}

.widget-visible iframe {
  bottom: 100px !important;
}

.how-it-works-area {
  background: #f3f1ff;
}

.title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 45px;
}

.work-step {
  position: relative;
}

.step-number {
  font-size: 90px;
  font-weight: 700;
  color: #d4d6e8;
  margin-right: 20px;
  line-height: 1;
}

.step-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 18px;
  width: 100%;
}

.step-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.step-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

.step-card .icon img {
  width: 40px;
  margin-bottom: 10px;
}

.right-images {
  position: relative;
}

.right-images .img-main {
  position: relative;
  z-index: 2;
  width: 272px;
  height: 339px;
  border-radius: 18px;
  margin-right: 40px;
  /* gap between main and side image */
}

.right-images .img-side {
  position: absolute;
  width: 341px;
  height: 493px;
  right: 0;
  z-index: 1;
  top: 0;
  border-radius: 18px;
}

.verified-box {
  margin-top: 40px;
  background: #fff;
  padding: 10px 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}

.verified-box .avatars img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #fff;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding-bottom: 10px;
  transition: 0.2s ease;
}

/* .service-card:hover transform removed */

.service-card-img {
  position: relative;
}

.service-1 {
  background-color: #F9F9F9;
}

.service-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  padding: 7px;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.wishlist-btn.active,
.wishlist-btn:hover {
  color: red;
}

.service-card-body {
  padding: 15px 18px;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-title a {
  color: #1a1a1a;
}

.service-vendor {
  color: #566;
  font-size: 14px;
  margin-bottom: 8px;
}

.service-location {
  font-size: 15px;
  color: #6b6b6b;
  margin-bottom: 14px;
}

.service-location i {
  margin-right: 6px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price strong {
  font-size: 18px;
  font-weight: 600;
}

.btn-book {
  background: #0a1a4b;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.btn-book:hover {
  background: #081437;
}

.newsletter-hero {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.newsletter-box {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 90px 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, #e8f8ff 0%, #ffffff 70%);
  box-shadow: 0 30px 70px rgba(120, 90, 255, 0.15);
}

.newsletter-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.newsletter-box .subtitle {
  margin: 20px auto 40px;
  max-width: 700px;
  color: #555;
  font-size: 18px;
}

.newsletter-input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 60px;
  padding: 8px 12px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-input-wrap .icon {
  padding: 0 16px;
  font-size: 18px;
  color: #3b3b3b;
}

.newsletter-input-wrap input {
  border: none;
  flex: 1;
  padding: 18px 10px;
  font-size: 16px;
  outline: none;
}

.newsletter-input-wrap button {
  background: #0f1d54;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-input-wrap button:hover {
  opacity: 0.85;
}

/* Listing filter row */
.filter-row>[class*='col-'] {
  display: flex;
  flex-direction: column;
}

.filter-row .form-label {
  font-weight: 600;
  margin-bottom: 6px;
}

.filter-row .form-select {
  height: 48px;
}

/* Filter select with icons */
.filter-select-wrapper {
  position: relative;
}

.filter-select-wrapper::before {
  content: attr(data-icon);
  font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Pro';
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A1C4F;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.filter-select {
  padding-left: 45px !important;
  background-position: right 12px center !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: box-shadow 0.3s ease;
  border-radius: 12px;
}

.filter-select:focus {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  outline: none;
}

.filter-select option:first-child {
  color: #999;
}

/* Modern Map Popup Card - Exact Match Design */
.map-popup-card {
  width: 330.83px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.popup-image {
  width: 88px;
  height: 165.19px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.popup-image img {
  width: 88px;
  height: 165.19px;
  object-fit: cover;
}

.popup-content {
  width: 242.83px;
  height: 165.19px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: transparent;
  box-sizing: border-box;
  position: relative;
}

.popup-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;

}

.popup-subtitle {
  font-size: 13px;
  color: #666;
  line-height: 0;
}

.popup-info-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.popup-info-row {
  display: flex;
  gap: 16px;
}

.popup-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
  flex: 1;
  min-width: 0;
}

.popup-info-item i {
  width: 14px;
  color: #666;
  font-size: 12px;
  flex-shrink: 0;
}

.popup-info-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popup-price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.popup-main-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.popup-main-price strong {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.popup-main-price span {
  font-size: 13px;
  color: #888;
}

.popup-book-button {
  background: #000000 !important;
  color: #fff !important;
  border: none;
  border-radius: 24px;
  padding: 10px 14px;
  font-size: 12px !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.popup-book-button i {
  font-size: 13px;
}

.popup-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.popup-close-btn:hover {
  background: #ff4757;
  color: #fff;
  transform: scale(1.1);
}

.popup-close-btn i {
  font-size: 11px;
  color: #666;
}

.popup-close-btn:hover i {
  color: #fff;
}

/* Leaflet popup customization - Override defaults */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.leaflet-popup-content-wrapper {
  padding: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: 330.83px !important;
}

/* Hide default Leaflet close button */
.leaflet-popup-close-button {
  display: none !important;
}





/* Custom price marker styles */
.price-marker {
  background: transparent;
  border: none;
}

.price-marker-inner {
  background: #0A1C4F;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.price-marker-inner::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0A1C4F;
}

.listing-scroll-area {
  height: 90vh;
  overflow-y: auto;
  padding-right: 10px;
}

.listing-scroll-area::-webkit-scrollbar {
  width: 6px;
  display: none;
}

.listing-scroll-area::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.search-input {
  background-color: #ffffff;
  border-radius: 13px;
}

/* Location search with inline button */
.location-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  margin-top: 20px;
}

.location-search-wrapper .search-icon {
  position: absolute;
  left: 20px;
  color: #0A1C4F;
  font-size: 18px;
  pointer-events: none;
}

.location-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 12px 60px 12px 35px !important;
  font-size: 16px;
  background: transparent !important;
  box-shadow: none !important;
}

.location-search-input:focus {
  box-shadow: none !important;
}

.search-btn-inline {
  position: absolute;
  right: 8px;
  background: #0A1C4F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-btn-inline:hover {
  background: #081437;
  transform: scale(1.05);
}

.search-btn-inline i {
  font-size: 16px;
}

/* =========================================
   SERVICE DETAILS PAGE REDESIGN
   ========================================= */

/* Breadcrumbs */
.breadcrumb-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #666;
  gap: 8px;
}

.breadcrumb-custom li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-custom li::after {
  content: '/';
  color: #999;
}

.breadcrumb-custom li:last-child::after {
  content: '';
}

.breadcrumb-custom a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-custom a:hover {
  color: #0A1C4F;
}

.breadcrumb-custom .active {
  color: #0A1C4F;
  font-weight: 600;
}

/* Service Gallery */
.service-gallery .main-image {
  overflow: hidden;

}

.service-gallery {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
  padding: 20px;
}

.gallery-thumb {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-thumb:hover {
  border-color: #0A1C4F;
  transform: scale(1.05);
}

.gallery-thumb.active {
  border: 3px solid #0A1C4F;
  opacity: 1;
}


/* Service Header */
.service-header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
  padding: 20px;
}

.service-detail-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 1.3;
}

.vendor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.vendor-rating-box {
  display: inline-flex;
}

.vendor-info-content {
  display: flex;
  flex-direction: column;
}

.vendor-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stars-row {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
}

.rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.review-count {
  font-size: 14px;
  color: #666;
}

.location-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.location-display i {
  font-size: 16px;
}

.rating-display-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.stars-display {
  font-size: 18px;
}

.stars-display i {
  margin: 0 1px;
}

.rating-text {
  font-size: 14px;
}

.rating-text strong {
  font-size: 16px;
  color: #1a1a1a;
  margin-right: 4px;
}

/* Section Headings */
.section-heading {
  font-size: 19px;
  font-weight: 500;
  color: #2B2B2B;
}

.service-description {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
  padding: 20px;
}

.service-features {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
  padding: 20px;
}

/* Description Content */
.description-content {
  font-size: 15px;
  line-height: 25.2px;
  color: #424448;
  font-weight: 400;

}

.description-content p {
  margin-bottom: 16px;
}

/* Service Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  background: transparent;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: none;
  border-color: transparent;
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
}

/* Color variations using nth-child */
.feature-item:nth-child(5n+1) .feature-icon {
  background-color: #eef2ff;
  color: #6366f1;
}

.feature-item:nth-child(5n+2) .feature-icon {
  background-color: #ecfdf5;
  color: #10b981;
}

.feature-item:nth-child(5n+3) .feature-icon {
  background-color: #fff7ed;
  color: #f97316;
}

.feature-item:nth-child(5n+4) .feature-icon {
  background-color: #f3f4f6;
  color: #6b7280;
}

.feature-item:nth-child(5n+5) .feature-icon {
  background-color: #fce7f3;
  color: #ec4899;
}

.feature-content p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.booking-cta h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Fix for dropdown being clipped by hero banner overflow */
.hero-banner {
  overflow: visible !important;
  position: relative;
  z-index: 100 !important;
  /* Ensure the entire banner is above the slider section */
}

.autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

.autocomplete-results.show {
  display: block;
}

.autocomplete-results div {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.autocomplete-results div:last-child {
  border-bottom: none;
}

.autocomplete-results div:hover {
  background-color: #f8f9fa;
  color: #000;
}

.search-box-container {
  position: relative;
  z-index: 1001;
}

.related-service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.related-service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.related-price {
  font-size: 14px;
  color: #0A1C4F;
}

/* Reviews */
.review-summary {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.review-item {
  background: #fff;
  border: 1px solid #eee !important;
}

.reviewer-avatar {
  flex-shrink: 0;
}

.review-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.review-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* Customer Reviews Section */
.customer-reviews {
  margin-top: 40px;
}

.review-progresses {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-progress {
  margin-bottom: 15px;
}

.review-progress .progress {
  height: 8px;
  border-radius: 10px;
  background-color: #f0f0f0;
}

.review-progress .progress-bar {
  border-radius: 10px;
  transition: width 0.6s ease;
}

.review-box {
  transition: transform 0.3s ease;
}

.review-box:hover {
  transform: translateY(-2px);
}

.review-list {
  background: #fff;
  transition: all 0.3s ease;
}

.review-list:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.author-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.author-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.author-info h6 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-info h6 a:hover {
  color: #0A1C4F;
}

.more-info {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.more-info .icon-start {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 13px;
}

.shop-review-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 30px;
}

.shop-review-form .title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.shop-review-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  min-height: 120px;
  resize: vertical;
}

.shop-review-form .form-control:focus {
  border-color: #0A1C4F;
  box-shadow: 0 0 0 3px rgba(10, 28, 79, 0.1);
  outline: none;
}

.shop-review-form .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.shop-review-form .rating li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-review-form .review-value {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.shop-review-form .review-value:hover {
  background-color: #f8f9fa;
}

.shop-review-form .review-value span {
  color: #777777;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.shop-review-form .review-value:hover span {
  color: #FBA31C;
  transform: scale(1.1);
}

.shop-review-form .review-value span[data-ratingVal] {
  pointer-events: auto;
}

@media (max-width: 767.98px) {
  .review-progress .col-2 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .review-progress .col-9 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .shop-review-form {
    padding: 20px;
  }

  .more-info {
    flex-direction: column;
    gap: 8px;
  }
}

/* Sidebar Widgets */
.sidebar-widget {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 16px;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.widget-subtitle {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Inquiry Form */
.inquiry-form .form-input {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.inquiry-form .form-input:focus {
  border-color: #0A1C4F;
  box-shadow: 0 0 0 3px rgba(10, 28, 79, 0.1);
  outline: none;
}

.inquiry-form .form-input::placeholder {
  color: #999;
}

.submit-inquiry-btn {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-inquiry-btn i {
  font-size: 14px;
}

/* Business Days Grid */
.days-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.day-pill {
  flex: 0 0 calc(25% - 8px);
  min-width: 60px;
  padding: 12px 8px;
  border: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: not-allowed;
  transition: all 0.3s ease;
  text-align: center;
}

.day-pill.active {
  background: #6AC7C9;
  border-color: #6AC7C9;
  color: #fff;
  cursor: pointer;
}

.day-pill.active:hover {
  background: #5ab5b7;
  border-color: #5ab5b7;
}

.day-pill.selected {
  box-shadow: 0 0 0 3px rgba(106, 199, 201, 0.3);
}

.day-pill:disabled:not(.active) {
  background: #fff;
  border-color: #d0d0d0;
  color: #333;
}

/* Day Timing Display */
.day-timing-display {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timing-box {
  transition: all 0.3s ease;
}

/* Address Widget */
.address-info p {
  margin: 0;
}

.address-map {
  width: 100%;
  overflow: hidden;
}

.address-map #map {
  border: 1px solid #eee;
}

/* Mobile Filters Offcanvas */
.mobile-filters-content {
  padding: 10px 0;
}

.mobile-filters-content .form-label {
  font-size: 14px;
  color: #333;
}

.mobile-filters-content .filter-select {
  border: 1px solid #e0e0e0;
  padding-left: 15px !important;
  background-position: right 12px center !important;
}

.mobile-filters-content .filter-select::before {
  display: none;
}

#mobileFiltersOffcanvas .offcanvas-header {
  background: #0A1C4F;
  color: #fff;
}

#mobileFiltersOffcanvas .offcanvas-title {
  font-weight: 700;
  font-size: 18px;
}

#mobileFiltersOffcanvas .btn-close {
  filter: invert(1);
}

/* Mobile Fixed Booking Button */
.mobile-booking-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 1px solid #e0e0e0;
}

.mobile-booking-fixed .btn {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(10, 28, 79, 0.2);
}

@media (max-width: 767.98px) {
  .service-details-area {
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) and (max-width: 1132px) {
  .service-card-horizontal .horizontal-img {
    flex: 0 0 251px;
    max-width: 183px;
  }

  .service-card-horizontal .horizontal-img img {
    width: 251px;
    height: 206px;
    object-fit: cover;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1060px;
  }

  .filter-row {
    flex-wrap: nowrap !important;
  }

  .filter-row .filter-select-wrapper {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    flex-basis: calc(20% - 12px);
    max-width: calc(20% - 12px);
  }

  .filter-row .filter-select {
    font-size: 13px;
    padding-left: 40px !important;
  }
}

@media (min-width: 1133px) and (max-width: 1180px) {
  .service-card-horizontal .horizontal-img {
    flex: 0 0 251px;
    max-width: 183px;
  }

  .service-card-horizontal .horizontal-img img {
    width: 251px;
    height: 206px;
    object-fit: cover;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1060px;
  }

  .filter-row {
    flex-wrap: nowrap !important;
  }

  .filter-row .filter-select-wrapper {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    flex-basis: calc(20% - 12px);
    max-width: calc(20% - 12px);
  }

  .filter-row .filter-select {
    font-size: 13px;
    padding-left: 40px !important;
  }
}



.provisions-wrapper {
  width: 60%;
  /* background: #fff; */
  /* box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08); */
  border-radius: 16px;
  /* padding: 24px; */
  display: flex;
  align-items: center;
  justify-content: revert-layer;
  flex-wrap: wrap;
  margin: 60px auto 0 auto;
}

.provision-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  position: relative;
  flex: 1;
  justify-content: center;
}

.provision-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 40px;
  width: 1px;
  background: #e5e7eb;
}

.provision-icon {
  width: 48px;
  height: 48px;
  background: #0b1b4d;
  /* dark blue like image */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provision-icon i {
  font-size: 20px;
}

.provision-text h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  line-height: 1.3;
}

.provision-text span {
  font-size: 13px;
  color: #667085;
  display: block;
  margin-top: 2px;
}

/* 🔹 Mobile responsive */
@media (max-width: 991px) {
  .provisions-wrapper {
    width: 84%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 6px;
    margin-top: 19px;
  }

  .provision-item {
    flex-direction: row;
    text-align: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 12px;
  }

  .provision-item:not(:last-child)::after {
    display: none;
  }

  .provision-text span {
    margin-top: 5px;
  }
}

/* Hide scrollbar for category tabs */
.tabs-navigation::-webkit-scrollbar,
.tabs-navigation .nav-tabs::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  -webkit-appearance: none;
  background: transparent;
}

.tabs-navigation,
.tabs-navigation .nav-tabs {
  -ms-overflow-style: none;
  scrollbar-width: none;
}