/* SECTION BACKGROUND */
.testimonial-section {
    padding: 80px 20px 5px;
}

/* HEADING MATCH */
.premium-heading .main-title {
    color: #fff;
}

.premium-heading .main-title span {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-heading .subtitle {
    color: #aaa;
}

.heading-line {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
}

/* CARD STYLE (MATCH ABOUT BOX) */
.premium-testimonial-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(199,175,38,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: 0.3s;
    height: 100%;
}

/* GLOW EFFECT */
/* CARD BOTTOM SPACE */
.testimonial-section {
    margin-bottom: 40px;
}

/* HOVER */
.premium-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}

/* GOOGLE BADGE */
.google-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    color: #000;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* QUOTE */
.quote-icon {
    font-size: 26px;
    color: #f7e27a;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* USER */
.testimonial-user h5 {
    color: #fff;
    font-size: 15px;
}

.testimonial-user span {
    color: #aaa;
    font-size: 12px;
}

/* STARS */
.stars {
    color: #f7e27a;
    margin-top: 8px;
}

/* BUTTON */
.view-all-btn {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(199,175,38,0.4);
}
@media (max-width: 768px) {

    .testimonial-section {
        padding: 40px 15px;
    }

    .premium-testimonial-card {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
}
.pagination {
    gap: 6px;
}

.page-item .page-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    border-radius: 10px;
    padding: 8px 14px;
    transition: 0.3s;
}

/* Hover */
.page-item .page-link:hover {
    background: rgba(199,175,38,0.2);
    color: #fff;
}

/* Active */
.page-item.active .page-link {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    color: #000;
    border: none;
    box-shadow: 0 5px 15px rgba(199,175,38,0.4);
}

/* Disabled */
.page-item.disabled .page-link {
    opacity: 0.4;
}
/* SVG hide */
.page-link svg {
    display: none;
}

/* Add custom arrows */
.page-item:first-child .page-link::after {
    content: "←";
    font-size: 14px;
}

.page-item:last-child .page-link::after {
    content: "→";
    font-size: 14px;
}