blockquote {
    background: linear-gradient(to right, #ff758c, #ffb347) !important;
    border: none !important;
    border-top: 5px solid #cc0033 !important;
    text-align: center !important;
    color: white;
    padding: 15px;
    margin: 40px 0 20px;
    border-radius: 10px;
    position: relative;
    font-style: italic;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 16px;
    line-height: 1.6;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: background 0.5s ease;
}

/* 🔁 Hover effect */
blockquote:hover {
    background: linear-gradient(to right, #ffb347, #ff758c) !important;
}

.qe-buttons-text,
.qe-buttons-img {
    display: flex;
    margin-top: 10px;
}

.qe-buttons-img {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.qe-buttons-text {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.qe-copy-btn,
.qe-whatsapp-btn,
.qe-like-btn,
.qe-download-btn {
    background: linear-gradient(to right, #ff9966, #ff5e62);
    color: white;
    border: none; /* ❌ border हटाओ */
    border-radius: 5px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* ✅ soft shadow */
}

.qe-copy-btn:hover,
.qe-whatsapp-btn:hover,
.qe-like-btn:hover,
.qe-download-btn:hover {
    transform: scale(1.05); /* हल्का सा zoom-in */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.qe-like-btn.liked {
    background: #ff5e62;
}

.qe-like-btn i {
    margin-right: 5px;
    color: #ffb6c1 !important;
}

.qe-like-btn.liked i {
    color: #C40606 !important;
}



@media (max-width: 768px) {
    .qe-buttons-img {
        margin: 0 20px;
        margin-bottom: 10px;
    }
}

