 .service-card {
     position: relative;
     /* Ensure it's a positioned container */
 }

 .wishlist-btn {
     position: absolute;
     /* Position the wishlist button within the card */
     top: 10px;
     /* Adjust as needed */
     right: 10px;
     /* Adjust as needed */
     z-index: 10;
     /* Ensure the button appears above other elements */
     transition: all 0.3s ease;
     /* Smooth transition for hover effects */
 }

 /* Optional: Add hover effect to button */
 .wishlist-btn:hover {
     transform: scale(1.1);
     /* Optional: Slightly enlarge the button on hover */
 }

 /* Provider Swiper Styles */
 .providers-swiper {
     padding: 40px 80px !important;
     overflow: hidden;
     position: relative;
 }

 /* Gradient fade overlay to indicate more cards */
 .providers-swiper::after {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     pointer-events: none;
     z-index: 2;
 }

 .providers-swiper::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     pointer-events: none;
     z-index: 2;
 }

 .provider-card-compact {
     background: white;
     border-radius: 50%;
     overflow: hidden;
     transition: all 0.3s ease;
     width: 280px;
     height: 280px;
     max-width: 100%;
     display: flex;
     flex-direction: column;
     margin: 0 auto;
     flex-shrink: 0;
 }

 .providers-swiper .swiper-slide {
     display: flex;
     justify-content: center;
     align-items: center;
     width: auto !important;
 }

 /* Ensure cards don't scale down too much */
 .providers-swiper .swiper-slide>* {
     flex-shrink: 0;
 }

 .provider-card-compact:hover {
     transform: translateY(-5px);
 }

 .provider-image-wrapper {
     position: relative;
     width: 100%;
     height: 240px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     border-radius: 50% 50% 0 0;
 }

 .provider-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .provider-img-fallback {
     font-size: 5rem;
     color: rgba(255, 255, 255, 0.3);
 }

 .verified-badge-small {
     position: absolute;
     bottom: 12px;
     right: 12px;
     background: #28a745;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
     border: 3px solid white;
 }

 .verified-badge-small i {
     color: white;
     font-size: 0.9rem;
 }

 .provider-card-body {
     padding: 5px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex: 1;
 }

 .provider-card-name {
     white-space: nowrap;
     text-overflow: ellipsis;
     overflow: hidden;
     width: 100%;
 }

 .provider-service-badge {
     white-space: nowrap;
     text-overflow: ellipsis;
 }

 .provider-card-name {
     font-size: 0.8rem;
     font-weight: 700;
     color: #2c3e50;
     margin: 0;
     line-height: 1.3;
     text-align: center;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     width: 100%;
 }

 .provider-meta {
     display: flex;
     flex-direction: column;
     gap: 3px;
     font-size: 0.7rem;
     color: #6c757d;
     margin-bottom: 6px;
     align-items: center;
 }

 .provider-meta-item {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .provider-meta-item i {
     font-size: 0.75rem;
 }

 .provider-service-badge {
     font-size: 0.7rem;
     color: #0d6efd;
     background: #e7f1ff;
     padding: 3px 8px;
     border-radius: 10px;
     margin-bottom: 4px;
     font-weight: 600;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 90%;
     display: inline-block;
 }

 .provider-card-compact .btn {
     font-size: 0.8rem;
     font-weight: 600;
     padding: 6px 12px;
     border-radius: 6px;
 }

 /* Swiper Navigation for Providers */
 .providers-next,
 .providers-prev {
     width: 35px !important;
     height: 35px !important;
     background: #007bff !important;
     border-radius: 50% !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     margin-top: 0 !important;
 }

 .providers-next::after,
 .providers-prev::after {
     font-size: 12px !important;
     font-weight: 900 !important;
     color: white !important;
 }

 .providers-next:hover,
 .providers-prev:hover {
     background: #0056b3 !important;
     transform: scale(1.1) !important;
 }

 .providers-pagination {
     position: relative;
     margin-top: 20px;
     display: none !important;
 }

 /* Ensure arrows are properly positioned outside */
 .providers-swiper .swiper-button-next,
 .providers-swiper .swiper-button-prev,
 .popular-services-swiper .swiper-button-next,
 .popular-services-swiper .swiper-button-prev {
     display: none !important;
 }

 /* Show arrows on larger screens */
 @media (min-width: 992px) {

     .providers-swiper .swiper-button-next,
     .providers-swiper .swiper-button-prev,
     .popular-services-swiper .swiper-button-next,
     .popular-services-swiper .swiper-button-prev {
         display: flex !important;
     }

     .providers-swiper .swiper-button-next {
         right: 10px !important;
         left: auto !important;
     }

     .providers-swiper .swiper-button-prev {
         left: 10px !important;
     }

     .popular-services-swiper .swiper-button-next {
         right: 10px !important;
         left: auto !important;
     }

     .popular-services-swiper .swiper-button-prev {
         left: 10px !important;
     }
 }

 @media (max-width: 767px) {

     .providers-next,
     .providers-prev,
     .popular-next,
     .popular-prev {
         width: 32px !important;
         height: 32px !important;
     }

     .providers-next::after,
     .providers-prev::after,
     .popular-next::after,
     .popular-prev::after {
         font-size: 10px !important;
     }
 }

 /* Hide scrollbar for Chrome, Safari and Opera */
 .promotional-cards-container::-webkit-scrollbar {
     display: none;
 }

 /* Promotional Banner Styles */
 .promotional-slider {
     position: relative;
 }

 .promotional-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     width: 370px;
     cursor: pointer;
 }

 .promotional-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .promotional-image-wrapper {
     overflow: hidden;
     height: 240px;
 }

 .promotional-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .promotional-card:hover .promotional-image-wrapper img {
     transform: scale(1.05);
 }

 /* Gradient fade overlays */
 .promotional-fade-left,
 .promotional-fade-right {
     position: absolute;
     top: 0;
     bottom: 0;
     width: 80px;
     pointer-events: none;
     z-index: 3;
 }

 .promotional-fade-left {
     left: 0;
 }

 .promotional-fade-right {
     right: 0;
 }

 /* Vertical orientation banners */
 .promotional-card.vertical {
     width: 300px;
 }

 .promotional-card.vertical .promotional-image-wrapper {
     height: 450px;
 }

 /* Responsive adjustments */
 @media (min-width: 992px) {

     .promotional-fade-left,
     .promotional-fade-right {
         display: none;
     }
 }

 @media (max-width: 991px) {

     .promotional-fade-left,
     .promotional-fade-right {
         width: 60px;
     }
 }

 @media (max-width: 768px) {
     .promotional-cards-container {
         padding: 15px 50px 15px 20px !important;
         gap: 15px !important;
     }

     .promotional-fade-left,
     .promotional-fade-right {
         width: 50px;
     }

     .promotional-card {
         width: 280px !important;
     }

     .promotional-card.vertical .promotional-image-wrapper {
         height: 380px;
     }
 }

 @media (max-width: 576px) {
     .promotional-cards-container {
         padding: 15px 40px 15px 15px !important;
         gap: 12px !important;
     }

     .promotional-fade-left,
     .promotional-fade-right {
         width: 40px;
     }

     .promotional-card {
         width: 320px !important;
     }

     .promotional-card.vertical {
         width: 320px !important;
     }

     .promotional-card.vertical .promotional-image-wrapper {
         height: 350px;
     }

     .promotional-image-wrapper {
         height: 200px;
     }
 }

 /* Promotional Progress Indicator Bar */
 .promotional-progress-container {
     padding: 15px 60px;
 }

 .promotional-progress-bar-single {
     width: 25%;
     height: 3px;
     background: #e5e7eb;
     border-radius: 2px;
     overflow: hidden;
     margin: 0 auto;
 }

 .promotional-progress-fill {
     width: 0%;
     height: 100%;
     background: #28a745;
     border-radius: 2px;
     transition: width 0.1s ease;
 }

 @media (max-width: 768px) {
     .promotional-progress-container {
         padding: 10px 40px;
     }
 }

 @media (max-width: 576px) {
     .promotional-progress-container {
         padding: 10px 20px;
     }

     .promotional-progress-bar-single {
         height: 2px;
     }
 }

 /* Popular Services Swiper Styles */
 .popular-services-swiper {
     padding: 40px 80px !important;
     overflow: hidden;
     position: relative;
 }

 /* Gradient fade overlay for popular services */
 .popular-services-swiper::after {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     pointer-events: none;
     z-index: 2;
 }

 .popular-services-swiper::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     pointer-events: none;
     z-index: 2;
 }

 .popular-services-swiper .swiper-slide {
     display: flex;
     justify-content: center;
 }

 /* Ensure cards don't scale down too much */
 .popular-services-swiper .swiper-slide>* {
     flex-shrink: 0;
 }

 .popular-service-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     transition: all 0.3s ease;
     height: 320px;
     width: 280px;
     max-width: 100%;
     display: flex;
     flex-direction: column;
     border: 1px solid #e5e7eb;
     margin: 0 10px;
     flex-shrink: 0;
 }

 .popular-service-card:hover {
     transform: translateY(-5px);
 }

 .popular-service-image {
     position: relative;
     width: 100%;
     height: 160px;
     overflow: hidden;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .popular-service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .popular-service-card:hover .popular-service-image img {
     transform: scale(1.05);
 }

 .popular-wishlist-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     background: white;
     border: none;
     border-radius: 50%;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     z-index: 2;
 }

 .popular-wishlist-btn i {
     font-size: 1rem;
     color: #dc2626;
 }

 .popular-wishlist-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }

 .popular-wishlist-btn.active {
     background: #fee2e2;
 }

 .popular-wishlist-btn i {
     color: #dc2626;
 }

 .popular-service-content {
     padding: 0.85rem;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .popular-service-name {
     font-size: 0.95rem;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 6px;
     line-height: 1.2;
     min-height: 2.4rem;
 }

 .popular-service-desc {
     font-size: 0.8rem;
     color: #6c757d;
     margin-bottom: 8px;
     flex-grow: 1;
     line-height: 1.3;
 }

 .popular-service-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 10px;
     font-size: 0.8rem;
 }

 .popular-service-price {
     font-weight: 700;
     color: #28a745;
     font-size: 0.95rem;
 }

 .popular-service-duration {
     color: #6c757d;
     font-size: 0.8rem;
 }

 .popular-service-meta i {
     font-size: 0.75rem;
 }

 .popular-service-card .btn {
     font-size: 0.8rem;
     font-weight: 600;
     padding: 6px 10px;
     border-radius: 6px;
     white-space: nowrap;
 }

 /* Swiper Navigation for Popular Services */
 .popular-next,
 .popular-prev {
     width: 35px !important;
     height: 35px !important;
     background: #007bff !important;
     border-radius: 50% !important;
     box-shadow: 0 3px 10px rgba(0, 123, 255, 0.4) !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     margin-top: 0 !important;
 }

 .popular-next::after,
 .popular-prev::after {
     font-size: 12px !important;
     font-weight: 900 !important;
     color: white !important;
 }

 .popular-next:hover,
 .popular-prev:hover {
     background: #0056b3 !important;
     box-shadow: 0 5px 15px rgba(0, 123, 255, 0.6) !important;
     transform: scale(1.1) !important;
 }

 .popular-pagination {
     position: relative;
     margin-top: 20px;
     display: none !important;
 }

 @media (max-width: 767px) {
     .popular-service-card {
         height: 300px;
         width: 260px;
         margin: 0 8px;
     }

     .popular-service-image {
         height: 150px;
     }

     .popular-service-content {
         padding: 0.75rem;
     }

     .popular-service-name {
         font-size: 0.9rem;
         min-height: 2.2rem;
     }

     .popular-service-desc {
         font-size: 0.75rem;
         margin-bottom: 6px;
     }

     .popular-service-meta {
         margin-bottom: 8px;
         font-size: 0.75rem;
     }

     .popular-service-price {
         font-size: 0.9rem;
     }

     .popular-next,
     .popular-prev {
         width: 32px;
         height: 32px;
     }

     .popular-next::after,
     .popular-prev::after {
         font-size: 11px;
     }
 }

 /* Testimonial Swiper Styles */
 .testimonial-swiper {
     overflow: hidden;
     position: relative;
     padding: 20px 50px !important;
 }

 /* Gradient fade overlay for testimonials */
 .testimonial-swiper::after {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     background: linear-gradient(to right, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
     pointer-events: none;
     z-index: 2;
 }

 .testimonial-swiper::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 100px;
     background: linear-gradient(to left, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
     pointer-events: none;
     z-index: 2;
 }

 /* Testimonial Swiper Navigation Buttons */
 .testimonial-section .swiper-button-next,
 .testimonial-section .swiper-button-prev {
     width: 40px;
     height: 40px;
     background: white;
     border-radius: 50%;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
 }

 @media (max-width: 767px) {

     .testimonial-section .swiper-button-next,
     .testimonial-section .swiper-button-prev {
         width: 36px;
         height: 36px;
     }

     .testimonial-section .swiper-button-next::after,
     .testimonial-section .swiper-button-prev::after {
         font-size: 12px;
     }
 }

 .testimonial-section .swiper-button-next::after,
 .testimonial-section .swiper-button-prev::after {
     font-size: 14px;
     font-weight: 700;
     color: #0d6efd;
 }

 .testimonial-section .swiper-button-next:hover,
 .testimonial-section .swiper-button-prev:hover {
     background: #0d6efd;
     box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
     transform: scale(1.1);
 }

 .testimonial-section .swiper-button-next:hover::after,
 .testimonial-section .swiper-button-prev:hover::after {
     color: white;
 }

 .testimonial-section .swiper-button-next {
     right: 0;
 }

 .testimonial-section .swiper-button-prev {
     left: 0;
 }

 /* Hide gradient overlays on desktop, show only on mobile */
 @media (min-width: 992px) {

     .providers-swiper::before,
     .providers-swiper::after,
     .popular-services-swiper::before,
     .popular-services-swiper::after,
     .testimonial-swiper::before,
     .testimonial-swiper::after {
         display: none;
     }
 }

 /* Responsive adjustments for Provider Cards */
 @media (max-width: 991px) {
     .provider-card-compact {
         width: 260px;
         height: 260px;
     }

     .provider-image-wrapper {
         height: 220px;
     }
 }

 @media (max-width: 767px) {

     /* Provider Cards */
     .providers-swiper {
         padding: 30px 50px !important;
     }

     .providers-swiper::before,
     .providers-swiper::after {
         width: 50px;
     }

     /* Popular Services */
     .popular-services-swiper {
         padding: 30px 50px !important;
     }

     .popular-services-swiper::before,
     .popular-services-swiper::after {
         width: 50px;
     }

     .provider-card-compact {
         width: 240px;
         height: 240px;
     }

     .provider-image-wrapper {
         height: 200px;
     }

     .provider-card-name {
         font-size: .6rem;
     }

     .verified-badge-small {
         width: 28px;
         height: 28px;
         border: 2px solid white;
     }

     .verified-badge-small i {
         font-size: 0.75rem;
     }

     /* Popular Services */
     .popular-services-swiper {
         padding: 30px 10px !important;
     }

     .popular-services-swiper::before,
     .popular-services-swiper::after {
         width: 60px;
     }

     /* Popular Service Cards */
     .popular-service-card {
         height: 300px;
         width: 260px;
         margin: 0 8px;
     }

     .popular-service-image {
         height: 150px;
     }

     .popular-service-content {
         padding: 0.75rem;
     }

     .popular-service-name {
         font-size: 0.9rem;
         min-height: 2.2rem;
     }

     .popular-service-desc {
         font-size: 0.75rem;
         margin-bottom: 6px;
     }

     .popular-service-meta {
         margin-bottom: 8px;
         font-size: 0.75rem;
     }

     .popular-service-price {
         font-size: 0.9rem;
     }

     /* Testimonials */
     .testimonial-swiper {
         padding: 20px 10px !important;
     }

     .testimonial-swiper::before,
     .testimonial-swiper::after {
         width: 60px;
     }

     .testimonial-section .swiper-button-next,
     .testimonial-section .swiper-button-prev {
         width: 36px;
         height: 36px;
     }

     .testimonial-section .swiper-button-next::after,
     .testimonial-section .swiper-button-prev::after {
         font-size: 12px;
     }
 }

 @media (max-width: 575px) {

     .providers-swiper,
     .popular-services-swiper {
         padding: 20px 5px !important;
     }

     .providers-swiper::before,
     .providers-swiper::after,
     .popular-services-swiper::before,
     .popular-services-swiper::after,
     .testimonial-swiper::before,
     .testimonial-swiper::after {
         width: 40px;
     }

     .provider-card-compact {
         width: 110px;
         height: 110px;
     }

     .provider-image-wrapper {
         height: 180px;
     }

     .provider-card-name {
         font-size: 0.6rem;
     }

     .popular-service-card {
         height: 280px;
         margin: 0 6px;
     }

     .popular-service-image {
         height: 140px;
     }

     .popular-service-name {
         font-size: 0.85rem;
         min-height: 2rem;
     }

     .popular-service-desc {
         font-size: 0.7rem;
     }

     .popular-service-price {
         font-size: 0.85rem;
     }

     .popular-service-card {
         width: 240px;
     }

     .popular-service-card .btn {
         font-size: 0.75rem;
         padding: 5px 8px;
     }
 }