.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1DA851;

}

.rosettes {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rosettes .rosette {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px;
    overflow: hidden;
}

.rosettes .rosette.rosette-new {
    background-color: var(--primaryColor);
    color: white;

}

.rosettes .rosette.rosette-verified {
    background-color: var(--secondaryColor);
    color: white;

}
.rosettes .rosette.rosette-verified i {
    font-size: 36px;
}
@media (max-width: 576px) {
    .rosettes{
        gap: 5px;
    }
   .rosettes .rosette{
    width: 48px ;
    height: 48px;
    font-size: 12px;
   }
   .rosettes .rosette.rosette-verified i {
       font-size: 28px;        margin-bottom: -3px;
   }
}

/* Expert Carousel Styles */
.experts-carousel-section {
    background-color: #f8f9fa;
}

.experts-summary-swiper {
    position: relative;
    padding-bottom: 40px;
}

.expert-summary-card {
    height: 100%;
}

.expert-summary-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-summary-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Swiper Navigation for Expert Carousels */
.experts-summary-swiper .swiper-button-next,
.experts-summary-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: white;
}

.experts-summary-swiper .swiper-button-prev {
    left: -20px;
}

.experts-summary-swiper .swiper-button-next {
    right: -20px;
}

.experts-summary-swiper .swiper-pagination {
    bottom: 0;
}

.experts-summary-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    opacity: 1;
}

.experts-summary-swiper .swiper-pagination-bullet-active {
    background-color: var(--primaryColor);
}

@media (max-width: 768px) {
    .experts-summary-swiper .swiper-button-next,
    .experts-summary-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .experts-summary-swiper .swiper-button-prev {
        left: -17px;
    }
    
    .experts-summary-swiper .swiper-button-next {
        right: -17px;
    }
}