/* --- Dignitaries Section Design --- */
.dignitaries-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden; /* बाहेरील भाग लपवण्यासाठी */
    text-align: center;
}

.dignitary-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-wrapper {
    width: 100%;
    overflow: hidden; /* महत्वाचे: फक्त ठराविक भाग दाखवण्यासाठी */
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content; /* सर्व कार्ड्स एका सरळ रेषेत ठेवण्यासाठी */
    gap: 20px;
    animation: scroll-left 30s linear infinite; /* 30s हा वेग तुम्ही बदलू शकता */
}

/* ॲनिमेशन लॉजिक: ५०% वर गेल्यावर रीस्टार्ट होते */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* 10px हा गॅपचा अर्धा भाग आहे */
}

/* माऊस नेल्यावर स्लायडर थांबवण्यासाठी */
.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: #ffffff;
    width: 350px; /* प्रत्येक कार्डची निश्चित रुंदी */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid var(--accent-gold);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-gold);
    padding: 5px;
}

.message {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.name {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.designation {
    font-size: 0.85rem;
    color: #e67e22; /* थोडा उठून दिसणारा रंग */
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        width: 280px; /* मोबाईलवर कार्ड थोडे लहान */
    }
}