    /* ----------- Topfaida drag Slider ----------------------*/
    
    .tf-drag-slide {
        cursor: grab;
        position: relative;
    }
    /* General styles for grid */
    
    .grid-style-1,
    .grid-style-2,
    .grid-style-3,
    .grid-style-4,
    .grid-style-5 {
        display: grid;
        grid-gap: 20px;
        padding: 20px 0;
        margin: 20px;
    }
    
    .grid-style-1,
    .grid-style-2,
    .grid-style-3,
    .grid-style-4 {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .grid-style-5 {
        grid-template-columns: repeat(9, 1fr);
    }
    /* General styles for tf-cat-card */
    
    .grid-style-1 .tf-cat-card,
    .grid-style-2 .tf-cat-card,
    .grid-style-3 .tf-cat-card,
    .grid-style-4 .tf-cat-card,
    .grid-style-5 .tf-cat-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .grid-style-1 .tf-cat-card,
    .grid-style-2 .tf-cat-card,
    .grid-style-3 .tf-cat-card,
    .grid-style-4 .tf-cat-card {
        height: 130px;
    }
    
    .tf-slider-grid {}
    
    .tf-slider-grid .tf-slider-card {
        flex: 0 0 150px !important;
        display: flex;
        padding: 10px !important;
        flex-direction: column;
        align-items: center;
        background: #fff;
        border-radius: 20px;
        transition: transform 0.5s ease;
        overflow: initial;
    }
    /* Grid Style 1 */
    
    .grid-style-1 .tf-cat-card-image img,
    .grid-style-1 .tf-cat-card-content {
        transition: transform .5s;
    }
    
    .grid-style-1 .tf-cat-card-image img {
        max-width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .grid-style-1 .tf-cat-card-content {
        position: absolute;
        bottom: -1px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        width: 100%;
        padding: 10px;
        transform: translateY(100%);
    }
    
    .grid-style-1 .tf-cat-card:hover .tf-cat-card-image img {
        transform: scale(1.2);
    }
    
    .grid-style-1 .tf-cat-card:hover .tf-cat-card-content {
        transform: translateY(0%);
    }
    /* Grid Style 2 */
    
    .grid-style-2 .tf-cat-card-content {
        position: absolute;
        top: 0;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        height: 100%;
        padding: 10px;
        opacity: 0;
        transform: scale(0.1);
        transition: all .5s;
    }
    
    .grid-style-2 .tf-cat-card:hover .tf-cat-card-content {
        opacity: 1;
        transform: scale(1);
    }
    /* Grid Style 3 */
    
    .grid-style-3 .tf-cat-card-image img {
        max-width: fit-content;
    }
    
    .grid-style-3 .tf-cat-card-content {
        position: absolute;
        bottom: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        width: 100%;
        padding: 10px;
    }
    /* Grid Style 4 */
    
    .grid-style-4 .tf-cat-card {
        perspective: 1000px;
        width: 100%;
        height: 120px;
        position: relative;
        transform-style: preserve-3d;
        /* New line */
    }
    
    .grid-style-4 .tf-cat-card .tf-cat-card-image,
    .grid-style-4 .tf-cat-card .tf-cat-card-content {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        backface-visibility: hidden;
        transition: transform 0.6s ease-in-out;
    }
    
    .grid-style-4 .tf-cat-card .tf-cat-card-image {
        z-index: 2;
    }
    
    .grid-style-4 .tf-cat-card .tf-cat-card-content {
        transform: rotateY(-180deg);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .grid-style-4 .tf-cat-card:hover .tf-cat-card-content {
        transform: rotateY(0deg);
    }
    
    .grid-style-4 .tf-cat-card:hover .tf-cat-card-image {
        transform: rotateY(180deg);
    }
    
    .grid-style-4 .tf-cat-card-content h3,
    .grid-style-4 .tf-cat-card-content p {
        margin: 0;
        padding: 0;
    }
    /* Grid Style 5 - Circle Image with Text Below */
    
    .grid-style-5 .tf-cat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 6px;
        background: #fff;
        border-radius: 20px;
        transition: transform 0.5s ease;
        overflow: initial;
    }
    
    .grid-style-5 .tf-cat-card .tf-cat-card-image {
        width: 110px;
        height: 110px;
        padding: 5px;
        margin-bottom: 5px;
        border-radius: 50%;
        overflow: hidden;
        outline: 1px dashed var(--tf-theme-bg-1);
        transition: transform 0.3s ease;
    }
    
    .grid-style-5 .tf-cat-card .tf-cat-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .tf-slider-grid .tf-cat-card-content h3,
    .tf-slider-grid .tf-cat-card-content p,
    .grid-style-5 .tf-cat-card .tf-cat-card-content h3,
    .grid-style-5 .tf-cat-card .tf-cat-card-content p {
        text-align: center;
        margin: 5px 0;
    }
    
    .tf-slider-grid .tf-cat-card-content h3,
    .tf-cat-card .tf-cat-card-content h3 {
        font-size: 16px;
    }
    
    .tf-slider-grid .tf-cat-card-content p,
    .tf-cat-card .tf-cat-card-content p {
        font-size: 14px;
    }
    
    .grid-style-5 .tf-cat-card:hover {
        box-shadow: var(--tfpro-shadow-dark);
    }
    
    .grid-style-5 .tf-cat-card:hover .tf-cat-card-image {
        background: #fff;
        transform: translateY(-25px);
    }
    
    .tf-cat-grid.tf-drag-slide {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tf-cat-grid.tf-drag-slide .tf-cat-card {
        flex: 0 0 150px;
    }
    /* ----------- Topfaida drag Slider -----------}*/
    /* ----------- Topfaida Hilights boxes ----------------------*/
    
    .tf-hilights-box-style-1,
    .tf-hilights-box-style-2,
    .tf-hilights-box-style-3,
    .tf-hilights-box-style-4,
    .tf-hilights-box-style-5 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .tf-hilights-box-card {
        background-color: #fff;
        border-radius: 10px;
        width: 100%;
        max-width: 250px;
        margin: 5px;
        padding: 10px 8px;
        text-align: center;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: all .3s linear;
    }
    
    .tf-hilights-box-card:hover {
        opacity: 1;
        background: #fff;
        border: 1px solid var(--tfpro-hover-clr);
        outline: 3px solid #fff;
    }
    
    .tf-hilights-box-img {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
        overflow: hidden;
    }
    
    .tf-hilights-box-img img {
        width: 100%;
        height: auto;
    }
    
    .tf-hilights-box-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .tf-hilights-box-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    /* Style 1: */
    
    .tf-hilights-box-style-1 {
        margin: 30px 0;
    }
    
    .tf-hilights-box-style-1 .tf-hilights-box-img {
        margin: -2.5rem auto 0 auto;
        position: relative;
        z-index: 1;
    }
    /* Style 2: Background color change and border */
    
    .tf-hilights-box-style-2 .tf-hilights-box-card {
        background-color: #f0f0f0;
        border: 1px solid #ccc;
    }
    /* Style 3: Cards with a colored header */
    
    .tf-hilights-box-style-3 .tf-hilights-box-card {
        background-color: #fff;
        position: relative;
    }
    
    .tf-hilights-box-style-3 .tf-hilights-box-card h3 {
        background: var(--tf-theme-bg-clr);
        color: #fff;
        padding: 0.5rem;
        border-radius: 4px 4px 0 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
    }
    
    .tf-hilights-box-style-3 .tf-hilights-box-card .tf-hilights-box-img {
        margin-top: 2rem;
    }
    /* Style 4: Circular image container */
    
    .tf-hilights-box-style-4 .tf-hilights-box-img {
        border-radius: 50%;
        border: 2px solid #007bff;
    }
    
    .tf-hilights-box-style-4 .tf-hilights-box-card {
        background-color: #fff;
    }
    /* Style 5: Image on the left, content on the right */
    
    .tf-hilights-box-style-5 .tf-hilights-box-card {
        display: flex;
        align-items: center;
        background-color: #fff;
        text-align: left;
    }
    
    .tf-hilights-box-style-5 .tf-hilights-box-img {
        flex: 0 0 80px;
        margin: 0;
        margin-right: 1rem;
    }
    
    .tf-hilights-box-style-5 .tf-hilights-box-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .tf-hilights-box-style-5 .tf-hilights-box-card h3,
    .tf-hilights-box-style-5 .tf-hilights-box-card p {
        margin: 3px 0;
    }
    /* ----------- Topfaida Hilights boxes -----------}*/
    /* ----------- Topfaida Heading Style ----------------------*/
    
    .tf-grid-heading-1,
    .tf-grid-heading-2,
    .tf-grid-heading-3,
    .tf-grid-heading-4,
    .tf-grid-heading-5 {
        display: flex;
        position: relative;
        justify-content: space-between;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .tf-grid-heading-1 span a,
    .tf-grid-heading-2 span a,
    .tf-grid-heading-3 span a,
    .tf-grid-heading-4 span a,
    .tf-grid-heading-5 span a {
        font-weight: bold;
        font-size: 15px;
    }
    
    .tf-grid-heading-1,
    .tf-grid-heading-2,
    .tf-grid-heading-3 {
        font-size: 14px;
        line-height: 1;
        margin-top: 0;
        margin-bottom: 25px;
        border-bottom: 2px solid #222222;
    }
    
    .tf-grid-heading-1 h2,
    .tf-grid-heading-2 h2,
    .tf-grid-heading-3 h2,
    .tf-grid-heading-4 h2 {
        font-size: 13px;
        background: var(--tf-theme-bg-clr);
        color: var(--tf-theme-txt-clr);
        padding: 6px 15px;
        margin: 0;
        text-transform: uppercase;
    }
    /* Heading style 2 */
    
    .tf-grid-heading-2 h2:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 0 0 65px;
        width: 54px;
        height: 32px;
        transform: skew(45deg);
        background: inherit;
        z-index: -1;
    }
    /* Heading style 3 */
    
    .tf-grid-heading-3 {
        border-bottom: 2px dashed var(--tf-theme-bg-clr);
    }
    
    .tf-grid-heading-3 h2 {
        margin-left: 15px;
    }
    
    .tf-grid-heading-3 h2:before {
        position: absolute;
        content: '';
        left: 7px;
        top: 0;
        right: 0;
        width: 200px;
        bottom: 0;
        z-index: -1;
        transform: skewX(-10deg);
        background: inherit;
    }
    
    .tf-grid-heading-3 h2:after {
        /* content: ""; */
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 0 0 65px;
        width: 54px;
        height: 32px;
        transform: skew(45deg);
        background: inherit;
        z-index: -1;
    }
    /* Heading Style 4 */
    
    .tf-grid-heading-4 h2 {
        padding: 5px 30px;
        border-left: 15px solid #dd0000;
        border-right: 15px solid #dd0000;
        border-radius: 50px 0 50px 0;
    }
    /* Heading Style 5 */
    
    .tf-grid-heading-5 h2 {
        color: #000;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 800;
        text-align: left;
    }
    
    .tf-grid-heading-5 h2:after {
        content: '';
        display: inline-block;
        height: 4px;
        position: absolute;
        top: 37%;
        width: 77%;
        margin: 0 0 0 15px;
        background: var(--tf-theme-bg-clr);
        z-index: -1;
    }
    /* ----------- Topfaida Heading Style -----------}*/
    /* ----------- Topfaida Grid Styles ----------------------*/
    
    .tf-grid-card {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        margin-bottom: 20px;
        overflow: hidden;
        transition: transform 0.3s;
    }
    
    .tf-grid-card:hover {
        transform: translateY(-5px);
    }
    
    .tf-grid-card-top img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
    
    .tf-grid-card-content {
        padding: 15px;
    }
    
    .tf-grid-card-bottom {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        justify-content: space-between;
    }
    
    .tf-grid-date {
        font-size: 11px;
    }
    
    .tf-grid-read-more {
        text-decoration: none;
        color: #1a73e8;
    }
    
    .tf-grid-read-more:hover {
        text-decoration: underline;
    }
    
    .tf-grid-card-info h2 {
        font-size: 1.2em;
    }
    
    .tf-grid-category {
        text-decoration: unset;
        font-weight: 600;
        text-transform: uppercase;
        color: #ffffff;
        width: auto;
        text-align: center;
        padding: 3px 6px;
        margin: 0 5px;
        font-size: 12px;
        border-radius: 5px;
        background: var(--tf-theme-bg-clr);
    }
    
    .tf-grid-category:hover {
        color: #1a73e8;
    }
    
    .tf-grid-style-8 .tf-grid-card-bottom,
    .tf-grid-style-12 .tf-grid-card-bottom {
        justify-content: flex-end !important;
    }
    /* Classic Layout */
    
    .tf-grid-style-1 .tf-grid-card {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    /* List Layout */
    
    .tf-grid-style-2 .tf-grid-card {
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-gap: 10px;
    }
    /* Grid Layout */
    
    .tf-grid-style-3 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    /* Grid container */
    
    .tf-grid-style-4 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-gap: 20px;
    }
    /* Grid card */
    
    .tf-grid-style-4 .tf-grid-card {
        padding: 5px;
    }
    /* Grid card top */
    
    .tf-grid-style-4 .tf-grid-card-top img {
        width: 100%;
        height: 350px;
        display: block;
        object-fit: cover;
        transition: transform 0.3s;
    }
    /* Grid card content */
    
    .tf-grid-style-4 .tf-grid-card-content {
        padding: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: rgba(255, 255, 255, 0.9);
        transition: opacity 0.3s;
    }
    /* Grid card info */
    
    .tf-grid-style-4 .tf-grid-card-info h2 {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }
    
    .tf-grid-style-4 .tf-grid-date {
        display: block;
        font-size: 14px;
        color: #777;
        margin-bottom: 15px;
    }
    
    .tf-grid-style-4 .tf-grid-excerpt {
        font-size: 16px;
        color: #000 !important;
        margin-bottom: 15px;
    }
    /* Grid card bottom */
    
    .tf-grid-style-4 .tf-grid-read-more,
    .tf-grid-style-4 .tf-grid-category {
        font-size: 14px;
        color: #333;
        text-decoration: none;
    }
    
    .tf-grid-style-4 .tf-grid-read-more:hover,
    .tf-grid-style-4 .tf-grid-category:hover {
        color: #007bff;
    }
    /* Hover effect */
    
    .tf-grid-style-4 .tf-grid-card:hover .tf-grid-card-top img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    
    .tf-grid-style-4 .tf-grid-card:hover .tf-grid-card-content {
        opacity: 1;
    }
    /* Magazine Layout */
    
    .tf-grid-style-5 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    
    .tf-grid-style-5 .tf-grid-card {
        grid-row-end: span 2;
    }
    
    .tf-grid-style-5 .tf-grid-card:nth-child(2n) {
        grid-row-end: span 3;
        height: fit-content;
    }
    
    .tf-grid-style-5 .tf-grid-card:nth-child(3n) {
        grid-column-end: span 2;
    }
    /* Drag Scroll - tf-grid-style-6 */
    
    .tf-grid-style-6 {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tf-grid-style-6 .tf-grid-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
    
    .tf-grid-style-7 {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-gap: 15px;
    }
    
    .tf-grid-style-7 .tf-grid-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        background-color: #ffffff;
        border: 1px solid #e6e6e6;
        border-radius: 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }
    
    .tf-grid-style-7 .tf-grid-card:hover {
        transform: translateY(-5px);
    }
    
    .tf-grid-style-7 .tf-grid-excerpt {
        display: none;
    }
    /* News Magazine Layout - tf-grid-style-8 */
    
    .tf-grid-style-8 .tf-grid-card {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .tf-grid-style-8 .tf-grid-card:not(:nth-child(1)) {
        flex-direction: row;
    }
    
    .tf-grid-style-8 .tf-grid-card:not(:nth-child(1)) .tf-grid-card-top {
        flex: 0 0 40%;
    }
    /* tf-grid-style-9 */
    
    .tf-grid-style-9 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(1, 1fr);
        grid-gap: 15px;
    }
    
    .tf-grid-style-9 .tf-grid-card {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .tf-grid-style-9 .tf-grid-card:nth-child(1) {
        grid-row: span 1;
        grid-column: span 3;
    }
    
    .tf-grid-style-9 .tf-grid-card:nth-child(2) {
        grid-row: 1;
        grid-column: 4;
    }
    
    @media (max-width: 991px) {
        .tf-grid-style-9 {
            grid-template-columns: repeat(2, 1fr);
        }
        .tf-grid-style-9 .tf-grid-card:nth-child(1) {
            grid-column: span 2;
        }
        .tf-grid-style-9 .tf-grid-card:nth-child(2) {
            grid-row: 2;
            grid-column: 1 / span 2;
        }
    }
    /* style 10 */
    
    .tf-grid-style-10 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 5px;
    }
    
    .tf-grid-style-10 .tf-grid-card {
        display: flex;
        flex-direction: column;
    }
    
    .tf-grid-style-10 .tf-grid-card-bottom {
        margin-top: auto;
    }
    /* Overlay Grid 11 Layout */
    
    .tf-grid-style-11 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    
    .tf-grid-style-11 .tf-grid-card-content {
        padding: 0;
        color: #fff;
    }
    
    .tf-grid-style-11 .tf-grid-card {
        position: relative;
    }
    
    .tf-grid-style-11 .tf-grid-card-info {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.9);
        color: #444;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .tf-grid-style-11 .tf-grid-card-info p {
        font-size: 13px;
        margin: 0 0 15px;
        color: #fff;
    }
    
    .tf-grid-style-11 .tf-grid-card:hover .tf-grid-card-info {
        opacity: 1;
    }
    
    .tf-grid-style-11 .tf-grid-card-bottom {
        display: none;
    }
    
    .tf-grid-style-12 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: minmax(100px, auto);
        grid-column-gap: 10px;
        grid-auto-flow: dense;
    }
    
    .tf-grid-style-12 .tf-grid-card {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        padding: 8px;
        width: 100%;
    }
    
    .tf-grid-style-12 .tf-grid-card:not(:nth-child(1)) {
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: 100px;
        grid-gap: 10px;
        margin: 5px;
    }
    
    .tf-grid-style-12 .tf-grid-card-content {
        padding: 6px;
    }
    
    .tf-grid-style-12 .tf-grid-card:not(:nth-child(1)) .tf-grid-excerpt {
        display: none;
    }
    
    .tf-grid-style-12 h2 {
        font-size: 1em !important;
        font-weight: bold;
        margin: 0 0 10px;
    }
    
    .tf-grid-style-12 .tf-grid-category {
        font-size: 9px;
        border-radius: 20px 0 20px 0;
    }
    
    .tf-grid-style-12 .tf-grid-card:nth-child(1) {
        grid-row: span 5;
    }
    
    .tf-grid-style-12 .tf-grid-card:nth-child(1) img {
        height: 400px;
    }
    
    .tf-grid-style-14 article {
        display: flex;
        box-shadow: var(--tfpro-shadow);
        border-radius: 10px;
        margin: 10px 0;
        padding: 10px;
        height: auto;
        z-index: 1;
        background-color: #fff;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    
    .tf-grid-style-14-title {
        font-size: 16px;
        line-height: normal;
        margin: 0 0 10px 0;
    }
    
    .tf-grid-style-14-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .tf-grid-style-14-image {
        width: 40%;
    }
    
    .tf-grid-style-14-content {
        width: 100%;
        padding-left: 10px;
    }
    
    .tf-grid-style-14-content p {
        font-size: 15px;
    }
    
    .tf-grid-style-14-meta {
        font-size: 12px;
        color: #8b8b8b;
    }
    
    .tf-grid-style-14-meta a {
        color: #0e0270bf;
    }
    /* Responsive styles */
    
    @media (max-width: 767px) {
        .tf-grid-style-4 {
            column-count: 1;
        }
        .tf-grid-style-5 .tf-grid-card:nth-child(n) {
            grid-row-end: span 1;
            grid-column-end: span 1;
        }
        .tf-grid-style-9 {
            grid-template-columns: repeat(1, 1fr);
        }
        .tf-grid-style-9 .tf-grid-card:nth-child(1),
        .tf-grid-style-9 .tf-grid-card:nth-child(2) {
            grid-column: span 1;
        }
        .tf-grid-style-12 {
            grid-template-columns: 1fr;
        }
        .tf-grid-style-12 .tf-grid-card:nth-child(1) {
            grid-row: auto;
        }
    }
    /* Custom font styles */
    
    .tf-grid-card-info h2 {
        font-size: 1em;
        font-weight: bold;
        margin: 0 0 10px;
    }
    
    .tf-grid-card-info p {
        font-size: 1em;
        margin: 0 0 15px;
    }
    /* Hover effects */
    
    .tf-grid-card:hover .tf-grid-card-top img {
        transform: scale(1.1);
        transition: transform 0.3s;
    }
    
    .tf-grid-card:hover .tf-grid-card-info h2 {
        color: #1a73e8;
        transition: color 0.3s;
    }
    
    .tf-grid-card:hover .tf-grid-card-info p {
        color: #999;
        transition: color 0.3s;
    }
    /* ----------- Topfaida Grid Styles -----------}*/
    /* ----------- topfaida Slider / Carousel -----------Start*/
    
    .tf-grid-slider-1 {
        position: relative;
        overflow: hidden;
    }
    
    .tf-grid-slider-2 {
        position: relative;
        overflow: hidden;
    }
    
    .tf-grid-slider-2 .tf-sliders {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .tf-grid-slider-2 .tf-slider-card {
        flex-shrink: 0;
        width: 100%;
    }
    
    .tf-grid-slider-2 .indicator {
        width: 12px;
        height: 12px;
    }
    
    .tf-grid-slider-3 {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .tf-grid-slider-3 .tf-sliders {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        margin: 20px;
    }
    
    .tf-grid-slider-3 .tf-slider-card {
        flex: 0 0 auto;
        width: calc(100% / 6);
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .tf-grid-slider-3 .tf-slider-card img {
        width: 100%;
        display: block;
    }
    
    .tf-sliders {
        display: flex;
        transition: transform 0.3s ease;
        white-space: nowrap;
    }
    
    .tf-slider-card {
        flex: 0 0 auto;
        width: auto;
        padding: 15px;
        box-sizing: border-box;
        margin-right: 2%;
    }
    
    .tf-slider-card img {
        max-width: 100%;
        height: auto;
    }
    
    .slider-controls {
        position: absolute;
        bottom: 10px;
        right: 10px;
    }
    
    .prev-slide,
    .next-slide {
        top: calc(50% - 1rem);
        position: absolute;
        width: 30px;
        height: 30px;
        z-index: 1;
        opacity: 0.6;
        padding: 5px;
        box-shadow: var(--tfpro-shadow-bt);
        border: none;
        border-radius: 50%;
        color: #000;
        transition: all .3s linear;
        background: #fff;
    }
    
    .prev-slide {
        left: 0;
    }
    
    .next-slide {
        right: 0;
    }
    
    .prev-slide:hover,
    .next-slide:hover {
        opacity: 1;
        background: #fff;
        border: 1px solid var(--tfpro-hover-clr);
        outline: 3px solid #fff;
    }
    
    .show-all {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #fff;
        padding: 5px 10px;
        text-decoration: none;
        color: #333;
    }
    
    .indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 3px;
        left: 0;
        right: 0;
    }
    
    .indicator {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #ccc;
        margin: 0 3px;
        border-radius: 50%;
        cursor: pointer;
        border: 1px solid #48484847;
    }
    
    .indicator.active {
        background: var(--tf-theme-bg-clr);
    }
    /* ----------- topfaida Slider / Carousel -----------}*/
    /* ----------- topfaida Sidebar -----------------start*/
    
    .topfaida-pro-sidebar {
        margin: 15px 0;
        padding: 30px 0;
    }
    
    .topfaida-pro-sidebar .widget {
        padding: 10px;
        border-radius: 10px;
        box-shadow: var(--tfpro-shadow-light);
        margin: 0 0 2.5em;
        background: #fff;
    }
    
    .topfaida-pro-sidebar .widget h2 {
        font-size: 14px;
        margin: -30px 0 30px 0;
        padding: 5px 15px;
        border-radius: 10px;
        border: none;
        background: var(--tf-theme-bg-clr);
        color: var(--tf-theme-txt-clr);
        text-transform: uppercase;
    }
    
    .topfaida-pro-table-of-content ul {
        list-style: none;
    }
    
    .topfaida-pro-sidebar ol,
    .topfaida-pro-sidebar ul {
        list-style: none;
        padding-left: 10px;
    }
    
    .topfaida-pro-sidebar li {
        padding: 5px 0;
        border-bottom: 1px solid #00000017;
    }
    
    .topfaida-pro-sidebar li:last-child {
        border-bottom: none;
    }
    
    .topfaida-pro-sidebar li a {
        color: #011740c9;
    }
    /* ----------- topfaida Sidebar -----------------end}*/
    /* ----------- topfaida Page head -----------------start*/
    
    .topfaida-single-post .entry-header,
    .woocommerce .entry-header,
    .woocommerce-products-header,
    .topfaida-archive-page .page-header,
    .tf-page-headers {
        font-family: var(--tf-theme-font);
        margin-bottom: 7px;
        background: #fff;
        padding: 10px;
        border-radius: 15px;
    }
    
    .topfaida-single-post article {
        /* background: #fff; */
        padding: 10px;
        color: #353a50;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
    
    .tf-content-style-1 h2,
    .tf-content-style-1 h3,
    .tf-content-style-1 h4,
    .tf-content-style-1 h5,
    .tf-content-style-1 h6,
    .tf-content-style-1 p,
    .tf-content-style-1 ul,
    .tf-content-style-1 ol,
    .tf-content-style-1 figure {
        font-family: var(--tf-theme-font);
        margin-bottom: 7px;
        background: #fff;
        padding: 10px;
        border-radius: 15px;
    }
    
    .tf-content-style-2 {
        background: #fff;
    }
    
    .tf-content-style-2 h1,
    .tf-content-style-2 h2,
    .tf-content-style-2 h3,
    .tf-content-style-2 h4,
    .tf-content-style-2 h5,
    .tf-content-style-2 h6,
    .tf-content-style-2 p,
    .tf-content-style-2 ul,
    .tf-content-style-2 ol,
    .tf-content-style-2 figure {
        font-family: var(--tf-theme-font);
        margin-bottom: 7px;
        padding: 10px;
        border-radius: 15px;
    }
.tf-content-style-2 p{
	font-size:20px;
}
    .topfaida-single-post .comment-respond {
        position: relative;
        padding: 30px 10px;
        margin: 1rem;
        background-color: #fff;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
    
    .topfaida-single-post .comment-respond h3 {
        width: fit-content;
        display: block;
        padding: 5px 15px;
        background: white;
        border-radius: 50px;
        font-size: 20px;
        text-transform: uppercase;
        position: absolute;
        top: -18px;
        box-shadow: var(--tfpro-shadow-light);
        left: 20px;
        margin: 0 0 20;
    }
    
    .topfaida-single-post article ul,
    .topfaida-single-post article ol {
        padding-left: 25px;
    }
    
    z .topfaida-pro-breadcrumb {
        list-style-type: none;
        font-size: 13px;
        margin: -10px 0 5px 0;
        padding: 5px 0 0 0;
        align-items: center;
    }
    
    .topfaida-pro-breadcrumb li {
        padding: 5px 2px;
        display: inline;
    }
    
    .topfaida-post-thumbnail img {
        width: 100%;
        overflow: hidden;
        object-fit: cover;
        box-shadow: var(--tfpro-shadow-light);
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }
    /* ----------- topfaida Page head -----------------end}*/
    /* ----------- topfaida Page content -----------------start*/
    
    .topfaida-pro-table-of-content {
        background-color: #e9e9e9;
        border-radius: 10px;
        box-shadow: var(--tfpro-shadow-light);
        padding: 10px;
        margin: 10px 0;
        display: block;
    }
    
    .topfaida-pro-table-of-content h2 {
        border: none !important;
        margin: 0 !important;
        display: inline;
        font-size: 25px;
    }
    
    .topfaida-pro-table-of-content #topfaida-pro-toggle-toc {
        display: inline;
        float: right;
        margin-left: 25px;
    }
    
    .topfaida-pro-table-of-content li::before,
    .tf-pro-also-read-link li::before {
        content: "\f105";
        font-family: var(--tfpro-icon);
        margin: 0 15px 0 0;
    }
    
    .topfaida-pro-table-of-content li {
        margin: 0;
    }
    
    .topfaida-pro-table-of-content a {
        font-size: 15px;
        color: #3b45bd;
    }
    
    .topfaida-pro-table-of-content .heading-level-3,
    .topfaida-pro-table-of-content .heading-level-4,
    .topfaida-pro-table-of-content .heading-level-5,
    .topfaida-pro-table-of-content .heading-level-6 {
        margin-left: 2em;
    }
    
    .entry-meta {
        margin-bottom: 20px;
    }
    
    .entry-meta span {
        margin-right: 17px;
        line-height: 14px;
        font-size: 13px;
        color: rgba(123, 153, 162, 1);
    }
    
    .entry-content {
        margin: 2rem 0;
    }
    
    .tags-links a,
    .cat-links a {
        color: #999999;
        display: inline-block;
        -webkit-box-shadow: 0px 2px 6px rgba(7, 10, 25, .1);
        box-shadow: 0px 2px 6px rgba(7, 10, 25, .1);
        padding: 6px 8px;
        line-height: 1;
        font-size: 13px;
        margin-left: 10px;
        background: #fff;
    }
    
    .tags-links a::before,
    .cat-links a::before {
        content: '#';
        color: #894cab;
        margin-right: 3px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .tags-links a:nth-child(odd)::before {
        color: #ee0000;
    }
    
    .tags-links a:nth-child(even)::before {
        color: #00fd00;
    }
    
    .tags-links a:nth-child(3)::before {
        color: #00dcff;
    }
    
    .tags-links a:nth-child(6)::before {
        color: #e400ff;
    }
    
    .tags-links a:nth-child(9)::before {
        color: #1b00ff;
    }
    /* nav button */
    
    .nav-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-links .nav-previous a,
    .nav-links .nav-next a {
        padding: 10px 20px;
        border-radius: 30px;
        display: inline-block;
        margin: 5px 0;
        color: var(--tf-theme-bg-1);
        font-size: 13px;
    }
    
    .nav-links .nav-previous a::before {
        content: "\f060";
        font-family: var(--tfpro-icon);
        margin: 0 10px 0 0;
    }
    
    .nav-links .nav-next a::after {
        content: "\f061";
        font-family: var(--tfpro-icon);
        margin: 0 0 0 10px;
    }
    
    .comment-content a {
        word-wrap: break-word;
    }
    
    .bypostauthor {
        display: block;
    }
    
    .comments-area .comments-title {
        width: fit-content;
        display: block;
        padding: 5px 15px;
        background: white;
        border-radius: 15px;
        font-size: 20px;
        margin: 0 0 20;
    }
    
    .comments-area ol {
        list-style-type: none;
        margin: 25px 0;
    }
    
    .comments-area ol>li {
        background: #fff;
        border-radius: 15px;
        padding: 10px;
        margin-bottom: 5px;
    }
    
    .comments-area ol>li li {
        padding: 10px;
        border: 1px solid #e9e9e9;
        background: #f3f3f3;
    }
    
    .comments-area li li li {
        background: #f3f3f3;
    }
    
    .comment-meta {
        margin: 0 0 15px 0;
        display: flex;
        justify-content: space-between;
    }
    
    .comments-area .comment-author {
        margin-bottom: 0;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .comments-area .comment-author img {
        border-radius: 50%;
        border: 2px solid #fff;
        width: 50px;
        margin-right: 15px;
        box-shadow: var(--tfpro-shadow-light);
    }
    
    .comments-area .comment-author .says {
        padding: 0 10px;
    }
    /* reply box */
    
    .entry-pings .reply {
        display: none;
    }
    
    .comment-reply-link {
        cursor: pointer;
        box-shadow: var(--tfpro-shadow-light);
        color: var(--tf-theme-txt-clr);
        background: var(--tf-theme-bg-clr);
        border: none;
        border-radius: 3px;
        font-size: 12px;
        letter-spacing: 1px;
        padding: 4px 10px 4px;
        text-transform: uppercase;
        width: auto;
    }
    
    .comment-reply-link:hover {
        color: #fff;
    }
    
    .comment-metadata,
    .comment-list .reply {
        text-align: right;
    }
    
    .comment-list .reply {
        padding: 10px 0;
    }
    
    .comment-metadata .edit-link {
        margin-left: 1em;
    }
    
    .comment-metadata a::before {
        content: "\f017";
        font-family: var(--tfpro-icon);
        margin: 0 10px 0 0;
    }
    
    .comment-list .comment-edit-link:before {
        content: "\f303";
        font-family: var(--tfpro-icon);
        margin: 0 10px 0 0;
    }
    
    .reply .comment-reply-link::before {
        content: "\f3e5";
        font-family: var(--tfpro-icon);
        margin: 0 10px 0 0;
    }
    
    #cancel-comment-reply-link {
        padding: 2px 5px;
        border-radius: 10px;
        box-shadow: var(--tf-shadow-3d);
        color: var(--tf-theme-txt-clr);
        background: var(--tf-theme-bg-clr);
    }
    
    .comment-form-cookies-consent {
        display: flex;
    }
    
    .comment-form-cookies-consent input {
        margin-right: 10px;
    }
    /* sweet alert box */
    
    #alertBox {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    #alertBox .alert-content {
        background: white;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        box-shadow: var(--tfpro-shadow-3d);
        min-width: 250px;
    }
    
    #alertBox #alertMessage {
        display: block;
        margin: 10px;
    }
    
    #alertBox.hide {
        display: none;
    }
    /* ----------- topfaida Page content ----------------- end}*/
    /* ----------- topfaida Importent Element ----------------- */
    /* Back to Top Button Styles */
    
    #backToTopBtn {
        display: none;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #9d9d9d;
        color: white;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 5px;
        transition: all 0.3s ease-out 0s;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
    }
    
    #backToTopBtn:hover {
        box-shadow: var(--tfpro-shadow-dark);
        background: var(--tf-theme-bg-clr);
        color: var(--tf-theme-txt-clr);
    }
    
    #backToTopBtn:hover {
        background-color: #333;
    }
    /* ----------- topfaida Importent Element ----------------- end}*/
    /**
* Generate a table of contents for blog posts based on header tags. */
    
    #uinature_toc {
        border: 1px solid #ddd;
        padding: 10px;
        margin-bottom: 20px;
        position: relative;
        background: #fff;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
    }
    
    .uinature_toc_header {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    
    #uinature_toc ol {
        list-style: none;
        padding-left: 1em;
        counter-reset: item;
    }
    
    #uinature_toc ol ol {
        padding: 0 0 0 1em;
    }
    
    #uinature_toc li:before {
        counter-increment: item;
        content: counters(item, ".") ". ";
    }
    
    #uinature_toc a {
        color: blue;
        text-decoration: none;
    }
    
    #uinature_toc a:hover {
        text-decoration: underline;
    }
    
    #uinature_toc_toggle_div {
        cursor: pointer;
        background-color: #ddd;
        padding: 2px 8px;
        border-radius: 5px;
    }
    /* breadcrumb-list */
    
    .uinature-breadcrumb-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }
    
    .uinature-breadcrumb-item {
        margin: 0 5px;
    }
    
    .uinature-breadcrumb-link,
    .uinature-breadcrumb-name {
        color: #333;
        text-decoration: none;
    }
    
    .uinature-breadcrumb-link:hover {
        color: #007BFF;
    }
    /* Mobile devices */
    
    @media (max-width: 480px) {
        /* grid */
        .tf-grid-card-info p {
            font-size: 12px;
        }
        .tf-grid-category {
            font-size: 10px;
        }
        .tf-slider-card {
            width: 90%;
        }
        .tf-grid-card-bottom {
            font-size: 12px;
        }
        .topfaida-single-post {
            padding: 0 !important;
        }
        #comments {
            padding: 0;
            margin: 0;
        }
        #comments .comment-respond {
            margin: 0;
            padding: 10px;
        }
        .comments-area ol {
            padding: 0;
        }
        .comments-area .comment-author {
            flex-wrap: wrap;
        }
    }
    /* Tablet devices */
    
    @media (min-width: 481px) and (max-width: 768px) {
        .tf-grid-style-9 {
            grid-template-columns: repeat(2, 1fr);
        }
        .tf-slider-card {
            width: 45%;
        }
    }
    /* Laptop devices */
    
    @media only screen and (min-width: 769px) {
        .tf-grid-style-9 {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    /* Desktop devices */
    
    @media only screen and (min-width: 992px) {
        .tf-grid-style-9 {
            grid-template-columns: repeat(4, 1fr);
        }
        .tf-slider-card {
            width: 23%;
        }
    }
    
    .uinature-rating-star {
        cursor: pointer;
        color: #ffd700;
        font-size: 20px;
        margin-right: 5px;
    }