/**
 * Frontend Stylesheet - Aradhana
 * Complete CSS for all pages - UPDATED
 */

/* ================================================
   1. GLOBAL STYLES & RESET
================================================ */

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #eee;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

body {
    font-family: 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

/* a:hover {
    color: var(--secondary-color);
} */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   2. HEADER & NAVIGATION
================================================ */

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-logo a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 40px;
    width: auto;
}
.site-logo a {
    transition: var(--transition);
}

.site-logo a:hover {
    transform: translateY(-2px);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    display: block;
    font-weight: 500;
}

/* ================================================
   3. FOOTER
================================================ */

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    /* margin-top: 80px; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ================================================
   4. HOME PAGE
================================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 24px;
    opacity: 0.9;
}

.post-section {
    padding: 60px 0;
}

.post-section:nth-child(even) {
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text-color);
}

.section-header .view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content,
.post-card-content {
    padding: 20px;
}

.post-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.post-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.post-list-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.post-list-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.post-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.post-info h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.post-info h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.post-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.two-column-section {
    padding: 60px 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.posts-compact {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.post-compact-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.post-compact-item:last-child {
    border-bottom: none;
}

.post-compact-item a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.post-compact-item a:hover {
    color: var(--primary-color);
}

/* ================================================
   5. SINGLE POST PAGE
================================================ */

.breadcrumb {
    padding: 15px 0;
    background: var(--bg-light);
}

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

.breadcrumb span {
    color: var(--text-light);
}

.single-post-wrapper {
    padding: 40px 0;
    background: #f8f9fa;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.single-post-main {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-color);
}

.post-meta {
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    font-size: 14px;
}

.post-meta span {
    margin-right: 20px;
}

.post-categories {
    margin: 20px 0;
}

.post-categories a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    transition: background 0.3s;
}

.post-categories a:hover {
    background: var(--secondary-color);
}

.featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.before-content-section,
.main-content-section,
.hinglish-section {
    margin: 30px 0;
    padding: 30px;
    border-radius: 8px;
}

.before-content-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
}

.main-content-section {
    background: #fff;
    border: 2px solid #e0e0e0;
}

.hinglish-section {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    border-left: 5px solid #ffc107;
}

.section-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.before-content-section h3,
.main-content-section h3,
.hinglish-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.formatted-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}
.content.formatted-content pre {
    background: #f8f9fa;
    padding: 3%;
    margin-bottom: 20px;
    color: black;
    white-space: break-spaces;
    white-space: pre-wrap;
}
.formatted-content strong,
.formatted-content b {
    color: #d32f2f;
    font-weight: 700;
}

.formatted-content em,
.formatted-content i {
    font-style: italic;
    color: #1976d2;
}

.formatted-content h2,
.formatted-content h3,
.formatted-content h4 {
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.formatted-content p {
    margin-bottom: 18px;
}

.formatted-content ul,
.formatted-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.formatted-content li {
    margin-bottom: 12px;
}

.share-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.share-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }

/* ================================================
   6. SIDEBAR
================================================ */

.single-post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.category-list a:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 20px;
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post-item:hover .sidebar-post-thumb img {
    transform: scale(1.1);
}

.sidebar-post-info {
    flex: 1;
}

.sidebar-post-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-post-info h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.sidebar-post-info h4 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: var(--text-light);
}

.simple-post-list {
    list-style: none;
}

.simple-post-list li {
    margin-bottom: 12px;
}

.simple-post-list a {
    display: block;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.simple-post-list a:hover {
    background: #e8eaf6;
    padding-left: 20px;
    border-left-color: var(--primary-color);
}

/* ================================================
   7. ARCHIVE & TAXONOMY
================================================ */

.archive-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.archive-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.taxonomy-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.taxonomy-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.taxonomy-description {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 18px;
}

.archive-content {
    padding: 60px 0;
}

/* ================================================
   8. PAGINATION
================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

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

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ================================================
   9. RELATED POSTS SECTION
================================================ */

.related-posts-section {
    padding: 60px 0;
    background: white;
}

.related-posts-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}








/* ================================================
   BREADCRUMB - FIXED
================================================ */

.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb {
    font-size: 14px;
}

/* Breadcrumb separator */
.breadcrumb a::after {
    content: "";
    display: inline-block;
    margin: 0 8px;
    color: #6c757d;
}

.breadcrumb a:last-of-type::after {
    content: "";
}



/* ================================================
   404 PAGE - ENHANCED
================================================ */

.error-404-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.error-404-content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.error-404-content h2 {
    font-size: 36px;
    margin: 20px 0;
    color: var(--text-color);
}

.error-404-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-home,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-home {
    background: var(--primary-color);
    color: white;
}

