.fixed-testimonial-btn {
    position: fixed;
    left: -50px;
    bottom: 150px;
    background: #f2a900;
    color: #111;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    
    transform: rotate(-90deg);
    transform-origin: center;
}

.fixed-testimonial-btn:hover {
    background: #d99600;
}

.testimonial-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.70);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    padding: 20px;
}

.testimonial-popup.show {
    display: flex;
}

.testimonial-popup-box {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    border-radius: 18px;
    position: relative;
    animation: testimonialPopup 0.3s ease;
}

@keyframes testimonialPopup {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    background: #0b2c5f;
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
}

.testimonial-popup-heading {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-popup-heading span {
    color: #f2a900;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-popup-heading h2 {
    color: #0b2c5f;
    font-size: 34px;
    margin: 8px 0;
    font-weight: 800;
}

.testimonial-popup-heading p {
    color: #666;
    margin: 0;
}

.testimonial-boxes {
    display: flex;
    gap: 22px;
}

.testimonial-card {
    background: #f5f7fb;
    padding: 25px;
    border-radius: 14px;
    flex: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stars {
    color: #f2a900;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-letter {
    width: 48px;
    height: 48px;
    background: #0b2c5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.testimonial-client h4 {
    color: #0b2c5f;
    margin: 0 0 4px;
    font-size: 18px;
}

.testimonial-client span {
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-boxes {
        flex-direction: column;
    }

    .testimonial-popup-box {
        padding: 28px 18px;
    }

    .testimonial-popup-heading h2 {
        font-size: 26px;
    }

    .fixed-testimonial-btn {
        left: -37px;
        bottom: 105px;
        padding: 10px 10px;
        font-size: 12px;
    }
}







/* Verified Client Section */
.verified-client-section {
    margin-bottom: 25px;
}

.verified-badge {
    background: #eef7ff;
    border: 1px solid #cce8ff;
    padding: 18px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verified-icon {
    width: 42px;
    height: 42px;
    background: #0b2c5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
}

.verified-badge h3 {
    margin: 0 0 5px;
    color: #0b2c5f;
    font-size: 20px;
}

.verified-badge p {
    margin: 0;
    color: #555;
}

/* Counter Section */
.testimonial-counter-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.counter-box {
    background: #0b2c5f;
    color: #fff;
    padding: 22px 15px;
    border-radius: 14px;
    text-align: center;
}

.counter-box h3 {
    font-size: 32px;
    margin: 0 0 6px;
    color: #f2a900;
    font-weight: 800;
}

.counter-box p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

/* Service Tags Section */
.testimonial-tags-section {
    background: #fffaf0;
    border: 1px solid #ffe2a3;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-tags-section h3 {
    color: #0b2c5f;
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
}

.testimonial-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.testimonial-service-tags span {
    background: #fff;
    color: #0b2c5f;
    border: 1px solid #f2a900;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* Review Section */
.testimonial-review-section {
    margin-bottom: 35px;
}

.review-section-title {
    text-align: center;
    color: #0b2c5f;
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 800;
}

/* Callback Section */
.testimonial-callback-section {
    background: linear-gradient(135deg, #0b2c5f, #123f82);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-bottom: 22px;
}

.testimonial-callback-section h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.testimonial-callback-section p {
    margin: 0 0 20px;
    color: #e6e6e6;
}

.testimonial-call-btn {
    display: inline-block;
    background: #f2a900;
    color: #111;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
}

.testimonial-call-btn:hover {
    background: #d99600;
    color: #111;
}

/* Bottom Trust Line */
.testimonial-bottom-trust-line {
    background: #f5f7fb;
    border-left: 5px solid #f2a900;
    padding: 18px 22px;
    border-radius: 12px;
}

.testimonial-bottom-trust-line p {
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-counter-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .verified-badge {
        align-items: flex-start;
    }

    .testimonial-counter-section {
        grid-template-columns: 1fr;
    }

    .testimonial-tags-section {
        padding: 20px 15px;
    }

    .testimonial-callback-section {
        padding: 26px 18px;
    }

    .testimonial-callback-section h3 {
        font-size: 22px;
    }
}














