.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;
}

.blogs .blog-header {
    padding: 1.25rem 2.5rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.blogs .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

.blogs .blog-meta i {
    color: #4ecdc4;
    transition: all 0.3s ease;
}

.blogs .blog-card:hover .blog-meta i {
    color: #ff6b6b;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .blogs .blog-header {
        padding: 1rem 1.75rem 0 1.75rem;
    }
}

@media (max-width: 480px) {
    .blogs .blog-header {
        padding: 0.75rem 1.5rem 0 1.5rem;
    }
}

/* 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 */



/* Preloader */









/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}





/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-outline:hover {
    background: var(--dark-color);
    color: var(--white);
    border-color: var(--dark-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Prevent page content from hiding behind fixed header on article page */
.blog-post {
    margin-top: 120px;
    padding: 3rem 5vw 5rem 5vw;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 120px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(76, 175, 80, 0.05), transparent 60%);
    pointer-events: none;
}

.blog-post .container-fluid {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .blog-post {
        margin-top: 100px;
        padding: 2rem 0 3rem 0;
    }
}














/* Blogs Section */
.blogs {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark-bg), #1a3440);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(90, 138, 148, 0.3);
}

/* Align blogs content with a centered container width */
.blogs .container {
    max-width: 960px;
    margin: 0 auto;
}

.blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(90, 138, 148, 0.1), transparent 70%);
    pointer-events: none;
}

.blogs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(90, 138, 148, 0.5), rgba(143, 181, 191, 0.4), transparent);
    box-shadow: 0 0 15px rgba(90, 138, 148, 0.3);
}

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

@media (max-width: 768px) {
    .blogs-grid {
        gap: 2rem;
    }
}

.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 main site colors (clean, soft, professional) */
.blogs .blog-card {
    background: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.18); /* soft green border to match header */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    max-width: 100%;
    margin: 0 auto 2.5rem;
}

.blogs .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87ceeb 0%, #98fb98 25%, #ffe082 50%, #ffb347 75%, #ff6b6b 100%);
    opacity: 1;
}

.blogs .blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(76, 175, 80, 0.06), transparent 60%);
    pointer-events: none;
    opacity: 1;
}

.blogs .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    border-color: rgba(76, 175, 80, 0.35);
}

/* 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;
}

/* Enhanced blog post content styling */
.blog-post-content h3,
.blog-post-content h2.blog-section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 1rem;
}

.blog-post-content h1.blog-main-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
    .blog-post-content h1.blog-main-title {
        font-size: 2rem;
    }
    
    .blog-post-content h3:first-child {
        font-size: 1.9rem;
    }
}

.blog-post-content h3::after,
.blog-post-content h2.blog-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50 0%, #87ceeb 100%);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.blog-post-content h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4caf50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.blog-post-content p.blog-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(135, 206, 235, 0.05) 100%);
    border-left: 4px solid #4caf50;
    border-radius: 8px;
}

.blog-post-content p:last-of-type {
    margin-bottom: 2rem;
}

/* Enhanced list styling */
.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0 2rem 0;
    padding-left: 0;
    list-style: none;
}

.blog-post-content ul li,
.blog-post-content ol li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-medium-text);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.blog-post-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0.5rem;
    color: var(--color-accent-light);
    font-size: 1.2rem;
    font-weight: bold;
}

.blog-post-content ol {
    counter-reset: item;
}

.blog-post-content ol li {
    counter-increment: item;
    padding-left: 2.5rem;
}

.blog-post-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0.5rem;
    color: var(--color-accent-light);
    font-weight: bold;
    font-size: 1.1rem;
}

.blog-post-content strong {
    color: var(--color-light-gray);
    font-weight: 600;
}

.blog-post-content em {
    font-style: italic;
    color: var(--color-accent-light);
}

/* Blockquote styling for quotes */
.blog-post-content blockquote {
    border-left: 4px solid var(--color-accent-secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-medium-text);
    font-size: 1.15rem;
    line-height: 1.7;
    background: rgba(45, 95, 107, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(45, 95, 107, 0.2);
}

.blog-post-content blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent-light);
    line-height: 0.1;
    margin-right: 0.5rem;
    opacity: 0.5;
}

/* Improved paragraph spacing for readability */
.blog-post-content p + p {
    margin-top: 1.5rem;
}

/* Special styling for introductory paragraphs */
.blog-post-content > p:first-of-type:not(.blog-intro) {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-post-content > p:first-of-type {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .blog-post-content h3,
    .blog-post-content h2.blog-section-title {
        font-size: 1.75rem;
        margin-top: 2rem;
    }
    
    .blog-post-content h1.blog-main-title {
        font-size: 2rem;
    }
    
    .blog-post-content h4 {
        font-size: 1.3rem;
    }
    
    .blog-post-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .blog-post-content p.blog-intro {
        font-size: 1.1rem;
        padding: 1.25rem;
    }
}

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

.blog-post-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(76, 175, 80, 0.2);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-post-actions .btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-post-actions .btn-primary,
.blog-post-actions .blog-cta-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.blog-post-actions .btn-primary:hover,
.blog-post-actions .blog-cta-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
}

.blog-post-actions .btn-outline,
.blog-post-actions .blog-back-btn {
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
    transition: all 0.3s ease;
}

