
/*----------------------------------------*/
/*  All Custom CSS
/*----------------------------------------*/

.section-divider-gradient {
    height: 1px;
    width: 100%;
    margin: 10px 0;
    background: linear-gradient(to right, transparent, #000000, transparent);
}

.blogpost-wrapper p {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 20px;
}

/*---------------------------------
 blog heading start
---------------------------------*/
.blog-title-only {
    margin-bottom: 10px;
}

    .blog-title-only .sub-title {
        color: var(--atf-thm-white);
        text-transform: capitalize;
        background: var(--atf-thm-color);
        display: inline-block;
        border-radius: 5px;
        padding: 10px 15px;
        outline-offset: -6px;
        outline: 1px solid rgba(255,255,255,0.5);
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 500;
    }

        .blog-title-only .sub-title i {
            margin-right: 5px;
            font-size: 15px;
        }

    .blog-title-only .title {
        font-family: var(--atf-ff-heading);
        color: var(--atf-thm-black);
        font-weight: 700;
        font-size: 50px;
        letter-spacing: -2px;
    }

    .blog-title-only span {
        position: relative;
        color: var(--atf-thm-base);
    }

        .blog-title-only span svg {
            position: absolute;
            bottom: -6px;
            left: 0;
        }
/* Responsive tweaks */
@media (max-width: 991px) {
    .blog-title-only .title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .pt-100.pb-75,
    .atf-section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .blog-title-only br {
        display: none;
    }
}

@media (max-width: 576px) {
    .blog-title-only .title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .pt-100.pb-75,
    .atf-section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.atf-section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.border-left {
    border-left: 3px solid var(--atf-thm-color);
}
/*---------------------------------
 blog heading end
---------------------------------*/
    /*----------------------------------------*/
    /*  blog table start
/*----------------------------------------*/
    table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    table th,
    table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
        vertical-align: top;
    }

    table th {
        background: #f5f5f5;
        font-weight: 600;
    }

    table tbody tr:nth-child(even) {
        background: #fafafa;
    }

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 5px 0 20px 0;
}

    .table-responsive table {
        width: 100%;
        min-width: 700px; /* adjust as needed */
        border-collapse: collapse;
    }
/*----------------------------------------*/
/*  blog table end
/*----------------------------------------*/
/*---------------------------------
 NEXTGEN PREMIUM CTA BUTTON
---------------------------------*/
.nextgen-cta-btn {
    position: relative;
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #f7b500, #ffcc00);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(247, 181, 0, 0.35);
}

    .nextgen-cta-btn span {
        position: relative;
        z-index: 2;
    }

    .nextgen-cta-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        transform: skewX(-25deg);
        transition: all 0.7s ease;
    }

    .nextgen-cta-btn:hover::before {
        left: 130%;
    }

    .nextgen-cta-btn:hover,
    .nextgen-cta-btn:focus {
        background: #111;
        color: #f7b500;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(247, 181, 0, 0.45);
        text-decoration: none;
    }

    .nextgen-cta-btn:active {
        transform: translateY(-2px);
    }

@media (max-width: 767px) {
    .nextgen-cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

.faq-rating-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    font-size: 18px;
}

.rating-stars {
    color: #ffb400;
    font-size: 18px;
    line-height: 1;
}

    .rating-stars i {
        margin-right: 2px;
    }
.faq-rating-card span {
    color: #000;
    font-weight: 500;
}