        .blog-hero {
            background: linear-gradient(rgba(15,15,30,.75), rgba(15,15,30,.75)),
            url('img/ai-bannr.jpg');
            background-size: cover;
            background-position: center;
            padding: 180px 0 120px;
            text-align: center;
            color: #fff;
        }

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

        .blog-hero p {
            font-size: 18px;
            max-width: 750px;
            margin: auto;
        }

        .single-blog-box {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: .3s;
            margin-bottom: 30px;
        }

        .single-blog-box:hover {
            transform: translateY(-8px);
        }

        .blog-image img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-content span {
            color: #09ab77;
            font-size: 14px;
            font-weight: 600;
        }

        .blog-content h3 {
            margin: 15px 0;
            font-size: 26px;
            line-height: 34px;
        }

        .blog-content h3 a {
            color: #111;
            text-decoration: none;
        }

        .blog-content p {
            color: #666;
            margin-bottom: 25px;
        }

        .read-btn {
            display: inline-block;
            background: #09ab77;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            transition: .3s;
        }

        .read-btn:hover {
            background: #160d2f;
            color: #fff;
        }

        .sidebar-widget {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 5px 18px rgba(0,0,0,.06);
        }

        .sidebar-widget h4 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .sidebar-widget ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .sidebar-widget ul li {
            margin-bottom: 15px;
        }

        .sidebar-widget ul li a {
            color: #333;
            text-decoration: none;
            transition: .3s;
        }

        .sidebar-widget ul li a:hover {
            color: #09ab77;
        }

        .newsletter-box {
            background: #160d2f;
            color: #fff;
            padding: 40px;
            border-radius: 12px;
        }

        .newsletter-box input {
            width: 100%;
            padding: 14px 18px;
            border: none;
            margin-bottom: 15px;
            border-radius: 6px;
        }

        .newsletter-box button {
            width: 100%;
            border: none;
            background: #09ab77;
            color: #fff;
            padding: 14px;
            border-radius: 6px;
            font-weight: 600;
        }
.blog-details-hero {
    background: linear-gradient(rgba(12,12,30,.78), rgba(12,12,30,.78)),
    url('img/blog-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    text-align: center;
    color: #fff;
    position: relative;
}

.blog-details-hero h1 {
    font-size: 58px;
    line-height: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.blog-meta span {
    color: #ddd;
    font-size: 15px;
    font-weight: 500;
}

.blog-meta i {
    color: #09ab77;
    margin-right: 8px;
}

/* =========================
   BLOG DETAILS AREA
========================= */

.blog-details-area {
    padding: 100px 0;
    background: #fff;
}

.blog-main-image {
    margin-bottom: 40px;
}

.blog-main-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* =========================
   BLOG CONTENT
========================= */

.blog-content {
    position: relative;
}

.blog-content h2 {
    font-size: 42px;
    line-height: 54px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.blog-content h3 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: #111;
    margin-top: 50px;
    margin-bottom: 25px;
}

.blog-content p {
    font-size: 18px;
    line-height: 34px;
    color: #555;
    margin-bottom: 28px;
}

/* =========================
   BLOG LISTS
========================= */

.blog-content ul {
    margin: 25px 0 35px;
    padding: 0;
    list-style: none;
}

.blog-content ul li {
    position: relative;
    padding: 16px 20px 16px 65px;
    margin-bottom: 15px;
    background: #f8f9fc;
    border-radius: 12px;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    font-weight: 500;
    transition: .3s;
    border: 1px solid #edf0f5;
}

.blog-content ul li:hover {
    transform: translateX(5px);
    background: #f3fffb;
    border-color: #09ab77;
}

.blog-content ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #09ab77;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
}

/* =========================
   HIGHLIGHT QUOTE BOX
========================= */

.highlight-box {
    background: linear-gradient(135deg,#f7f9fc,#eef8f5);
    border-left: 5px solid #09ab77;
    padding: 40px;
    border-radius: 14px;
    margin: 45px 0;
    position: relative;
}

.highlight-box:before {
    content: "\f10d";
    font-family: FontAwesome;
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 50px;
    color: rgba(9,171,119,.15);
}

.highlight-box p {
    font-size: 24px;
    line-height: 42px;
    color: #222;
    font-weight: 500;
    margin-bottom: 0;
}

/* =========================
   SIDEBAR
========================= */

.sidebar-widget {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    border: 1px solid #f2f2f2;
}

.sidebar-widget h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #09ab77;
    border-radius: 10px;
}

.sidebar-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 18px;
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar-widget ul li a {
    color: #333;
    font-size: 17px;
    line-height: 30px;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

.sidebar-widget ul li a:hover {
    color: #09ab77;
    padding-left: 5px;
}

/* =========================
   TAGS
========================= */

.tag-list {
    margin-top: 10px;
}

.tag-list a {
    display: inline-block;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333;
    border-radius: 40px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 12px;
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
}

.tag-list a:hover {
    background: #09ab77;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   CTA BOX
========================= */

.cta-box {
    background: linear-gradient(135deg,#160d2f,#1d1550);
    padding: 60px;
    border-radius: 18px;
    margin-top: 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cta-box:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-box h2 {
    color: #fff;
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: #ddd;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.default-btn {
    display: inline-block;
    background: #09ab77;
    color: #fff !important;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.default-btn:hover {
    background: #fff;
    color: #160d2f !important;
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media only screen and (max-width: 991px) {

    .blog-details-hero {
        padding: 150px 0 90px;
    }

    .blog-details-hero h1 {
        font-size: 42px;
        line-height: 56px;
    }

    .blog-content h2 {
        font-size: 34px;
        line-height: 46px;
    }

    .blog-content h3 {
        font-size: 28px;
        line-height: 40px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h2 {
        font-size: 34px;
        line-height: 46px;
    }

}

@media only screen and (max-width: 767px) {

    .blog-details-area {
        padding: 70px 0;
    }

    .blog-details-hero h1 {
        font-size: 32px;
        line-height: 46px;
    }

    .blog-content h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .blog-content h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .blog-content p {
        font-size: 17px;
        line-height: 30px;
    }

    .blog-content ul li {
        padding: 14px 15px 14px 55px;
        font-size: 16px;
    }

    .highlight-box {
        padding: 30px;
    }

    .highlight-box p {
        font-size: 20px;
        line-height: 34px;
    }

    .sidebar-widget {
        padding: 28px;
    }

    .cta-box h2 {
        font-size: 28px;
        line-height: 40px;
    }

}