.blog-post-actions .btn-outline:hover,
.blog-post-actions .blog-back-btn:hover {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .blog-post-actions {
        flex-direction: column;
    }
    
    .blog-post-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 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 - ensure proper container structure */
.blog-post > .blog-article-card {
    display: block;
    margin: 0;
    width: 100%;
}

/* Add container-fluid wrapper styling if present */
.blog-post .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5vw;
    padding-right: 5vw;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 2rem 2rem 3rem 2rem;
    }
    
    .blog-post .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 2rem 1rem 3rem 1rem;
    }
    
    .blog-post .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.blog-article-card {
    background: #ffffff;
    border: 2px solid rgba(76, 175, 80, 0.18);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(76, 175, 80, 0.1);
    padding: 0;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .blog-post article {
        padding: 0 1rem;
    }
}

.blog-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87ceeb 0%, #98fb98 25%, #ffe082 50%, #ffb347 75%, #ff6b6b 100%);
    opacity: 1;
}

.blog-article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(76, 175, 80, 0.06), transparent 60%);
    pointer-events: none;
    opacity: 1;
}

.blog-article-card .blog-post-header,
.blog-article-card .blog-post-content {
    padding: 3.5rem 4rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
}

@media (max-width: 992px) {
    .blog-article-card .blog-post-header,
    .blog-article-card .blog-post-content {
        padding: 3rem 3rem;
    }
}

@media (max-width: 768px) {
    .blog-article-card .blog-post-header,
    .blog-article-card .blog-post-content {
        padding: 2rem 2rem;
    }
}

@media (max-width: 480px) {
    .blog-article-card .blog-post-header,
    .blog-article-card .blog-post-content {
        padding: 1.5rem 1.5rem;
    }
}

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

/* Section title styling for blogs */
/* Blogs main heading – solid, non-transparent but still eye-catching */
.blogs .section-header .section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4caf50; /* solid green to match site theme */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.5px;
}

.blogs .blog-title {
    color: #2c3e50;
    font-family: 'Fredoka One', cursive;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blogs .blog-title:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #44a08d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(3px);
}

.blogs .blog-card h4 {
    color: #4ecdc4;
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.blogs .blog-excerpt {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .blogs .blog-title {
        font-size: 1.5rem;
    }
    
    .blogs .blog-card h4 {
        font-size: 1.15rem;
    }
    
    .blogs .blog-excerpt {
        font-size: 1rem;
    }
    
    .blogs .section-title {
        font-size: 2.2rem;
    }
    
    .blogs .blog-card .blog-content {
        padding: 2rem 2rem;
    }
}

.blogs .blog-btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: 2px solid transparent;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.blogs .blog-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4), 0 0 15px rgba(255, 107, 107, 0.3);
    transform: translateY(-3px) scale(1.05);
}

/* Decorative accent bar for blog cards - handled in .blogs .blog-card::before above */

/* Ensure comfortable spacing inside simple cards */
.blogs .blog-card .blog-content {
    padding: 2.5rem 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
}

@media (max-width: 768px) {
    .blogs .blog-card .blog-content {
        padding: 1.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .blogs .blog-card .blog-content {
        padding: 1.75rem 1.75rem;
    }
    
    .blogs .section-title {
        font-size: 1.8rem;
    }
    
    .blogs .blog-title {
        font-size: 1.3rem;
    }
    
    .blogs .blog-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* 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 */
.coming-soon-card {
    background: var(--gradient-light);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.coming-soon-content {
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.coming-soon-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.coming-soon-card .blog-content {
    background: var(--white);
    border-top: 3px solid var(--accent-color);
}

.coming-soon-card .blog-title {
    color: var(--primary-color);
    text-align: center;
}

.coming-soon-card .blog-excerpt {
    text-align: center;
    color: var(--text-color);
}

.coming-soon-card .blog-actions {
    text-align: center;
}

.coming-soon-card .blog-btn {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.coming-soon-card .blog-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Coming Soon Card */
@media (max-width: 768px) {
    .coming-soon-card {
        margin: 0 1rem;
    }

    .coming-soon-overlay {
        padding: 1rem;
    }

    .coming-soon-content {
        padding: 1.5rem;
    }

    .coming-soon-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .coming-soon-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .coming-soon-card .blog-content {
        padding: 1.25rem;
    }

    .coming-soon-card .blog-title {
        font-size: 1.2rem;
    }

    .coming-soon-card .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .coming-soon-card {
        margin: 0 0.5rem;
    }

    .coming-soon-overlay {
        padding: 0.75rem;
    }

    .coming-soon-content {
        padding: 1rem;
    }

    .coming-soon-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .coming-soon-text {
        font-size: 0.9rem;
    }

    .coming-soon-card .blog-content {
        padding: 1rem;
    }

    .coming-soon-card .blog-title {
        font-size: 1.1rem;
    }

    .coming-soon-card .blog-excerpt {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .coming-soon-card .blog-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

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

.blogs-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blogs-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    border-radius: 50px;
}

.blogs-cta .btn:hover::before {
    left: 100%;
}

.blogs-cta .btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5), 0 0 20px rgba(76, 175, 80, 0.3);
}

.blogs-cta .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blogs-cta .btn:hover i {
    transform: rotate(5deg) scale(1.1);
}

/* 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 {
        margin-top: 3rem;
    }
    
    .blogs-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.blg {
    margin-top: 80px !important;
}

.blogs {
    margin-top: 80px !important;
}

/* Print Styles */
@media print {

    .header,
    .floating-elements,
    .back-to-top,
    .preloader {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero,
    .section {
        page-break-inside: avoid;
    }
}