/* Phase-2 performance: extracted inline page styles for better browser caching */

.clients-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .clients-logo img {
        width: 100%;
        height: 100%;
    }
}

.testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.testimonial-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #fff;
}

.testimonial-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 20px;
    color: #ccc;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #555;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.date {
    font-size: 12px;
    color: #888;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

.stars i {
    color: #ffc107;
    margin-right: 2px;
}

.g-icon {
    width: 100px !important;
    height: 30px !important;
    position: absolute;
    right: 0;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #888;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .testimonial-section h2 {
        font-size: 22px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev {
        left: -5px;
    }

    .swiper-button-next {
        right: -5px;
    }
}

.leon-popular-tags-sec {
    --leon-gold: #fd0;
    --leon-text: #111;
    --leon-muted: #666;
    --leon-chip-bg: #fafafa;
    --leon-chip-bd: #e9e9e9;
    --leon-chip-hover: #000;
    --leon-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    --leon-radius: 999px;
}

.leon-heading {
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 28px);
    color: #fff;
    padding: 14px 0 12px;
    margin: 0 0 14px;
    border-bottom: 1px dashed #d9d9d9;
    letter-spacing: .2px;
}

.leon-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 14px;
}

.leon-tag {
    display: inline-block;
    height: auto;
    padding: 8px 20px;
    border: 1px solid #f5b754;
    border-radius: 30px;
    background-color: #f5b754;
    color: #1b1b1b;
    font-weight: 300;
    text-align: center;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.leon-tag::after {
    content: "\203A";
    font-size: 20px;
    color: #000;
    margin-left: 6px;
    transition: color .18s ease, transform .18s ease;
}

.leon-tag:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}

@media (max-width: 992px) {
    .leon-tag-container {
        gap: 10px;
    }

    .leon-tag {
        font-size: 13px;
        padding: 9px 14px;
    }
}

@media (max-width: 576px) {
    .leon-heading {
        font-size: 20px;
    }

    .leon-tag {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leon-tag,
    .leon-tag::after {
        transition: none;
    }
}
