/* Pricing Cards */
.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .card-header {
    background-color: #f8f9fa;
    border-bottom: none;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-card.popular .card-header {
    background-color: var(--primary-color);
    color: white;
}

/* Client Logo Marquee */
.client-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.client-marquee:before, .client-marquee:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}

.client-marquee:before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.client-marquee:after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.client-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.client-marquee:hover .client-marquee-content {
    animation-play-state: paused;
}

.client-logo {
    height: 60px;
    width: auto;
    margin: 0 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    padding: 0 40px;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

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

.testimonial-carousel .carousel-control-next {
    right: -20px;
}

.testimonial-carousel .carousel-indicators {
    bottom: -40px;
}

.testimonial-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.5;
    margin: 0 5px;
}

.testimonial-carousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
}