
h1 {
    text-align: center;
    margin-bottom: 32px !important;
}

.templateImages {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: #F9F9F9;
    padding: 24px;
    border-radius: 16px;

    & img {
        max-width: 275px;
        max-height: 355px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    & .downloadBtns {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    & .downloadBtns a {
        color: #FFFFFF;
        background: #333333;
        border-radius: 35px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        padding: 8px 25px;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    & img:hover+.downloadBtns,
    & .downloadBtns:hover {
        display: flex !important;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    & .downloadBtns a:hover {
        background-color: #555555;
    }
}

.example-div {
    color: var(--color-dark-gray) !important;
    background-color: #F9F9F9;
    border-radius: 16px;
    padding: 24px;
    text-align: start;

}

h2 {
    text-transform: none;
    font-size: 28px !important;
    margin: 48px 0 24px !important;
}

.blog_container p {
    margin-bottom: 16px !important;
    line-height: 30px !important;
    color: var(--color-dark-gray) !important;
}

.blog-section>div .item .content {
    gap: 12px !important;
}

h3 {
    font-size: 22px !important;
    margin: 40px 0 16px !important;
}

.blog_container img {
    border-radius: 16px !important;
}

.gradient-hover-effect::after {
    bottom: -12px !important;
    z-index: 999 !important;
}

.single-blog-post-section {
    padding: 50px 10px;
    justify-content: center;
    gap: 50px;
}

.single-blog-post-section .table_of_contents,
.single-blog-post-section .follow_us {
    position: sticky;
    top: 50px;
    height: 100%;
    max-height: calc(100vh - 60px);
    flex: 20%;
    display: flex;
    flex-direction: column;
    gap: var(--gap-default);
}

.single-blog-post-section .table_of_contents .title,
.single-blog-post-section .follow_us .title {
    color: var(--color-dark-gray);
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--border-radius-default);
}

.single-blog-post-section .table_of_contents .contnet_list {
    overflow-y: auto;
}

.single-blog-post-section .table_of_contents p {
    margin-bottom: 16px !important;
    line-height: 18px !important;
    font-size: var(--font-size-xsmall) !important;
}

.single-blog-post-section .table_of_contents li {
    background-size: 16px;
    margin-bottom: 8px !important;
}

.single-blog-post-section .table_of_contents li a {
    font-size: var(--font-size-minimum)
}

.single-blog-post-section .table_of_contents a {
    display: inline-block;
    transition: all 0.3s ease;
    font-size: var(--font-size-minimum);
}

.single-blog-post-section .table_of_contents a:hover {
    text-decoration: underline;
}

.single-blog-post-section .blog_container {
    flex: 60%;
}

.single-blog-post-section .blog_container .blog_image {
    width: 100%;
}

table {
    border-collapse: collapse;
}

table tr td {
    padding: 0px 5px;
    border: 1px solid var(--color-gray);
}

.content-wrapper {
    text-align: left;
    word-break: break-word;
}

@media (max-width: 992px) {
    .single-blog-post-section {
        flex-direction: column;
    }

    .single-blog-post-section .table_of_contents,
    .single-blog-post-section .follow_us {
        position: relative;
        top: 0;
    }

    .single-blog-post-section .follow_us .social_icons {
        flex-direction: row;
        justify-content: space-around;
    }
}

.table_of_contents_mobile {
    text-align: left;
    border: 1px solid var(--color-gray);
    padding: 10px;
    border-radius: 5px;
}

.table_of_contents_mobile .title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.table_of_contents_mobile>.content_list {
    text-align: left;
    display: none;
}

.table_of_contents_mobile>.content_list li,
.table_of_contents_mobile>.content_list p {
    font-size: 16px !important;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .table_of_contents_mobile>.content_list li {
        background-size: 14px;
    }

    /* .single-blog-post-section{
                                                   padding: 0px;
                                                  } */


    .content-wrapper {
        padding: 8px;
        margin-top: 10px;
    }

    .section-illustration {
        width: 100%
    }
    .downloadBtns{
        opacity: 1 !important;
         & a{
        font-size:12px !important;
        padding: 8px 20px !important;

    }
    }

}
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Modal content (image) */
.modal-content {
    max-width: 90%; /* Adjust as needed */
    max-height: 90%; /* Adjust as needed */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional styling */
    border-radius: 8px; /* Optional styling */
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
