/* ============================================================
   SECTION: MILESTONES / TIMELINE — Purple/Navy/Gold Theme
============================================================ */
.section-timeline {
    background: linear-gradient(160deg, #faf5ff 0%, #f0e7fe 40%, #eef3fa 100%);
    border-radius: 20px;
    padding: 34px 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.18);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.section-timeline::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -70px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
    border-radius: 50%;
}

.section-timeline::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.08), transparent 70%);
    border-radius: 50%;
}

.section-timeline > * { position: relative; z-index: 1; }

/* Timeline Header */
.timeline-header {
    text-align: center;
    margin-bottom: 32px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px;
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.timeline-badge i { color: #f5c542; }

.timeline-badge .journey-tag {
    background: #f5c542;
    color: #4c1d95;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 900;
}

.section-timeline h2 {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(24px, 4.5vw, 32px);
    font-weight: 900;
    color: #4c1d95;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}

.section-timeline h2 .gradient-text {
    background: linear-gradient(90deg, #7c3aed, #6d28d9, #f59e0b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: timelineShine 4s linear infinite;
}

@keyframes timelineShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.timeline-sub {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 14.5px;
    color: #6d28d9;
    font-weight: 600;
    max-width: 620px;
    margin: 0 auto;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    padding: 20px 0 10px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Center Line */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #7c3aed 0%, 
        #6d28d9 20%, 
        #0d7a8a 40%, 
        #f59e0b 60%, 
        #ec4899 80%, 
        #10b981 100%);
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 44px 30px 0;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.timeline-item.right {
    margin-left: 50%;
    padding: 0 0 30px 44px;
    align-items: flex-start;
}

/* Dot on the line */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 22px;
    right: -13px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #7c3aed;
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
    animation: dotPulse 2.5s ease-in-out infinite;
}

.timeline-item.right::before {
    right: auto;
    left: -13px;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
}

.timeline-item:hover::before {
    transform: scale(1.25);
}

/* Individual dot colors */
.timeline-item.tl-purple::before { border-color: #7c3aed; animation-name: dotPulsePurple; }
.timeline-item.tl-navy::before { border-color: #0f1a4a; animation-name: dotPulseNavy; }
.timeline-item.tl-cyan::before { border-color: #06b6d4; animation-name: dotPulseCyan; }
.timeline-item.tl-gold::before { border-color: #f59e0b; animation-name: dotPulseGold; }
.timeline-item.tl-pink::before { border-color: #ec4899; animation-name: dotPulsePink; }
.timeline-item.tl-green::before { border-color: #10b981; animation-name: dotPulseGreen; }
.timeline-item.tl-orange::before { border-color: #ff7a18; animation-name: dotPulseOrange; }
.timeline-item.tl-blue::before { border-color: #2563eb; animation-name: dotPulseBlue; }

@keyframes dotPulsePurple {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
}
@keyframes dotPulseNavy {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 26, 74, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(15, 26, 74, 0); }
}
@keyframes dotPulseCyan {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
}
@keyframes dotPulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}
@keyframes dotPulsePink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(236, 72, 153, 0); }
}
@keyframes dotPulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}
@keyframes dotPulseOrange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 122, 24, 0); }
}
@keyframes dotPulseBlue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

/* Timeline Card */
.timeline-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 6px 24px rgba(15, 26, 74, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 420px;
    width: 100%;
    cursor: default;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
    transform: rotate(45deg);
}

.timeline-item:not(.right) .timeline-card::before {
    right: -6px;
    border-right: 1px solid rgba(139, 92, 246, 0.12);
    border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.timeline-item.right .timeline-card::before {
    left: -6px;
    border-left: 1px solid rgba(139, 92, 246, 0.12);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.timeline-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.35);
}

/* Card Header */
.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #6d28d9;
    border-radius: 50px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.timeline-date i { font-size: 10px; }

/* Different date colors */
.tl-purple .timeline-date { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #6d28d9; }
.tl-navy .timeline-date { background: linear-gradient(135deg, #dbe4ff, #c7d2fe); color: #1e3a8a; }
.tl-cyan .timeline-date { background: linear-gradient(135deg, #cffafe, #a5f3fc); color: #0e7490; }
.tl-gold .timeline-date { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.tl-pink .timeline-date { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #9d174d; }
.tl-green .timeline-date { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.tl-orange .timeline-date { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #9a3412; }
.tl-blue .timeline-date { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1) rotate(-8deg);
}

.tl-purple .timeline-icon { background: linear-gradient(135deg, #7c3aed, #6d28d9); box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3); }
.tl-navy .timeline-icon { background: linear-gradient(135deg, #1e3a8a, #0f1a4a); box-shadow: 0 6px 18px rgba(15, 26, 74, 0.3); }
.tl-cyan .timeline-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 6px 18px rgba(6, 182, 212, 0.3); }
.tl-gold .timeline-icon { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3); }
.tl-pink .timeline-icon { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 6px 18px rgba(236, 72, 153, 0.3); }
.tl-green .timeline-icon { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3); }
.tl-orange .timeline-icon { background: linear-gradient(135deg, #ff7a18, #ea580c); box-shadow: 0 6px 18px rgba(255, 122, 24, 0.3); }
.tl-blue .timeline-icon { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3); }

/* Card Title */
.timeline-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #4c1d95;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    line-height: 1.35;
}

.timeline-card p {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.timeline-card p strong {
    color: #6d28d9;
    font-weight: 700;
}

/* Tag Badge */
.timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.tl-purple .timeline-tag { background: #ede9fe; color: #5b21b6; }
.tl-navy .timeline-tag { background: #dbe4ff; color: #1e3a8a; }
.tl-cyan .timeline-tag { background: #cffafe; color: #0e7490; }
.tl-gold .timeline-tag { background: #fef3c7; color: #92400e; }
.tl-pink .timeline-tag { background: #fce7f3; color: #9d174d; }
.tl-green .timeline-tag { background: #d1fae5; color: #065f46; }
.tl-orange .timeline-tag { background: #ffedd5; color: #9a3412; }
.tl-blue .timeline-tag { background: #dbeafe; color: #1e40af; }

/* Timeline End Marker */
.timeline-end {
    text-align: center;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.timeline-end-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.35);
    animation: endPulse 3s ease-in-out infinite;
}

@keyframes endPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(109, 40, 217, 0.35); }
    50% { box-shadow: 0 10px 40px rgba(109, 40, 217, 0.55); }
}

.timeline-end-dot i { color: #f5c542; }

/* Timeline CTA Box */
.timeline-cta-box {
    margin-top: 28px;
    padding: 20px 26px;
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 12px 32px rgba(76, 29, 149, 0.25);
}

.timeline-cta-box .cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.timeline-cta-box .cta-text i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 197, 66, 0.15);
    color: #f5c542;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.timeline-cta-box .cta-text strong { color: #f5c542; }

.timeline-cta-box .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #f5c542, #f59e0b);
    color: #4c1d95;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.timeline-cta-box .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 197, 66, 0.45);
}

/* Responsive — Timeline */
@media (max-width: 900px) {
    .timeline-wrapper::before { left: 20px; }
    .timeline-item,
    .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding: 0 0 26px 60px;
        align-items: flex-start;
    }
    .timeline-item::before,
    .timeline-item.right::before {
        left: 10px;
        right: auto;
        top: 22px;
    }
    .timeline-item:not(.right) .timeline-card::before,
    .timeline-item.right .timeline-card::before {
        left: -6px;
        right: auto;
        border-left: 1px solid rgba(139, 92, 246, 0.12);
        border-bottom: 1px solid rgba(139, 92, 246, 0.12);
        border-right: none;
        border-top: none;
    }
    .timeline-card { max-width: 100%; }
}

@media (max-width: 768px) {
    .section-timeline { padding: 22px 18px; border-radius: 18px; margin-bottom: 18px; }
    .section-timeline h2 { font-size: 22px; }
    .timeline-sub { font-size: 13.5px; }
    .timeline-header { margin-bottom: 24px; }

    .timeline-wrapper { padding: 12px 0 6px; }
    .timeline-wrapper::before { width: 3px; }

    .timeline-item,
    .timeline-item.right {
        padding: 0 0 22px 52px;
    }

    .timeline-item::before,
    .timeline-item.right::before {
        width: 18px;
        height: 18px;
        left: 9px;
        top: 18px;
        border-width: 3px;
    }

    .timeline-card { padding: 16px 16px; border-radius: 14px; }
    .timeline-card::before { top: 20px; }

    .timeline-date { font-size: 10px; padding: 4px 10px; }
    .timeline-icon { width: 36px; height: 36px; font-size: 15px; border-radius: 10px; }
    .timeline-card h4 { font-size: 14.5px; }
    .timeline-card p { font-size: 12.5px; }
    .timeline-tag { font-size: 9px; }

    .timeline-end-dot { font-size: 12px; padding: 10px 20px; }
    .timeline-cta-box { padding: 16px 18px; flex-direction: column; text-align: center; }
    .timeline-cta-box .cta-text { flex-direction: column; }
    .timeline-cta-box .cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .section-timeline { padding: 20px 14px; }
    .section-timeline h2 { font-size: 19px; }
    .timeline-badge { font-size: 9.5px; padding: 6px 14px; letter-spacing: 0.8px; }

    .timeline-item,
    .timeline-item.right { padding: 0 0 20px 46px; }

    .timeline-item::before,
    .timeline-item.right::before {
        width: 16px;
        height: 16px;
        left: 8px;
        top: 16px;
        border-width: 3px;
    }

    .timeline-wrapper::before { left: 16px; }

    .timeline-card { padding: 14px 14px; border-radius: 12px; }
    .timeline-card h4 { font-size: 13.5px; }
    .timeline-card p { font-size: 12px; }
    .timeline-card-header { gap: 8px; flex-wrap: wrap; }
    .timeline-icon { width: 32px; height: 32px; font-size: 13px; }

    .timeline-end-dot { font-size: 11px; padding: 9px 16px; }
}
/* ============================================================
   FEEDBACK PREVIEW — AUTO SCROLLING CAROUSEL
============================================================ */
.feedback-preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.feedback-preview-title span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feedback-preview-title i { color: #2563eb; }

.feedback-preview-title .auto-scroll-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feedback-preview-title .auto-scroll-badge i {
    font-size: 9px;
    color: #2563eb;
    animation: scrollIconPulse 1.5s ease-in-out infinite;
}
@keyframes scrollIconPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* Scroll Container Wrapper */
.feedback-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 8px 0 14px;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* Scroll Track (animates) */
.feedback-scroll-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scrollFeedback var(--scroll-duration, 60s) linear infinite;
    will-change: transform;
}

.feedback-scroll-wrapper:hover .feedback-scroll-track,
.feedback-scroll-wrapper:focus-within .feedback-scroll-track {
    animation-play-state: paused;
}

/* Pause on touch (mobile) */
.feedback-scroll-wrapper:active .feedback-scroll-track {
    animation-play-state: paused;
}

@keyframes scrollFeedback {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Card */
.feedback-preview-card {
    flex-shrink: 0;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.feedback-preview-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
    pointer-events: none;
}
.feedback-preview-card:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
    transform: translateY(-4px) scale(1.02);
}

.preview-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.preview-stars i {
    font-size: 12px;
    color: #f59e0b;
}
.preview-stars i.empty { color: #d1d5db; }

.preview-text {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-2);
    font-weight: 500;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 84px;
}

.preview-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}
.preview-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.preview-user-info {
    min-width: 0;
    flex: 1;
}
.preview-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.preview-date {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}

/* No feedback */
.no-preview-msg {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed var(--border);
}
.no-preview-msg i {
    font-size: 40px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: block;
}
.no-preview-msg p {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-preview-card {
        width: 260px;
        padding: 16px 16px 14px;
    }
    .preview-text {
        font-size: 12.5px;
        min-height: 75px;
        -webkit-line-clamp: 3;
    }
    .preview-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .preview-name { font-size: 12px; }

    .feedback-preview-title {
        font-size: 14px;
    }
    .feedback-preview-title .auto-scroll-badge {
        font-size: 9.5px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .feedback-preview-card {
        width: 240px;
        padding: 14px 14px 12px;
    }
    .preview-text {
        font-size: 12px;
        min-height: 68px;
    }
    .preview-stars i { font-size: 11px; }
}
/* ============================================================
   SECTION: FEEDBACK — Blue/Gold/Green Theme
============================================================ */
.section-feedback {
    background: linear-gradient(160deg, #eff6ff 0%, #e0e7ff 40%, #f0fdf4 100%);
    border-radius: 20px;
    padding: 34px 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}
.section-feedback::before {
    content: '';
    position: absolute; top: -80px; right: -70px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    border-radius: 50%;
}
.section-feedback::after {
    content: '';
    position: absolute; bottom: -80px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.1), transparent 70%);
    border-radius: 50%;
}
.section-feedback > * { position: relative; z-index: 1; }

/* Header */
.feedback-header {
    text-align: center;
    margin-bottom: 28px;
}
.feedback-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.feedback-badge i { color: #f5c542; }
.feedback-badge .live-tag {
    background: #f5c542;
    color: #1e40af;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 900;
}
.section-feedback h2 {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(24px, 4.5vw, 32px);
    font-weight: 900;
    color: #1e3a8a;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}
.section-feedback h2 .gradient-text {
    background: linear-gradient(90deg, #2563eb, #10b981, #f59e0b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: feedbackShine 4s linear infinite;
}
@keyframes feedbackShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.feedback-sub {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 14.5px;
    color: #475569;
    font-weight: 600;
    max-width: 620px;
    margin: 0 auto;
}

/* Stats Grid — 3 Big Numbers */
.feedback-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.feedback-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feedback-stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    transition: all 0.3s ease;
}
.feedback-stat-card.rating-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.feedback-stat-card.total-card::before {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}
.feedback-stat-card.rec-card::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}
.feedback-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 26, 74, 0.12);
}
.feedback-stat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    transition: all 0.35s ease;
}
.feedback-stat-card:hover .feedback-stat-icon {
    transform: scale(1.1) rotate(-8deg);
}
.rating-card .feedback-stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.total-card .feedback-stat-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.rec-card .feedback-stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.feedback-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}
.rating-card .feedback-stat-value { color: #d97706; }
.total-card .feedback-stat-value { color: #1d4ed8; }
.rec-card .feedback-stat-value { color: #059669; }
.feedback-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.feedback-stat-label i { margin-right: 4px; }

/* Star Distribution Bar */
.feedback-distribution {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
}
.feedback-distribution h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feedback-distribution h4 i { color: #f59e0b; }

.distribution-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.distribution-row:last-child { margin-bottom: 0; }
.dist-star {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-2);
    min-width: 45px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dist-star i { color: #f59e0b; font-size: 11px; }
.dist-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.dist-bar-fill {
    height: 100%;
    border-radius: 20px;
    transition: width 1s cubic-bezier(0.34, 1.2, 0.64, 1);
    width: 0;
}
.dist-bar-fill.star5 { background: linear-gradient(90deg, #10b981, #34d399); }
.dist-bar-fill.star4 { background: linear-gradient(90deg, #84cc16, #a3e635); }
.dist-bar-fill.star3 { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.dist-bar-fill.star2 { background: linear-gradient(90deg, #f97316, #fb923c); }
.dist-bar-fill.star1 { background: linear-gradient(90deg, #ef4444, #f87171); }

.dist-count {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    min-width: 30px;
    text-align: right;
}

/* Recent Feedback Preview Cards */
.feedback-preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feedback-preview-title i { color: #2563eb; }

.feedback-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.feedback-preview-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: previewIn 0.6s ease backwards;
}
@keyframes previewIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.feedback-preview-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
    pointer-events: none;
}
.feedback-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.preview-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.preview-stars i {
    font-size: 12px;
    color: #f59e0b;
}
.preview-stars i.empty { color: #d1d5db; }

.preview-text {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-2);
    font-weight: 500;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px;
}

.preview-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}
.preview-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 13px; flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.preview-user-info { min-width: 0; flex: 1; }
.preview-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.preview-date {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}

/* No feedback preview */
.no-preview-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed var(--border);
}
.no-preview-msg i {
    font-size: 40px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: block;
}
.no-preview-msg p {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

/* CTA Box */
.feedback-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.25);
    flex-wrap: wrap;
}
.feedback-cta-box .cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.feedback-cta-box .cta-text i {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(245, 197, 66, 0.15);
    color: #f5c542;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.feedback-cta-box .cta-text strong { color: #f5c542; }
.feedback-cta-box .cta-text span {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.feedback-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #f5c542, #f59e0b);
    color: #1e40af;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
    letter-spacing: 0.3px;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(245, 197, 66, 0.35);
}
.feedback-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(245, 197, 66, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .feedback-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-feedback { padding: 22px 18px; border-radius: 18px; margin-bottom: 18px; }
    .section-feedback h2 { font-size: 22px; }
    .feedback-sub { font-size: 13.5px; }
    .feedback-header { margin-bottom: 22px; }

    .feedback-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
    .feedback-stat-card { padding: 14px 8px; border-radius: 14px; }
    .feedback-stat-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; margin-bottom: 8px; }
    .feedback-stat-value { font-size: 22px; }
    .feedback-stat-label { font-size: 9.5px; }

    .feedback-distribution { padding: 16px 18px; border-radius: 14px; }
    .feedback-distribution h4 { font-size: 13px; margin-bottom: 12px; }
    .dist-star { font-size: 11px; min-width: 40px; }
    .dist-bar { height: 6px; }
    .dist-count { font-size: 10.5px; min-width: 26px; }

    .feedback-preview-title { font-size: 14px; }
    .feedback-preview-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
    .feedback-preview-card { padding: 16px 16px 14px; }
    .preview-text { font-size: 12.5px; min-height: 55px; }
    .preview-avatar { width: 30px; height: 30px; font-size: 12px; }
    .preview-name { font-size: 12px; }

    .feedback-cta-box { padding: 16px 18px; flex-direction: column; text-align: center; }
    .feedback-cta-box .cta-text { flex-direction: column; }
    .feedback-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .section-feedback { padding: 20px 14px; }
    .section-feedback h2 { font-size: 19px; }
    .feedback-badge { font-size: 9.5px; padding: 6px 14px; letter-spacing: 0.8px; }

    .feedback-stats-grid { grid-template-columns: 1fr; gap: 8px; }
    .feedback-stat-card { padding: 14px 14px; }
    .feedback-stat-icon { width: 36px; height: 36px; font-size: 15px; margin-bottom: 6px; }
    .feedback-stat-value { font-size: 24px; }
    .feedback-stat-label { font-size: 10.5px; }
}