/* ===== AAJ KA SUVICHAR - MAIN STYLESHEET ===== */
/* Lightweight, Modern, Responsive - SINGLE SOURCE OF TRUTH */

/* ---------- CSS RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- VARIABLES ---------- */
:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --gradient: linear-gradient(135deg, #8B5CF6, #EC4899);
    --gradient-soft: linear-gradient(145deg, #FDF4FF, #F5F3FF);
    --bg: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-soft: #4B5563;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 25px -5px rgba(139,92,246,0.08);
    --shadow-lg: 0 20px 40px -15px rgba(139,92,246,0.15);
    --radius: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
}

/* ---------- BASE STYLES ---------- */
body {
    font-family: 'Tiro Devanagari Hindi', 'Mangal', 'Arial', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HEADER - तुम्हारा original header को replace करेगा नया header ---------- */
.site-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* ===== NEW MODERN HEADER STYLES ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

/* Logo with Icon */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: rotate(5deg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text h1,
.logo-text .logo-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.2;
}

/* Google Translate - header में trigger, क्लिक पर popup बीच में */
.nav .gtranslate_wrapper {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
/* Popup/dropdown को हमेशा middle-center में (viewport के बीच) */
.gt_white_content {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
    margin: 0 !important;
    z-index: 99999 !important;
}
.gt_black_overlay {
    z-index: 99998 !important;
}

/* Desktop Navigation Icons */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    position: relative;
}

.nav-links a i {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover i {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-radius: 0 0 30px 30px;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    border-radius: 12px;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a i {
    width: 25px;
    color: var(--primary);
    font-size: 1.2rem;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--gradient-soft);
    color: var(--primary);
    padding-left: 30px;
}

.mobile-menu a.active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.mobile-menu a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gradient);
    border-radius: 0 2px 2px 0;
}

/* ---------- HERO SECTION (तुम्हारा original) ---------- */
.hero {
    margin: 40px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hero-grid::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 300px;
    color: rgba(139,92,246,0.03);
    font-family: serif;
    pointer-events: none;
}

.today-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-quote {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-quote span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* ---------- BUTTONS (तुम्हारा original) ---------- */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px -8px rgba(139,92,246,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(139,92,246,0.6);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ---------- IMAGE FRAME (तुम्हारा original) ---------- */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ---------- QUOTES GRID (तुम्हारा original) ---------- */
.section-title {
    font-size: 2rem;
    margin: 60px 0 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* List layout - Google search result style */
.quotes-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    overflow: hidden;
}

.quote-card {
    background: var(--white);
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-height: 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.quote-card:last-child {
    border-bottom: none;
}

.quote-card:hover {
    background: var(--bg);
}

.quote-card-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
}

.quote-card .card-content {
    flex: 1;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-card .card-image-wrap {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    display: block;
    text-decoration: none;
    background: var(--bg);
    border-radius: 8px;
    overflow: hidden;
}

.quote-card .card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-date {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-quote {
    font-size: 1.1rem;
    line-height: 1.45;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.quote-card .card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    margin-top: 4px;
}

.quote-card .card-link:hover {
    gap: 6px;
    color: var(--secondary);
}

/* ---------- TOPICS CLOUD (तुम्हारा original) ---------- */
.topics-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 50px;
}

.topic-tag {
    background: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-soft);
    border: 1px solid var(--border);
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.topic-tag:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---------- BREADCRUMB (तुम्हारा original) ---------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-soft);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* ---------- PAGINATION (तुम्हारा original) ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 20px;
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.pagination a:hover,
.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 1.35fr;
    gap: 40px 32px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-col {
    min-width: 0;
}

.footer-about .footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.footer-about .footer-description {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 12px 0 14px 0;
    max-width: 320px;
}

.footer-read-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s, transform 0.2s;
}

.footer-read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-follow {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-follow-label {
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-social-link:hover {
    transform: translateY(-2px);
}

.footer-social-fb {
    background: #1877f2;
}

.footer-social-fb:hover {
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-social-insta {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-insta:hover {
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.footer-social-wa {
    background: #25d366;
}

.footer-social-wa:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact page – social links */
.contact-social-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.contact-social-item {
    text-decoration: none;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f0f4f8;
    border-radius: 12px;
    transition: transform 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact-social-item:hover {
    transform: translateY(-2px);
}
.contact-social-item i {
    font-size: 1.5rem;
}
.contact-social-fb i { color: #1877f2; }
.contact-social-fb:hover { color: #1877f2; box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25); }
.contact-social-insta i { color: #e4405f; }
.contact-social-insta:hover { color: #e4405f; box-shadow: 0 4px 12px rgba(228, 64, 95, 0.25); }
.contact-social-wa i { color: #25d366; }
.contact-social-wa:hover { color: #25d366; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25); }

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Inline list – heading ke baad links pill style */
.footer-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.footer-list-inline li {
    margin: 0;
}

.footer-list-inline a {
    display: inline-block;
    padding: 8px 14px;
    background: var(--bg);
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.footer-list-inline a:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(236, 72, 153, 0.08));
    color: var(--primary);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    margin-top: 0;
    border-top: 2px solid var(--border);
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

/* Legacy classes (other pages) */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-description { color: var(--text-soft); line-height: 1.7; margin-bottom: 25px; font-size: 1rem; }
.footer-social { display: flex; gap: 15px; }
.social-icon {
    width: 40px; height: 40px; background: var(--bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-soft); text-decoration: none; transition: all 0.3s;
}
.social-icon:hover { background: var(--gradient); color: white; transform: translateY(-3px); }
.footer-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; color: var(--text-dark); position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gradient); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: var(--text-soft); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-links i { font-size: 0.8rem; color: var(--primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; color: var(--text-soft); }
.footer-contact i { color: var(--primary); font-size: 1.1rem; margin-top: 3px; }
.footer-contact span { line-height: 1.6; }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { text-decoration: none; color: var(--text-light); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- LAZY LOADING (तुम्हारा original) ---------- */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image:not(.loaded) {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

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

.image-placeholder {
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

/* ---------- UTILITY CLASSES (तुम्हारा original) ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mt-6 { margin-top: 60px; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }
.mb-6 { margin-bottom: 60px; }
.p-2 { padding: 20px; }
.p-4 { padding: 40px; }
.hidden { display: none; }
.w-100 { width: 100%; }

/* ---------- RESPONSIVE (तुम्हारा original + new header responsive) ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        grid-row: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-quote {
        font-size: 2.3rem;
    }
    
    .image-frame {
        transform: none;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* नया header mobile responsive */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .logo-text h1,
    .logo-text .logo-site-name {
        font-size: 1.3rem;
    }
    
    /* Hero */
    .hero-grid {
        padding: 30px 20px;
    }
    
    .hero-quote {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        //width: 100%;
        justify-content: center;
    }
    
    /* Quotes list - mobile: same row, smaller thumbnail */
    .quotes-grid {
        margin: 16px 0 32px;
        border-radius: 10px;
    }
    
    .quote-card-inner {
        gap: 12px;
        padding: 12px 16px;
    }
    
    .quote-card .card-image-wrap {
        width: 72px;
        height: 72px;
    }
    
    .quote-card .card-quote {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quote-card .card-link {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }
    
    /* Topics */
    .topics-cloud {
        justify-content: center;
    }
    
    .topic-tag {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    /* Footer – mobile: har row ek column, full width */
    .site-footer {
        padding: 40px 0 24px;
        border-radius: 30px 30px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
        margin-bottom: 32px;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .footer-about {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-about .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-about .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-follow {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .footer-follow-label {
        display: block;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-heading {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
    }
    
    /* List inline hi rehta hai – pills wrap nicely */
    .footer-list-inline {
        justify-content: center;
        gap: 8px 10px;
    }
    
    .footer-list-inline a {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links li {
        display: inline-block;
        margin: 0 10px 10px;
    }
    
    .footer-links a {
        display: inline-flex;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 24px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Small Mobile */
    .logo-text h1,
    .logo-text .logo-site-name {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero {
        margin: 20px 0 60px;
    }
    
    .hero-quote {
        font-size: 1.5rem;
    }
    
    .today-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .quote-card .card-quote {
        font-size: 0.95rem;
    }
    
    .quote-card .card-image-wrap {
        width: 64px;
        height: 64px;
    }
    
    .topic-tag {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        padding: 8px 15px;
    }
}

/* ---------- PRINT STYLES (तुम्हारा original) ---------- */
@media print {
    .site-header,
    .hero-image,
    .btn,
    .site-footer,
    .topics-cloud,
    .pagination {
        display: none;
    }
    
    .hero-grid {
        box-shadow: none;
        border: 1px solid #ddd;
        padding: 20px;
    }
    
    .hero-quote {
        font-size: 1.8rem;
    }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.hero-grid,
.quote-card,
.topic-tag {
    animation: fadeInUp 0.5s ease-out;
}