    section.bannersection::after {
        background-image: url(../img/blog/blog-bg-img.png);
        z-index: -1;
    }

    section.inner-blog-banner-section::after {
        background-image: url(../img/blog/blog-inner-bg-img.png);
        z-index: -1;
    }

    section.inner-blog-banner-section .banner-main {
        padding-bottom: 10px;
    }

    .banner-main {
        padding-left: 30px;
        padding-top: 10px;
        padding-bottom: 100px;
    }

    section.bannersection {
        min-height: 70vh;
        height: 400px;
    }

    @media (max-width: 991.98px) {
        .banner-main {
            padding-bottom: 10px;
            padding-left: 0px;
        }
    }

    section.blog-banner-section .banner-main h1 {
        max-width: 1200px;
        font-size: 45px;
    }

    /* section-three-start */
    section.section-three {
        padding: 40px 0px 80px 0px;
    }

    .blog-card {
        overflow: hidden;
        transition: box-shadow 0.3s ease;
        margin-top: 10px;
        height: 100%;
        border-radius: 12px;
        border: 1.2px solid rgb(190 159 222 / 24%);
        background: var(--black-gray, linear-gradient(180deg, #0F0F0F 0%, #000 100%));
    }

    .blog-card:hover {
        box-shadow: 0 2px 20.8px 0 rgba(103, 121, 226, 0.26);
    }


    .blog-card .card-body h3 {
        font-size: 20px;
        font-weight: 600;
        padding-top: 10px;
        min-height: 60px;
        color: #fff;
    }

    .blog-card p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 0;
        line-height: 2;
        min-height: 100px;
    }

    .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: 10px 10px 0;
        border-radius: 20px;
    }


    /* tab2-start */
    .tabs2 {
        display: flex;
        justify-content: center;
        padding-top: 10px;
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
        padding-bottom: 50px;
    }


    .tab2 {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-width: 220px;
        height: 52px;
        padding: 0 25px;
        color: #ffffff;
        background: #080b1b;
        border: 1px solid #0460e9;
        border-radius: 999px;
        font-family: "Satoshi", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        isolation: isolate;
        transition: border-color 0.4s ease, transform 0.4s ease;
    }

    .tab2::before {
        content: "";
        position: absolute;
        top: 0;
        left: -12px;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #0460e9 0%, #0ab9f8 100%);
        transform: skewX(15deg);
        transition: width 0.55s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: -1;
    }

    .tab2::after {
        content: "";
        position: absolute;
        top: 0;
        right: -12px;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #0460e9 0%, #0ab9f8 100%);
        transform: skewX(15deg);
        transition: width 0.55s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: -1;
    }

    .tab2 span {
        position: relative;
        z-index: 2;
        color: #ffffff;
        transition:
            color 0.35s ease,
            transform 0.4s ease;
    }

    .tab2:hover,
    .tab2:active {
        color: #ffffff;
        text-decoration: none;
        border-color: #0ab9f8;
        transform: translateY(-2px);
    }

    .tab2:hover::before,
    .tab2:hover::after,
    .tab2:active::before,
    .tab2:active::after {
        width: 58%;
    }

    .tab2:hover span,
    .tab2:active span {
        color: #ffffff;
    }

    .tab2 .arrow {
        position: relative;
        z-index: 2;
        font-size: 18px;
        line-height: 1;
        transition:
            transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .tab2:hover .arrow,
    .tab2:active .arrow {
        transform: translate(4px, -3px);
    }

    .tab2:active {
        transform: translateY(0);
    }

    .tab2:focus-visible {
        outline: 2px solid #0ab9f8;
        outline-offset: 4px;
    }

    .tab2.active {
        border-color: #0ab9f8;
        color: #ffffff;
    }

    .tab2.active::before,
    .tab2.active::after {
        width: 58%;
    }

    .tab2.active span,
    .tab2.active .arrow {
        color: #ffffff;
    }

    .tab2-content {
        display: none;
    }

    .tab2-content.active {
        display: block;
    }

    @media (max-width: 768px) {

        .tab2 {
            min-width: 200px;
            height: 50px;
            padding: 0 22px;
            font-size: 14px;
        }

        .tab2 .arrow {
            font-size: 17px;
        }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {

        .tab2,
        .tab2::before,
        .tab2::after,
        .tab2 span,
        .tab2 .arrow {
            transition: none;
        }

        .tab2:hover,
        .tab2:active {
            transform: none;
        }

        .tab2:hover .arrow,
        .tab2:active .arrow {
            transform: none;
        }
    }

    /* tab2-end */

    .pagination-container {
        margin-top: 50px;
        display: flex;
        justify-content: center;
    }

    .pagination {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        margin: 0;
    }

    .page-item {
        font-size: 17px;
        cursor: pointer;
        color: #1B1B1B;
        font-weight: 500;
        background: #FDFDFD;
    }

    .page-dots {
        font-size: 17px;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
    }

    .page-item.active {
        color: #ffffff;
        background: linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%);
        border-radius: 6px;
        padding: 6px 14px;
    }

    .page-item {
        padding: 6px 10px;
        border-radius: 6px;
        transition: color 0.3s ease, background 0.3s ease;
    }

    .page-item:hover:not(.active) {
        color: #fff;
        background: linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%);
    }

    .card.blog-card img {
        width: 100%;
        height: auto;
        border-bottom: 1.2px solid rgb(190 159 222 / 24%);
    }

    @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 */


    /* 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: rgba(255, 255, 255, 0.95);
    }

    .author-info p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.95);
        padding-top: 5px;
    }

    .read-time {
        background: #9fe267;
        padding: 8px 20px;
        border-radius: 90px;
        font-size: 15px;
        color: #000;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    /* Responsive */
    @media(max-width: 600px) {
        .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;
        margin-bottom: 100px;
    }

    .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;
    } */

    .issticky .Common-fixed {
        position: sticky;
        top: 100px;
        z-index: 99;
        padding: 5px;
        height: auto;
        border-radius: 0px;
        border: 0;
        background:
            linear-gradient(180deg,
                #0F0F0F 0%,
                #000 100%);
        isolation: isolate;
        animation:
            slideDown 0.2s ease-out;
        margin-top: 20px;
        max-width: 500px;
    }


    .issticky .Common-fixed::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        padding: 3px 0px 0px 0px;
        border-radius: 0;
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, 0) 0%,
                #717171 46.63%,
                rgba(0, 0, 0, 0) 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .issticky .Common-fixed::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        border-radius: 9.088px;
        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(113, 113, 113, 0.25) 46.63%,
                transparent 100%);
        filter: blur(8px);
        opacity: 0.5;
        pointer-events: none;
    }



    @keyframes slideDown {
        from {
            opacity: 0;

            transform:
                translateY(-10px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0);
        }
    }

    .article-main-column1-haeding {
        padding: 12px 20px;
        max-width: 280px;
        color: #fff;
    }

    .article-main-column1-haeding p {
        font-size: 20px;
        font-weight: 700;
    }

    .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: #FFF;
        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;
        color: #3a1bc5;
    }

    .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 {
        position: relative;
        color: #fff;
        font-size: 28px;
        font-weight: 600;
        padding-top: 20px;
        padding-bottom: 10px;
        margin: 0;
        display: block;
        max-width: fit-content;
    }

    .article-main-column2-heading h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #717171 46.63%, rgba(0, 0, 0, 0.00) 100%);
        background-size: 200% 100%;
        background-position: 0% 50%;
        pointer-events: none;
    }

    .article-main-column2-heading h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 0;
        padding-top: 15px;
    }

    .article-main-column2-heading p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        padding-top: 10px;
        padding-bottom: 10px;

    }

    .article-main-column2 .content p {
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.5;
        font-size: 17px;
    }

    .article-main-column2 .content h2,
    .article-main-column2 .content h1 {
        background: #fff;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        color: #fff;

    }

    .article-main-column2 .content h2 {
        font-size: 28px;
    }

    .article-main-column2 .content h1 {
        font-size: 36px;
    }

    .article-main-column2 .content h3 {
        font-size: 26px;
    }

    .article-main-column2 .content li {
        list-style: circle;
        color: rgba(255, 255, 255, 0.95);
    }



    .article-main-column2 .content h1,
    .article-main-column2 .content h2,
    .article-main-column2 .content h3,
    .article-main-column2 .content h4 {
        margin-bottom: 20px;
        color: #fff;
    }

    .article-main-column2 .content a {
        background: var(--gra-26, linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .article-main-column2 tbody p {
        padding: 20px 20px 0px 20px;
    }

    .article-main-column2 .content ul {
        margin: 20px;
    }

    .article-main-column2 table {
        margin-bottom: 30px;
    }

    .blog-toc {
        list-style: disc;
        margin-left: 30px;
        padding-left: 0;
        color: #FFF;
    }

    .blog-toc .toc-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #FFF;
        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(--gra-26, linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .blog-toc .toc-link:hover .arrow {
        transform: translateX(4px);
        background: var(--gra-26, linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%));
        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(--gra-26, linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .blog-toc .toc-link.active .arrow {
        color: #0460E9;
        background: var(--gra-26, linear-gradient(223deg, #078EEE 1.13%, #9A48EA 100%));
        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;
        margin-top: 20px;
    }

    .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: rgba(255, 255, 255, 0.95);
    }

    /* 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-img1.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 h1 {
            font-size: 28px;
        }

        .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 */

    /*section-latest-blog-start */

    section.section-latest-blog {
        background: #0B0B0B;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section.section-latest-blog h2 {
        color: #FFF;
        text-shadow: 0 4px 32px rgba(0, 0, 0, 0.30);
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 66.6px;
        letter-spacing: -0.4px;
        padding-bottom: 10px;
    }

    section.section-all-blog {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    section.section-all-blog h2 {
        color: #FFF;
        text-shadow: 0 4px 32px rgba(0, 0, 0, 0.30);
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 66.6px;
        letter-spacing: -0.4px;
        padding-bottom: 10px;
    }

    /*section-latest-blog-end */


    /* section-blg-cta-start */
    .blog-cta-section {
        position: relative;
        width: 100%;
        min-height: 430px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        isolation: isolate;
        padding-top: 60px;
    }

    .blog-cta-container {
        position: relative;
        width: 100%;
        height: 500px;
        margin: 0 auto;
        overflow: hidden;
        isolation: isolate;
    }

    .blog-cta-container::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background-image:
            url("../img/blog/blog-cta-bg-img.png");
        background-repeat: no-repeat;
        background-position:
            center center;
        background-size: 100% 100%;
        transform:
            scale(1);
        transform-origin:
            center center;
        filter:
            brightness(0.95) saturate(1.15);
        /* animation:
            blogCtaBackgroundAnimation 10s ease-in-out infinite; */
    }

    .blog-cta-container::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background:
            radial-gradient(ellipse at center top,
                transparent 20%,
                rgba(0, 0, 0, 0.12) 50%,
                rgba(0, 0, 0, 0.55) 100%);
    }


    .blog-cta-content {
        position: absolute;
        top: 30%;
        left: 50%;
        z-index: 5;
        width: min(90%, 850px);
        transform: translateX(-50%);
        text-align: center;
        animation:
            blogCtaContentReveal 1s ease-out both;
    }

    .blog-cta-content h2 {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: clamp(25px, 3.3vw, 45px);
        line-height: 1.18;
        font-weight: 700;
        letter-spacing: -0.7px;
        text-align: center;
        text-wrap: balance;
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
        animation: blogCtaTitleAnimation 1.2s ease-out both;
    }

    .blog-cta-content h2 span {
        display: block;
    }

    .blog-cta-content a {
        position: relative;
        display: inline-block;
        margin: 40px 0 0;
        padding: 0;
        color: #fff;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: 0;
        text-align: center;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .blog-cta-content a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -5px;
        width: 0;
        height: 1px;
        transform: translateX(-50%);
        background:
            #0460E9;

        box-shadow:
            0 0 8px rgba(55, 135, 255, 0.7);
        transition:
            width 0.35s ease;
    }

    .blog-cta-content a:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .blog-cta-content a:hover::after {
        width: 100%;
    }

    .blog-cta-socials {
        position: absolute;
        left: 50%;
        bottom: 20%;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transform: translateX(-50%);
    }

    .section-blog-cta-social {
        position: relative;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        border:
            1px solid rgba(255, 255, 255, 0.18);
        border-radius: 22px;
        background: linear-gradient(95deg, rgba(107, 112, 121, 0.02) -8.34%, rgba(167, 173, 185, 0.02) 11.21%, rgba(198, 204, 214, 0.02) 37.77%, rgba(220, 225, 235, 0.02) 45.65%, rgba(192, 197, 208, 0.02) 54.31%, rgba(167, 173, 185, 0.02) 74.91%, rgba(136, 141, 150, 0.02) 95.91%);
        backdrop-filter:
            blur(8px);
        -webkit-backdrop-filter:
            blur(8px);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.015);
        text-decoration: none;
        cursor: pointer;
        opacity: 0;
        transform:
            translateY(12px) scale(0.9);
        animation:
            blogCtaSocialReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        transition:
            transform 0.35s ease,
            border-color 0.35s ease,
            background 0.35s ease,
            box-shadow 0.35s ease;
    }

    .section-blog-cta-social:nth-child(1) {
        animation-delay: 0.35s;
    }

    .section-blog-cta-social:nth-child(2) {
        animation-delay: 0.48s;
    }

    .section-blog-cta-social:nth-child(3) {
        animation-delay: 0.61s;
    }


    .section-blog-cta-social::before {
        content: "";
        position: absolute;
        top: -35px;
        left: -35px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background:
            radial-gradient(circle,
                rgba(45, 130, 255, 0.5) 0%,
                rgba(30, 100, 220, 0.15) 45%,
                transparent 72%);
        filter:
            blur(12px);
        opacity: 0;
        pointer-events: none;
        transition:
            top 0.5s ease,
            left 0.5s ease,
            opacity 0.5s ease;
    }

    .section-blog-cta-social-img {
        position: relative;
        z-index: 3;
        display: block;
        width: 35px;
        height: 35px;
        object-fit: contain;
        object-position: center;
        filter:
            brightness(0) invert(1);
        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            filter 0.35s ease;
    }

    .section-blog-cta-social:hover {
        transform: translateY(-5px) scale(1.04);
        border-color: rgb(157 152 168 / 85%);
        background: linear-gradient(145deg, rgb(95 97 144), rgba(255, 255, 255, 0.035));
        box-shadow: 0 0 8px rgb(145 0 255 / 0%), 0 0 22px rgba(0, 105, 255, 0.18), inset 0 0 12px rgba(40, 125, 255, 0.08);
    }


    .section-blog-cta-social:hover::before {
        top: 2px;
        left: 2px;
        opacity: 1;
    }

    .section-blog-cta-social:hover .section-blog-cta-social-img {
        opacity: 1;
        transform:
            scale(1.18);
        filter:
            brightness(0) invert(1) drop-shadow(0 0 5px rgba(70, 150, 255, 0.9));
    }

    .section-blog-cta-social:active {
        transform:
            translateY(-2px) scale(0.95);
    }


    .blog-cta-container .blog-cta-light {
        position: absolute;
        left: 50%;
        bottom: -10px;
        z-index: 3;
        width: 70%;
        height: 70px;
        transform: translateX(-50%);
        border-radius: 50%;
        background:
            radial-gradient(ellipse,
                rgba(30, 120, 255, 0.55),
                transparent 70%);

        filter:
            blur(25px);
        pointer-events: none;
        animation:
            blogCtaLightPulse 4s ease-in-out infinite;
    }

    /* 
    @keyframes blogCtaBackgroundAnimation {

        0% {
            transform:
                scale(1) translate3d(0, 0, 0);

            filter:
                brightness(0.92) saturate(1.1);
        }

        50% {
            transform:
                scale(1.035) translate3d(0, 5px, 0);

            filter:
                brightness(1) saturate(1.25);
        }

        100% {
            transform:
                scale(1.06) translate3d(0, 0, 0);

            filter:
                brightness(0.94) saturate(1.15);
        }
    } */

    @keyframes blogCtaContentReveal {

        from {
            opacity: 0;

            transform:
                translateX(-50%) translateY(18px);
        }

        to {
            opacity: 1;

            transform:
                translateX(-50%) translateY(0);
        }
    }


    @keyframes blogCtaTitleAnimation {
        from {
            opacity: 0;

            transform:
                translateY(12px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0);
        }
    }

    @keyframes blogCtaSocialReveal {

        from {
            opacity: 0;

            transform:
                translateY(14px) scale(0.82);
        }

        to {
            opacity: 1;

            transform:
                translateY(0) scale(1);
        }
    }

    @keyframes blogCtaLightPulse {

        0%,
        100% {
            opacity: 0.35;

            transform:
                translateX(-50%) scaleX(0.85);
        }

        50% {
            opacity: 0.85;

            transform:
                translateX(-50%) scaleX(1.08);
        }
    }

    @media (max-width: 991px) {

        .blog-cta-section {
            min-height: 400px;
            padding-top: 10px;
        }

    }


    @media (max-width: 767px) {

        .blog-cta-section {
            min-height: 360px;
        }

        .blog-cta-container::before {
            background-size:
                cover;

            background-position:
                center center;
        }

    }

    @media (min-width: 1440.98px) and (max-width: 2560px) {
        .blog-cta-container {
            height: 600px;
        }

        .blog-cta-container::before {
            background-size: 75% 100%;
        }

        .blog-cta-content {
            top: 33%;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .blog-cta-section *,
        .blog-cta-section *::before,
        .blog-cta-section *::after {
            animation: none !important;
            transition: none !important;
        }
    }

    /* section-blg-cta-end */