.btn-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.suggested-content {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.suggested-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.suggested-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggested-links a {
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.suggested-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    
    .error-404-content h2 {
        font-size: 28px;
    }
    
    .error-404-content {
        padding: 40px 20px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .btn-home,
    .btn-secondary {
        width: 100%;
    }
}



/* ================================================
   ARCHIVE LAYOUT - WITH SIDEBAR
================================================ */

.archive-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.archive-main {
    /* Main content area */
}

.archive-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 1024px) {
    .archive-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }
    
    .archive-sidebar {
        position: static;
    }
}
/* ================================================
   10. RESPONSIVE DESIGN
================================================ */

@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Grids */
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
    
    /* Single Post */
    .single-post-layout {
        grid-template-columns: 1fr;
    }
    
    .single-post-sidebar {
        position: static;
    }
    
    .single-post-main {
        padding: 20px;
    }
    
    .post-header h1 {
        font-size: 28px;
    }
    
    .before-content-section,
    .main-content-section,
    .hinglish-section {
        padding: 20px;
    }
    
    .formatted-content {
        font-size: 16px;
    }
    
    /* Archive */
    .archive-header h1,
    .taxonomy-header h1 {
        font-size: 32px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .post-section {
        padding: 40px 0;
    }
}

@media print {
    .site-header,
    .mobile-menu,
    .share-buttons,
    .site-footer {
        display: none;
    }
}














/* ================================================
   HOME PAGE - ENHANCED ATTRACTIVE DESIGN
================================================ */

/* Hero Section Enhanced */
.hero-section-enhanced {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(60deg, #68a5f8 0%, #a88af8 50%, #f171b6 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.3); */
}

.hero-content-enhanced {
    text-align: center;
    color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title-main {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: white;
    color: #667eea;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.9;
}
/* Stats - More Vibrant */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    width: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 600;
}
/* Quick Categories */
.quick-categories {
    padding: 60px 0;
   /*  margin-top: -50px; */
    position: relative;
    z-index: 2;
}

.quick-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-cat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-color);
}

.quick-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.quick-cat-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.quick-cat-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Section Header Enhanced */
.section-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-enhanced h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.section-header-enhanced p {
    color: var(--text-light);
    font-size: 16px;
}

.view-all-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.posts-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.post-card-enhanced {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.post-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-thumbnail-enhanced {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card-enhanced:hover .post-thumbnail-enhanced img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.post-card-enhanced:hover .post-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.post-content-enhanced {
    padding: 25px;
}

.post-category {
    display: inline-block;
    padding: 5px 12px;
    background: #e8eaf6;
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.post-content-enhanced h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.post-content-enhanced h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.post-content-enhanced h3 a:hover {
    color: var(--primary-color);
}

.post-content-enhanced p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Chalisa Section */
.chalisa-section {
    padding: 80px 0;
}

.chalisa-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.chalisa-list-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
}

.chalisa-list-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.chalisa-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.chalisa-info {
    flex: 1;
}

.chalisa-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.chalisa-info h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.chalisa-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

.chalisa-arrow {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
}

/* Bhajan Section */
.bhajan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.bhajan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.bhajan-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.bhajan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bhajan-icon-big {
    font-size: 64px;
    margin-bottom: 20px;
}

.bhajan-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.bhajan-card h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.bhajan-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bhajan-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.bhajan-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Dual Section */
.dual-section {
    padding: 80px 0;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.dual-column {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.compact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.compact-item:hover {
    background: #e8eaf6;
    padding-left: 20px;
}

.compact-icon {
    font-size: 24px;
}

.compact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon-large {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section-home {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-home {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

/* ================================================
   ABOUT PAGE STYLES
================================================ */

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    padding: 60px 0;
}

.about-section.alt-bg {
    background: var(--bg-light);
    margin: 0 -20px;
    padding: 60px 20px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .content-image {
    order: -1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.why-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.why-item p {
    color: var(--text-light);
    margin: 0;
}

.about-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    margin-top: 80px;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* ================================================
   CONTACT PAGE STYLES
================================================ */

.contact-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    padding: 10px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}


/* ================================================
   CONTACT PAGE - ALERTS & FORM
================================================ */

/* Alert Messages */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success .alert-icon {
    color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error .alert-icon {
    color: #dc3545;
}

/* Form small text */
.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

/* Captcha input */
.form-group input[type="number"] {
    max-width: 150px;
}
/* ================================================
   RESPONSIVE - HOME, ABOUT, CONTACT
================================================ */

@media (max-width: 1024px) {
    .section-content,
    .section-content.reverse,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .section-content.reverse .content-image {
        order: 0;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item strong {
        font-size: 28px;
    }
    
    .quick-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid-enhanced,
    .bhajan-cards-grid,
    .chalisa-list-grid {
        grid-template-columns: 1fr;
    }
    
    .dual-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quick-cats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons,
    .cta-buttons-home {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}







@media (max-width: 768px) {
    .hero-title-main {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    .stat-item {
		padding: 10px;
		border-radius: 16px;
	}
    .stat-item strong {
        font-size: 26px;
    }
	.quick-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.section-header-enhanced {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
		flex-direction: column;
	}
}
