   .facebook {
        color: white;
        padding: 0.5rem;
        background-color: #0054F2;
    }

    .twitter {
        color: white;
        padding: 0.5rem;
        background-color: rgb(0, 0, 0);
    }

    .linkedIn {
        color: white;
        padding: 0.5rem;
        background-color: rgb(5, 93, 255);
    }

    .pinterest {
        color: white;
        padding: 0.5rem;
        background-color: rgb(255, 16, 16);
    }

    .whatsapp {
        color: white;
        padding: 0.5rem;
        background-color: #25D366;
    }

    .logo img {
        width: 100%;
        object-fit: contain;
        height: auto;
        /* margin: 0 auto; */
    }

    @media screen and (max-width: 480px) {
        img {
            width: 100%;
        }

    }

    .blog_table {
        overflow-x: auto;
    }

    .comment_btn {
        cursor: pointer;
    }

    .comment_btn:hover,
    #likeBtn:hover {
        background: #fff !important;
        color: #000 !important;
    }

    .btn-close:hover {
        background-color: white !important;
        color: #000;
    }

    /* Animation for like icon */
    /* Thumbs up animation */
    @keyframes mediumLike {
        0% {
            transform: scale(1) rotate(0deg);
            opacity: 0.6;
        }

        30% {
            transform: scale(1.4) rotate(-20deg);
            opacity: 1;
        }

        60% {
            transform: scale(0.9) rotate(10deg);
        }

        100% {
            transform: scale(1) rotate(0deg);
        }
    }

    /* Sparkle effect */
    .sparkle {
        position: absolute;
        width: 10px;
        height: 10px;
        background: radial-gradient(circle, #00bfff, transparent);
        border-radius: 50%;
        animation: sparkleOut 0.6s ease-out forwards;
    }

    @keyframes sparkleOut {
        from {
            opacity: 1;
            transform: scale(0.5) translateY(0);
        }

        to {
            opacity: 0;
            transform: scale(1.5) translateY(-30px);
        }
    }


    /* Mobile Devices */
    @media screen and (max-width: 766px) {
        body {
            font-size: 16px;
            font-family: 'Poppins', sans-serif !important;
        }

        .blog-container p {
            font-size: 15px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .blog-container p {}

        .blog-container h1 {
            font-size: 28px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .blog-container h2 {
            font-size: 22px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.3;
            margin-bottom: 0.875rem;
        }

        .blog-container h3 {
            font-size: 18px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }

        .blog-container h4 {
            font-size: 16px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .blog-container h5 {
            font-size: 16px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .blog-container h6 {
            font-size: 14px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        /* List styles */
        .blog-container ul,
        ol {
            font-size: 15px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.6;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .blog-container li {
            font-size: 15px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .blog-container ul,
        .blog-container ol {}

        .blog-container li {}

        .blog-container li>p {
            font-style: normal;
            font-size: 14px;
            line-height: 1.5;
        }
    }

    /* Tablet Devices */
    @media screen and (min-width: 767px) and (max-width: 1099px) {
        body {
            font-size: 18px;
            font-family: 'Poppins', sans-serif !important;
        }

        .blog-container p {
            font-size: 16px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.7;
            margin-bottom: 1.125rem;
        }

        .blog-container p {}

        .blog-container h1 {
            font-size: 32px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.2;
            margin-bottom: 1.125rem;
        }

        .blog-container h2 {
            font-size: 24px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .blog-container h3 {
            font-size: 19px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.3;
            margin-bottom: 0.875rem;
        }

        .blog-container h4 {
            font-size: 18px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.875rem;
        }

        .blog-container h5 {
            font-size: 17px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .blog-container h6 {
            font-size: 16px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        /* List styles */
        .blog-container ul,
        ol {
            font-size: 16px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.7;
            margin-bottom: 1.125rem;
            padding-left: 1.75rem;
        }

        .blog-container li {
            font-size: 16px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.7;
            margin-bottom: 0.625rem;
        }

        .blog-container ul,
        .blog-container ol {}

        .blog-container li {}

        .blog-container li>p {
            font-style: normal;
            font-size: 18px !important;
            line-height: 1.5;
        }
    }

    .hero h1 {
        font-size: 32px !important;
    }

    .fw-bold {
        font-weight: unset !important;
    }

    /* Desktop Devices */
    @media screen and (min-width: 1100px) {
        body {
            font-size: 20px;
            font-family: 'Poppins', sans-serif !important;
        }

        .blog-container p {
            font-size: 18px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        .blog-container p {}

        .blog-container h1 {
            font-size: 36px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.1;
            margin-bottom: 1.25rem;
        }

        .blog-container h2 {
            font-size: 26px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.2;
            margin-bottom: 1.125rem;
        }

        .blog-container h3 {
            font-size: 20px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .blog-container h4 {
            font-size: 18px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        .blog-container h5 {
            font-size: 20px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.875rem;
        }

        .blog-container h6 {
            font-size: 18px !important;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.4;
            margin-bottom: 0.875rem;
        }

        /* List styles */
        .blog-container ul,
        ol {
            font-size: 18px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.8;
            margin-bottom: 1.25rem;
            padding-left: 2rem;
        }

        .blog-container li {
            font-size: 18px;
            font-family: 'Poppins', sans-serif !important;
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }

        .blog-container ul,
        .blog-container ol {}

        .blog-container li {}

        .blog-container li>p {
            font-style: normal;
            font-size: 18px !important;
            line-height: 1.5;
        }
    }

    /* Optional: Additional styling for better typography */
    .blog-container {
        /* text-align: justify; */
    }

    .blog-container img {
        max-width: 100%;
        height: auto;
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    /* For nested lists */
    .blog-container ul ul,
    .blog-container ol ol,
    .blog-container ul ol,
    .blog-container ol ul {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* Reply styling */
    .reply-card {
        position: relative;
    }

    .reply-card:before {
        content: '';
        position: absolute;
        left: 0;
        top: 15px;
        width: 10px;
        height: 2px;
        background-color: #007bff;
    }

    .comment-card {
        transition: all 0.3s ease;
    }

    .comment-card:hover {
        background-color: #f8f9fa;
    }

    .replies-container {
        max-height: 500px;
        overflow-y: auto;
    }

    /* Reply button animation */
    .reply-btn {
        transition: all 0.3s ease;
    }

    .reply-btn:hover {
        transform: translateY(-2px);
    }

    /* Toggle replies button */
    .toggle-replies {
        text-decoration: none;
        font-size: 0.875rem;
    }

    .toggle-replies:hover {
        text-decoration: underline;
    }

    /* Modal styling */
    #replyModal .modal-body {
        max-height: 70vh;
        overflow-y: auto;
    }

    /* CSS FOR HYPERLINK STARTS */
    .toc {
        position: sticky;
        top: 150px;
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 5px;
        background: #fdfafa;
    }

    .toc ul {
        padding-left: 15px;
    }

    .toc li {
        margin-bottom: 10px;
        list-style-type: square;
    }

    .toc a {
        text-decoration: none;
    }

    [id] {
        scroll-margin-top: 150px;
    }

    /* CSS FOR HYPERLINK STARTS ENDS */


    /* Mobile TOC Dropdown */

.mob_toc {
    display: none;
}

@media (max-width: 767px) {

    .toc{
        display: none;
    }

    .mob_toc {
        display: block;
        margin: 15px 0;
    }


    .toc-dropdown {
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
    }


    .toc-dropdown summary {
        list-style: none;
        cursor: pointer;
        padding: 12px 15px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8f8f8;
    }


    .toc-dropdown summary::-webkit-details-marker {
        display: none;
    }


    .toc-dropdown .arrow {
        font-size: 18px;
        transition: transform 0.3s ease;
    }


    .toc-dropdown[open] .arrow {
        transform: rotate(180deg);
    }


    .toc-dropdown ul {
        margin: 0;
        padding: 10px 20px;
        list-style: none;
    }


    .toc-dropdown li {
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }


    .toc-dropdown li:last-child {
        border-bottom: none;
    }


    .toc-dropdown a {
        text-decoration: none;
        font-size: 14px;
    }

}