/*==================================================
BLOG DETAILS BANNER
==================================================*/

.blog-details-banner {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    overflow: hidden;
    margin-top: 69px;
}

.blog-details-banner::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    background: rgba(0, 123, 255, .05);
    border-radius: 50%;
}

.blog-details-banner::after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    background: rgba(13, 110, 253, .04);
    border-radius: 50%;
}

.blog-banner-content {
    position: relative;
    z-index: 2;
}

.blog-category {
    display: inline-block;
    padding: 8px 18px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 22px;
}

.blog-banner-content h1 {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 700;
    color: #0b1d37;
    margin-bottom: 30px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.blog-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 15px;
}

.blog-meta li i {
    color: #0d6efd;
}

.breadcrumb-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.breadcrumb-wrap a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.breadcrumb-wrap a:hover {
    color: #0a58ca;
}

.breadcrumb-wrap span {
    color: #777;
}

.banner-image {
    text-align: center;
}

.banner-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}


/*==================================================
BLOG DETAILS SECTION
==================================================*/

.blog-details-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-details-left {
    background: #fff;
}

.featured-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}


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

.blog-content {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

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

.blog-content h2 {
    font-size: 34px;
    color: #0b1d37;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 28px;
    color: #0b1d37;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
}

.blog-content img {
    width: 100%;
    border-radius: 18px;
    margin: 35px 0;
}

.blog-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.blog-content ul li {
    margin-bottom: 14px;
    color: #444;
    font-size: 17px;
}

.blog-content ol {
    margin: 25px 0;
    padding-left: 20px;
}

.blog-content ol li {
    margin-bottom: 14px;
}

.blog-content strong {
    color: #0b1d37;
}

.blog-content a {
    color: #0d6efd;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}


/*==================================================
BLOCKQUOTE
==================================================*/

.blog-content blockquote {
    margin: 45px 0;
    padding: 35px;
    background: #f5f9ff;
    border-left: 5px solid #0d6efd;
    border-radius: 15px;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #0b1d37;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}


/*==================================================
BLOG TAGS & SHARE
==================================================*/

.blog-tags-share {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-tags a {
    padding: 10px 18px;
    background: #f2f5fa;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s;
    font-size: 14px;
    font-weight: 600;
}

.blog-tags a:hover {
    background: #0d6efd;
    color: #fff;
}

.blog-share {
    display: flex;
    gap: 12px;
}

.blog-share a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
}

.blog-share a:hover {
    transform: translateY(-5px);
    background: #0b5ed7;
}


/*==================================================
AUTHOR BOX
==================================================*/

.author-box {
    margin-top: 60px;
    padding: 35px;
    border-radius: 20px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.author-box h4 {
    font-size: 28px;
    color: #0b1d37;
    margin-bottom: 10px;
    font-weight: 700;
}

.author-box p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


/*==================================================
CONTENT SPACING
==================================================*/

.blog-details-left>*:last-child {
    margin-bottom: 0;
}

.blog-content>*:last-child {
    margin-bottom: 0;
}

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

.blog-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sidebar-widget {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
}

.sidebar-widget h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1d37;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: #0d6efd;
    border-radius: 30px;
}


/*==================================================
SEARCH FORM
==================================================*/

.sidebar-widget form {
    position: relative;
}

.sidebar-widget input {
    width: 100%;
    height: 58px;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    padding: 0 65px 0 20px;
    outline: none;
    transition: .3s;
    font-size: 15px;
}

.sidebar-widget input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .15);
}

.sidebar-widget button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.sidebar-widget button:hover {
    background: #0b5ed7;
}


/*==================================================
SERVICES LIST
==================================================*/

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

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

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

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8f9fb;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.sidebar-widget ul li a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.sidebar-widget ul li a:hover {
    background: #0d6efd;
    color: #fff;
    padding-left: 24px;
}


/*==================================================
RECENT POSTS
==================================================*/

.recent-post {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ededed;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post img {
    width: 95px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.recent-post div {
    flex: 1;
}

.recent-post a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #0b1d37;
    text-decoration: none;
    transition: .3s;
}

.recent-post a:hover {
    color: #0d6efd;
}

.recent-post span {
    display: inline-block;
    margin-top: 8px;
    color: #888;
    font-size: 14px;
}


/*==================================================
APPOINTMENT WIDGET
==================================================*/

.appointment-widget {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.appointment-widget::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.appointment-widget::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.appointment-widget h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.appointment-widget p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.theme-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 210px;
    height: 55px;
    background: #fff;
    color: #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
    position: relative;
    z-index: 2;
}

.theme-btn:hover {
    background: #0b1d37;
    color: #fff;
}


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

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


/*==================================================
CUSTOM SCROLLBAR
==================================================*/

.blog-sidebar::-webkit-scrollbar {
    width: 6px;
}

.blog-sidebar::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 30px;
}

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

/*=============================
Large Laptop
=============================*/

@media (max-width: 1399px) {

    .blog-details-banner {
        padding: 80px 0;
    }

    .blog-banner-content h1 {
        font-size: 42px;
    }

    .blog-content h2 {
        font-size: 30px;
    }

    .blog-content h3 {
        font-size: 26px;
    }

    .sidebar-widget {
        padding: 25px;
    }

    .author-box {
        padding: 30px;
    }

}


/*=============================
Laptop
=============================*/

@media (max-width:1199px) {

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

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

    .blog-banner-content h1 {
        font-size: 38px;
    }

    .blog-meta {
        gap: 15px;
    }

    .blog-content {
        font-size: 16px;
    }

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

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

    .blog-content blockquote {
        padding: 30px;
        font-size: 20px;
    }

    .author-box {
        gap: 20px;
    }

    .author-box img {
        width: 100px;
        height: 100px;
    }

    .author-box h4 {
        font-size: 24px;
    }

    .sidebar-widget h4 {
        font-size: 22px;
    }

    .recent-post img {
        width: 80px;
        height: 70px;
    }

    .theme-btn {
        min-width: 190px;
    }

}


/*=============================
Tablet
=============================*/

@media (max-width:991px) {

    .blog-details-banner {
        padding: 60px 0;
    }

    .blog-banner-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .banner-image {
        margin-top: 20px;
    }

    .banner-image img {
        max-width: 100%;
    }

    .blog-banner-content h1 {
        font-size: 34px;
    }

    .blog-meta {
        justify-content: center;
    }

    .breadcrumb-wrap {
        justify-content: center;
    }

    .blog-details-section {
        padding: 60px 0;
    }

    .blog-details-left {
        margin-bottom: 50px;
    }

    .blog-sidebar {
        position: static;
        top: auto;
    }

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

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

    .blog-content blockquote {
        padding: 25px;
        font-size: 20px;
    }

    .blog-tags-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box img {
        margin-bottom: 10px;
    }

    .sidebar-widget {
        margin-bottom: 25px;
    }

    .recent-post {
        align-items: flex-start;
    }

}


/*=============================
Mobile
=============================*/

@media (max-width:767px) {

    .blog-details-banner {
        padding: 50px 0;
        margin-top: 0px;
    }

    .blog-banner-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .blog-category {
        font-size: 13px;
        padding: 7px 16px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .breadcrumb-wrap {
        gap: 8px;
        font-size: 14px;
    }

    .blog-details-section {
        padding: 50px 0;
    }

    .featured-img {
        border-radius: 15px;
        margin-bottom: 25px;
    }

    .blog-content {
        font-size: 15px;
        line-height: 1.9;
    }

    .blog-content h2 {
        font-size: 24px;
        margin-top: 35px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-content img {
        border-radius: 15px;
        margin: 25px 0;
    }

    .blog-content ul li,
    .blog-content ol li {
        font-size: 15px;
    }

    .blog-content blockquote {
        padding: 20px;
        font-size: 18px;
    }

    .blog-tags {
        gap: 10px;
    }

    .blog-tags a {
        padding: 8px 15px;
        font-size: 13px;
    }

    .blog-share {
        width: 100%;
        justify-content: flex-start;
    }

    .blog-share a {
        width: 42px;
        height: 42px;
    }

    .author-box {
        padding: 25px 20px;
    }

    .author-box img {
        width: 90px;
        height: 90px;
    }

    .author-box h4 {
        font-size: 22px;
    }

    .author-box p {
        font-size: 15px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .sidebar-widget h4 {
        font-size: 20px;
    }

    .sidebar-widget input {
        height: 52px;
        font-size: 14px;
    }

    .sidebar-widget button {
        width: 42px;
        height: 42px;
    }

    .sidebar-widget ul li a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .recent-post {
        gap: 12px;
    }

    .recent-post img {
        width: 75px;
        height: 65px;
    }

    .recent-post a {
        font-size: 15px;
    }

    .recent-post span {
        font-size: 13px;
    }

    .appointment-widget h3 {
        font-size: 24px;
    }

    .appointment-widget p {
        font-size: 15px;
    }

    .theme-btn {
        width: 100%;
        min-width: 100%;
        height: 52px;
    }

}


/*=============================
Small Mobile
=============================*/

@media (max-width:575px) {

    .blog-banner-content h1 {
        font-size: 24px;
    }

    .blog-content h2 {
        font-size: 22px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content blockquote {
        font-size: 16px;
    }

    .blog-tags-share {
        gap: 20px;
    }

    .blog-share {
        flex-wrap: wrap;
    }

    .blog-share a {
        width: 40px;
        height: 40px;
    }

    .author-box {
        border-radius: 15px;
    }

    .sidebar-widget {
        border-radius: 15px;
    }

    .theme-btn {
        font-size: 15px;
    }

}


/*=============================
Extra Small Mobile
=============================*/

@media (max-width:420px) {

    .blog-banner-content h1 {
        font-size: 22px;
    }

    .blog-category {
        font-size: 12px;
    }

    .blog-meta li {
        font-size: 13px;
    }

    .blog-content {
        font-size: 14px;
    }

    .blog-content h2 {
        font-size: 20px;
    }

    .blog-details-banner {
        margin-top: 0px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content blockquote {
        padding: 18px;
        line-height: 1.7;
    }

    .author-box img {
        width: 80px;
        height: 80px;
    }

    .author-box h4 {
        font-size: 20px;
    }

    .sidebar-widget h4 {
        font-size: 18px;
    }

    .recent-post img {
        width: 65px;
        height: 60px;
    }

    .theme-btn {
        height: 50px;
    }

}

/*==================================
COMMENTS
==================================*/

.blog-comments-section {
    margin-top: 70px;
}

.comments-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
}

.single-comment {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ececec;
}

.comment-image img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-top h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.comment-top span {
    color: #777;
    font-size: 14px;
}

.reply-btn {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.comment-content p {
    margin: 0;
    line-height: 1.8;
}

.comment-reply {
    margin-left: 90px;
}

.leave-comment {
    margin-top: 60px;
    padding: 40px;
    border-radius: 20px;
    background: #f8fbff;
}

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

.form-control {
    height: 55px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
    resize: none;
    padding-top: 15px;
}

.comment-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.comment-btn:hover {
    background: #0b5ed7;
}

/*====================
Responsive
====================*/

@media(max-width:767px) {

    .single-comment {
        flex-direction: column;
    }

    .comment-reply {
        margin-left: 30px;
    }

    .comment-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .leave-comment {
        padding: 25px;
    }

    .comments-title h2 {
        font-size: 28px;
    }

}