.blogs .blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem 0 1.25rem;
}

.blogs .chip {
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}
.blkl{
    color: black !important;
}
.blogs .blog-meta {
    display: flex;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.uppa{
    margin-top: 20px !important;
}
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(44, 95, 93, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: particleMove 20s infinite linear;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs .blog-meta i {
    color: var(--accent-color);
}
/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f5d;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --accent-light: #f4e4a6;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --black: #000000;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2c5f5d 0%, #1a4a47 100%);
    --gradient-secondary: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-magic: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.3);
    --shadow-colored: 0 20px 60px rgba(44, 95, 93, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
}

/* Base Styles */


/* Blogs Section */
.blogs {
    padding: 6rem 0;
    background: #121725;
    position: relative;
    overflow: hidden;
}

.blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.blog-category {
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--accent-color);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blogs page theme overrides to match site colors */
.blogs .blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.blogs .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Article (single blog) page refinements */
.blog-post-header {
    margin-top: 2.5rem;
    text-align: center;
}

.blog-post-header .section-title {
    font-size: 2.2rem;
}

.blog-post-header .section-subtitle {
    margin-top: 0.5rem;
}

.post-meta {
    margin-top: 0.75rem;
    justify-content: center;
}

.blog-post-content {
    margin-top: 1.5rem;
}

.blog-pullquote {
    margin: 1.25rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
}

.blog-post-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-actions .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-post-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.blog-post-actions .btn:hover::before {
    left: 100%;
}

/* Tighten article max width for better readability */
.blog-post .blog-post-content {
    /* For single article page, let content use full card width */
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Blog article card */
.blog-article-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* Add spacing and enhanced styling for blog post */
.blog-post-spaced {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.blog-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.blog-article-card::before { content: none; }

.blog-article-card .blog-post-header,
.blog-article-card .blog-post-content {
    /* Reduce inner padding to remove excessive side gaps */
    padding: 2rem 2rem;
    transition: all 0.3s ease;
}

/* Enhanced blog content styling */
.blog-post-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.blog-post-content:hover p {
    color: var(--dark-color);
}

/* Enhanced blockquote styling */
.blog-pullquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.blog-pullquote:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-pullquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
}

.blog-article-card .post-meta {
    display: flex;
    gap: 1rem;
}

.blogs .blog-title {
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.blogs .blog-excerpt {
    color: var(--text-light);
}

.blogs .blog-btn {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
}

.blogs .blog-btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Decorative accent bar for blog cards */
/* Remove decorative top accent bar on Blogs page cards */
.blogs .blog-card::before { content: none; }

/* Ensure comfortable spacing inside simple cards */
.blogs .blog-card .blog-content {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    line-height: 1.7;
}

/* Grid spacing and responsiveness tweaks */
/* Make card width follow container (single column) */
.blogs .blogs-grid { display: block; }

@media (max-width: 768px) {
    .blogs .blogs-grid {
        grid-template-columns: 1fr;
    }
}

.blog-actions {
    display: flex;
    justify-content: flex-start;
}

.blog-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.blog-btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateX(5px);
}

/* Coming Soon Card Styles */




.blogs-cta {
    text-align: center;
    margin-top: 4rem;
}

.blogs-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Blog Card Responsive */
@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blogs {
        padding: 4rem 0;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blogs-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* YouTube Trailer Section */
.youtube-trailer-section {
    padding: 6rem 0;
    background: #121725;
    position: relative;
    overflow: hidden;
}

.youtube-trailer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 23, 37, 0.9) 0%, rgba(18, 23, 37, 0.7) 100%);
    z-index: 1;
}

.youtube-trailer-section .container-fluid {
    position: relative;
    z-index: 2;
}

.youtube-trailer-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.youtube-trailer-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.trailer-container {
    max-width: 900px;
    margin: 0 auto;
}

.trailer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.trailer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.trailer-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 400px;
}

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

.trailer-thumbnail:hover .thumbnail-image {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.trailer-thumbnail:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.play-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trailer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.trailer-content {
    padding: 2.5rem;
}

.trailer-title {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.trailer-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.trailer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ff0000;
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.trailer-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
    color: white;
}

.trailer-btn i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .youtube-trailer-section {
        padding: 4rem 0;
    }
    
    .trailer-thumbnail {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .trailer-content {
        padding: 1.5rem;
    }
    
    .trailer-title {
        font-size: 1.5rem;
    }
    
    .trailer-stats {
        gap: 1rem;
    }
    
    .trailer-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
