    section.bannersection {
        min-height: 70vh;
        height: 70vh;
    }

    section.blog-banner-section .banner-main h1 {
        max-width: 1200px;
        font-size: 45px;
    }

    .search-box {
        position: relative;
        width: 350px;
        height: 48px;
        display: flex;
        align-items: center;
        padding: 0 20px;
        border-radius: 12px;
        background: rgba(248, 249, 251, 0.48);
        margin: 50px auto;
    }

    /* Gradient border using ::before */
    .search-box::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 1px;
        background: linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .search-box input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 16px;
        color: #676767;
    }

    .search-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 20px;
    }

    .span-head-blog {
        margin-bottom: 0px;
    }

    /* section-three-start */
    section.section-three {
        padding: 40px 0px 80px 0px;
    }

    .blog-card {
        border: 0.432px solid #DBDBDB;
        border-radius: 6px;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
        margin-top: 10px;
        height: 100%;
    }

    .blog-card:hover {
        box-shadow: 0 2px 20.8px 0 rgb(10 185 248 / 26%);
    }


    .blog-card .card-body h3 {
        color: #4D4D4D;
        font-size: 18px;
        font-weight: 600;
        padding-top: 10px;
    }

    .blog-card p {
        font-size: 14px;
        color: #4D4D4D;
        margin-bottom: 17px;
        height: 90px;
        line-height: 2;
    }

    .blog-card-body {
        padding-bottom: 5px;
    }

    .card-body-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 15px;
    }

    .card-body-button span {
        color: #4D4D4D;
        font-size: 16px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.043px;
    }

    img.card-img-top {
        padding: 20px 20px 0;
        border-radius: 20px;
    }

    /* tap */
    .tabs2 {
        display: flex;
        justify-content: center;
        padding-top: 10px;
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
    }

    .tab2 {
        padding: 10px 25px;
        margin: 0 5px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
        border-radius: 14px;
        border: 1px solid #E9E9E9;
        background: #FFF;
        color: #0081F1;
        width: 150px;
        text-align: center;
    }

    .tab2.active {
        color: #fff;
        font-weight: 600;
        border-radius: 14px;
        background: #0081F1;
    }

    /* .tab2.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 40px;
    border-radius: 2px;
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
} */

    .tab2:hover {
        background: linear-gradient(92deg, #0460E9 -14.55%, #0AB9F8 59.9%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tab2-content {
        display: none;
        margin-top: 30px;
        overflow: hidden;
    }

    .tab2-content.active {
        display: block;
    }

    .pagination-container {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .pagination {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        margin: 0;
    }

    .page-item,
    .page-dots {
        font-size: 17px;
        cursor: pointer;
        color: #676767;
        font-weight: 500;

    }

    .page-item.active span.page-link {
        background: linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%);
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
    }

    .page-item:hover span.page-link {
        background: var(--grade-5, linear-gradient(90deg, #0882EB -11.09%, #24B4E8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .page-link {
        border-radius: 4px;
    }

    .card.blog-card img {
        width: 100%;
        height: auto;
    }

    .blog-card p {
        height: auto;
    }

    @media (max-width: 768px) {
        section.section-three {
            padding: 20px 0px 40px 0px;
        }

        .pagination-container {
            margin-top: 15px;
        }

        .page-item,
        .page-dots {
            font-size: 15px;
        }

        .search-box {
            width: 300px;
        }
    }



    /* section-three-end */


    /* section-blog-cta-start */
    .section-blog-cta {
        padding: 30px 60px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        margin: 40px 0;
        position: relative;
        overflow: hidden;
        background-image: url(../img/blog/Cta-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        flex-direction: column;
        gap: 15px;
    }

    .blog-cta-content h2 {
        font-size: 45px;
        font-weight: 700;
        margin: 0 0 10px;
        text-align: center;
    }

    .blog-cta-content p {
        font-size: 22px;
        opacity: 0.9;
        margin: 0;
        text-align: center;
    }

    .blog-cta-icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .-blog-icon img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        padding: 5px;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px;
        transition: 0.3s;
    }

    .-blog-icon img:hover {
        transform: scale(1.08);
    }

    .blog-cta-icons a:hover {
        transform: scale(1.05);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .section-blog-cta {
            flex-direction: column;
            text-align: center;
            gap: 25px;
            padding: 30px;
        }

        .blog-cta-content h2 {
            font-size: 32px;
        }
    }

    /* section-blog-cta-end */

    /* vinoth-start */

    .author-box {
        padding: 15px 0px;
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .author-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-info {
        text-align: start;
    }

    .author-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50px;
        border: 1.645px solid #F2F8FD;
        background: radial-gradient(70.57% 70.57% at 50% 50%, #FFF 50%, #A1D3FF 100%);
    }

    .author-info h3 {
        font-size: 22px;
        margin: 0px;
        font-weight: 600;
        color: #676767;
    }

    .author-info p {
        font-size: 18px;
        color: #6D6E76;
        padding-top: 5px;
    }

    .read-time {
        background: #ffffff;
        padding: 8px 20px;
        border-radius: 90px;
        font-size: 15px;
        color: #4D4D4D;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    /* Responsive */
    @media(max-width: 600px) {
        /* .author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    } */

        .read-time {
            align-self: flex-start;
        }

        section.bannersection {
            min-height: auto;
            height: auto;
        }
    }

    /* vinoth-end */

    /* section-blog-start */
    section.section-blog-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .issticky {
        position: sticky;
        top: 100px;
        animation: .2s ease-out slideDown;
        z-index: 99;
        max-height: fit-content;
    }

    .issticky .Common-fixed {
        position: sticky;
        top: 100px;
        animation: .2s ease-out slideDown;
        z-index: 99;
        padding: 5px 0px;
        height: auto;
        background: #fff;
    }

    .article-main-column1-haeding {
        border-radius: 7px;
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        color: #FFF;
        padding: 12px 20px;
        max-width: 280px;
    }

    .article-main-column1-haeding-text {
        display: flex;
        justify-content: start;
        flex-direction: column;
        /* overflow: overlay; */
        height: 100%;
        border-radius: 12px;
        padding: 20px 0;
        scroll-behavior: smooth;
        overflow-y: auto;
    }

    .toc {
        max-width: 380px;
    }

    .article-main-column1-haeding-text a {
        color: rgba(0, 0, 0, 0.57);
        font-size: 16px;
        font-weight: 400;
        line-height: 25px;
    }

    .article-main-column1-haeding-text ul {
        padding-left: 0rem;
    }

    .article-main-column1-haeding-text li.first.last {
        list-style-type: none;
    }

    .article-main-column1-haeding-text li {
        padding: 8px 0px;
        display: flex;
        align-items: center;
        /* justify-content: center; */
    }

    .article-main-column1-haeding-text li img {
        display: none;
    }

    .article-main-column1-haeding-text li:hover img {
        display: block;
    }

    .blog-toc .toc-link.active img {
        display: block;
    }

    .article-main-column2-heading ul {
        list-style: disc;
        margin-left: 30px;
        padding-left: 0;
    }

    .article-main-column2-heading-image {
        padding: 40px 0;
        text-align: center;
    }

    .article-main-column2-heading-image img {
        width: 100%;
        height: 100%;
    }

    .article-main-column2-heading h2 {
        color: var(--Type-color, #000);
        font-size: 28px;
        font-weight: 600;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .article-main-column2-heading h3 {
        color: var(--Type-color, #000);
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 0;
        padding-top: 15px;
    }

    .article-main-column2-heading p {
        color: #676767;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .article-main-column2 .content p {
        margin-bottom: 30px;
        color: #000;
        line-height: 1.5;
        font-size: 17px;
    }

    .article-main-column2 .content h2 {
        font-size: 32px;
        color: #000;
        background: linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;

    }

    .article-main-column2 .content h3 {
        font-size: 26px;
    }

    .article-main-column2 .content li {
        list-style: circle;
    }

    .article-main-column2 .content h2,
    .article-main-column2 .content h3,
    .article-main-column2 .content h4 {
        margin-bottom: 20px;
    }

    .article-main-column2 tbody p {
        padding: 20px 20px 0px 20px;
    }

    .article-main-column2 .content ul {
        margin: 20px 0px;
    }

    .article-main-column2 table {
        margin-bottom: 30px;
    }

    .blog-toc {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .blog-toc .toc-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(0, 0, 0, 0.57);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 6px 8px;
        border-radius: 6px;
    }

    .blog-toc .toc-link img {
        border-radius: 50%;
    }

    .blog-toc .toc-link .arrow {
        margin-left: auto;
        transition: transform 0.3s ease, color 0.3s ease;
        opacity: 0;
    }

    .blog-toc .toc-link.active .arrow {
        opacity: 1;
    }

    /* Hover */
    .blog-toc .toc-link:hover {
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .blog-toc .toc-link:hover .arrow {
        transform: translateX(4px);
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Active Item */
    .blog-toc .toc-link.active {
        color: #0460E9;
        font-weight: 600;
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .blog-toc .toc-link.active .arrow {
        color: #0460E9;
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .takeaways-box {
        border-left: 5px solid #0081F1;
        padding: 20px 25px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 80, 255, 0.08);
        border-radius: 14px;
        background: linear-gradient(268deg, #EBF6FF -1.69%, #FFF 136.9%);
    }

    .takeaways-box h3 {
        margin: 0 0 12px;
        color: #1877ff;
        font-size: 17px;
        font-weight: 600;
        background: var(--fourchain, linear-gradient(90deg, #0460E9 -11.09%, #0AB9F8 101.23%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .takeaways-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
        column-count: 2;
        column-gap: 40px;
        margin-top: 20px;
    }

    .takeaways-box ul li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 18px;
        font-size: 15px;
        color: #676767;
    }

    /* Custom bullet */
    .takeaways-box ul li::before {
        content: "•";
        color: #1877ff;
        position: absolute;
        left: 0;
        font-size: 18px;
        line-height: 14px;
    }

    .toc li::before {
        content: "";
        width: 30px;
        height: 30px;
        background-image: url('/img/blog/content-img.webp');
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: 4px;
        flex-shrink: 0;
        opacity: 0;
    }

    .toc li:has(a.active)::before {
        opacity: 1;
    }

    .article-main-column1-haeding-text li.first.last::before {
        display: none;
    }

    /* Responsive */
    @media (max-width: 990px) {
        .blog-toc .toc-link {
            font-size: 14px;
        }

        .issticky {
            top: 62px;
            display: none;
        }

        .takeaways-box ul {
            column-count: auto;

        }

        .article-main-column2 .content h2 {
            font-size: 26px;
        }

        .article-main-column2 .content h3 {
            font-size: 22px;
        }

        .article-main-column2 .content h4 {
            font-size: 18px;
        }

        .article-main-column2 .content h5 {
            font-size: 17px;
        }
    }

    @media (max-width: 1440.98px) {
        .article-main-column1-haeding-text {
            max-height: 400px;
        }
    }

    @media (min-width: 1440.98px) and (max-width: 2024px) {
        .article-main-column1-haeding-text {
            max-height: 500px;
        }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .tab2-content .col-md-6 {
            width: 47%;
        }
    }

    /* section-blog-end */