﻿/* Global Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #ed8936 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(237,137,54,0.15);
    border-radius: 50%;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
}

/* Section Styling */
.blog-section {
    padding: 100px 0;
    position: relative;
}

    .blog-section:nth-child(even) {
        background-color: #f8fafc;
    }

    .blog-section:nth-child(odd) {
        background-color: #ffffff;
    }

/* Image Containers */
.blog-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

    .blog-img-wrapper:hover {
        transform: translateY(-10px);
        box-shadow: 0 35px 60px -12px rgba(0,0,0,0.2);
    }

    .blog-img-wrapper img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .blog-img-wrapper:hover img {
        transform: scale(1.05);
    }

.blog-img-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(237,137,54,0.4);
}

/* Content Styling */
.blog-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-content .lead-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 4px solid #ed8936;
    padding-left: 25px;
}

.blog-content p {
    color: #64748b;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .feature-list li {
        padding: 12px 0;
        padding-left: 40px;
        position: relative;
        color: #2d3748;
        font-weight: 500;
        border-bottom: 1px solid #e2e8f0;
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 12px;
            color: #ed8936;
            font-size: 1.1rem;
        }

/* Stats Box */
.stats-box {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

    .stats-box::before {
        content: '\f0d1';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        bottom: 10px;
        font-size: 6rem;
        opacity: 0.05;
    }

    .stats-box h4 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 5px;
        color: #ed8936;
    }

    .stats-box p {
        color: rgba(255,255,255,0.8);
        margin: 0;
        font-size: 0.95rem;
    }

/* CTA Button */
.btn-blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(237,137,54,0.3);
}

    .btn-blog-cta:hover {
        transform: translateX(5px);
        box-shadow: 0 15px 35px rgba(237,137,54,0.4);
        color: white;
    }

/* Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #dd6b20);
    border-radius: 2px;
    margin-bottom: 25px;
}

/* Smooth Scroll Offset */
html {
    scroll-behavior: smooth;
}

/* Animations */
.wow {
    visibility: hidden;
}

/* Responsive */
@@media (max-width: 991px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-section {
        padding: 60px 0;
    }

    .order-mobile-1 {
        order: 1;
    }

    .order-mobile-2 {
        order: 2;
        margin-top: 40px;
    }
}