﻿ 

:root {
    --currency-primary-color: #2c3e50;
    --currency-secondary-color: #3498db;
    --currency-background-color: #f8f9fa;
    --currency-positive-color: #27ae60;
    --currency-negative-color: #c0392b;
    --currency-header-gradient: linear-gradient(135deg, #FFA500, #FF8C00);
    --text-color: #333;
    --currency-light-text: #7f8c8d;
    --currency-border-color: #e0e0e0;
}
 
/* nav mobile */
.hamburger-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}

    .hamburger-icon .line {
        position: absolute;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: #222222;
        transition: all 0.3s ease;
    }

    .hamburger-icon .line1 {
        top: 4px;
    }

    .hamburger-icon .line2 {
        top: 11px;
    }

    .hamburger-icon .line3 {
        top: 18px;
    }


.nav-mobile-open .hamburger-icon .line1 {
    transform: rotate(45deg);
    top: 11px;
}

.nav-mobile-open .hamburger-icon .line2 {
    opacity: 0;
}

.nav-mobile-open .hamburger-icon .line3 {
    transform: rotate(-45deg);
    top: 11px;
}

/* category 1 */
.modern-slider-section {
    padding: 30px 0;
    position: relative;
}

.modern-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-loading-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modern-content-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-slide-item {
    padding: 30px;
    background: #fff;
}

.modern-slide-content {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}




.modern-slide-image {
    position: relative;
}

.image-border-effect {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #3498db;
    transform: rotate(1deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.image-wrapper-main {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    height: 200px;
    z-index: 2;
    background: #f8f9fa;
    transition: transform 0.5s ease;
}

    .image-wrapper-main img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: transform 0.5s ease;
    }

    .image-wrapper-main:hover {
        transform: translate(0px, -10px) scale(0.93) rotate(1deg);
        transform-origin: center right;
    }


.content-wrapper-main {
    position: relative;
    z-index: 2;
    direction: rtl;
}


.category-tag {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
}

.red-square-main {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #e74c3c;
    margin-left: 5px;
}

.category-name-main {
    font-size: 16px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.post-title-main {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

    .post-title-main a {
        color: #002B79;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .post-title-main a:hover {
            color: #e74c3c;
        }

.post-summary-main {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 25px;
}

.post-meta-main {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #95a5a6;
    direction: rtl;
    text-align: right;
}

    .post-meta-main i {
        margin-left: 5px;
    }

.slider-dots-container {
    margin-top: -35px;
    margin-bottom: 10px;
    margin-left: 15px;
}

.modern-slider-section .slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* Slick dots customization */
.modern-slider-section .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: left;
    margin-top: 0px;
    padding: 0;
}

    .modern-slider-section .slick-dots li {
        margin: 0 5px;
        width: auto;
        height: auto;
    }

        .modern-slider-section .slick-dots li button {
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background: #bdc3c7;
            transition: all 0.3s ease;
        }

            .modern-slider-section .slick-dots li button:before {
                display: none;
            }

        .modern-slider-section .slick-dots li.slick-active button {
            background: #e74c3c;
            width: 25px;
            border-radius: 5px;
        }

/* Responsive styles */
@media (max-width: 992px) {
    .modern-slide-content {
        padding: 30px 20px !important;
    }

    .post-title-main {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .modern-slide-item .row {
        flex-direction: column-reverse;
    }

    .modern-slide-image {
        min-height: 250px;
        margin-bottom: 20px;
    }

    .modern-slide-content {
        padding: 20px 15px !important;
    }

    .image-border-effect {
        top: -8px;
        right: -8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-width: 2px;
    }

    .post-title-main {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .post-summary-main {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .post-meta-main {
        font-size: 12px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .modern-slide-item {
        padding: 15px;
    }

    .category-tag {
        margin-bottom: 10px;
    }

    .slider-dots-container {
        margin-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .post-title-main {
        font-size: 16px;
    }

    .modern-slide-image {
        min-height: 200px;
    }

    .image-wrapper-main {
        height: 180px;
    }

    .modern-slider-section {
        padding: 20px 0;
    }

    .modern-slide-item {
        padding: 10px;
    }
}

@media (max-width: 768px) {

    .modern-slider-section .slick-list {
        overflow: visible !important;
    }

    .modern-slide-item {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
    }

        .modern-slide-item .row {
            display: flex !important;
            flex-direction: column-reverse;
            height: 100%;
        }

    .modern-slide-image {
        min-height: 220px !important;
        height: 220px !important;
        margin-bottom: 15px;
    }

    .modern-slide-content {
        padding: 15px !important;
        height: auto !important;
    }

    .image-border-effect {
        top: -8px !important;
        right: -8px !important;
        width: calc(100% - 16px) !important;
        height: calc(100% - 16px) !important;
    }

    .slider-dots-container {
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        position: relative !important;
        bottom: auto !important;
    }


    .slider-loading-2 {
        display: none !important;
    }

    .modern-content-slider {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* category 3 */

.slide3-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.slide3-slider {
    position: relative;
    overflow: hidden;
}

.slide3-item {
    padding: 0 5px;
    outline: none;
}

.slide3-post-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide3-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

    .slide3-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: transform 0.5s ease;
    }

.slide3-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 45px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 30%, transparent);
    color: #fff;
    text-align: center;
    z-index: 1;
}

.slide3-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

    .slide3-title a {
        color: #fff;
        text-decoration: none;
    }

    .slide3-title .title a {
        color: #fff;
    }

.slide3-prev,
.slide3-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .slide3-prev:hover,
    .slide3-next:hover {
        background: rgba(255, 255, 255, 1);
    }

.slide3-prev {
    left: 15px;
}

.slide3-next {
    right: 15px;
}

.slick3 .slick-arrow {
    display: none !important;
}

.slide3-slider .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 3;
}

    .slide3-slider .slick-dots li {
        margin: 0 5px;
    }

    .slide3-slider .slick-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.5);
        text-indent: -9999px;
        overflow: hidden;
        padding: 0;
    }

    .slide3-slider .slick-dots .slick-active button {
        background: #354F82;
    }



@media (max-width: 768px) {

    .slide3-caption {
        padding: 15px 15px 50px;
    }

    .slide3-title {
        font-size: 16px;
    }

    .slide3-prev,
    .slide3-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* category 4 */
.slideshow {
    text-align: left;
}

.item-slide {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 2px;
}

.section .section-content .title {
    font-family: 'Nebesht';
}

.section-content .slider-item {
    padding: 0 10px;
}

.d-flex {
    display: flex;
}

.left-box {
    width: 20%;
    background-color: #e0f7fa;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
    -webkit-box-shadow: -7px 0px 5px -6px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: -7px 0px 5px -6px rgba(0, 0, 0, 0.36);
    box-shadow: -7px 0px 5px -6px rgba(0, 0, 0, 0.36);
}

    .left-box h2 {
        font-size: 20px;
        font-weight: bold;
        margin: 0;
    }

    .left-box p {
        font-size: 22px;
        color: #333;
        line-height: 24px;
    }

.slideshow button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

    .slideshow button:hover {
        color: #007bff;
    }

.right-box {
    width: 80%;
    display: flex;
    overflow: hidden;
    position: relative;
}

.slider-container-4 {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 5px;
}

.slider-item {
    flex: 0 0 calc(25% - 15px);
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .slider-item:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

.slide-blue .item-slide {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

    .slide-blue .item-slide.active .image img {
        border: 3px solid #58A1C6;
    }

    .slide-blue .item-slide .title {
        font-size: 16px;
        margin: 0px 12px 0px;
        height: 30px;
        line-height: 19px;
        font-weight: normal !important;
        text-align: right;
    }

    .slide-blue .item-slide .image {
        padding: 10px;
        aspect-ratio: 1 / 1;
        position: relative;
    }

        .slide-blue .item-slide .image img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            object-fit: fill;
        }

    .slide-blue .item-slide .info {
        font-size: 13px;
        color: #777;
        padding: 10px;
        text-align: right;
        border-radius: 0 0 8px 8px;
    }



@media (max-width: 767.98px) {
    .slideshow {
        text-align: center;
    }

    .slide-blue .item-slide .info {
        display: none;
    }

    .left-box {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
        padding: 5px 10px;
    }

        .left-box h2 {
            font-size: 15px;
            font-weight: bold;
            margin: 0;
        }

        .left-box p {
            font-size: 14px;
            color: #333;
            line-height: 20px;
        }

    .right-box {
        width: 100%;
    }

    .slider-item {
        flex: 0 0 100%;
    }
}


.slider-container-4 {
    transition: transform 0.5s ease;
}

.slider-item {
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}

    .slider-item.blur {
        filter: blur(5px);
        opacity: 0.7;
    }


.animated-text {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 1s ease;
}

    .animated-text.show {
        opacity: 1;
        transform: translateY(0);
    }








@media (max-width: 767.98px) {
    .slide-blue .d-flex {
        flex-direction: column;
    }

    .slide-blue .left-box {
        width: 100%;
        margin: 0 0 15px 0;
        padding: 15px;
        border-radius: 8px !important;
        box-shadow: none;
        order: 1 !important;
    }

        .slide-blue .left-box h2 {
            font-size: 18px;
            margin: 0 0 10px 0;
        }

        .slide-blue .left-box p {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

    .slide-blue .right-box {
        width: 100%;
        order: 2 !important;
        padding: 0;
    }

    .slide-blue .slider-container-4 {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 15px 10px;
    }

    .slide-blue .slider-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .slide-blue .slideshow {
        display: none;
    }

    .slide-blue .item-slide .info {
        display: none;
    }

    .slide-blue .item-slide .title {
        font-size: 15px;
        line-height: 1.4;
        height: auto;
        margin: 10px 0;
    }
}
 

/* category 5 */

.section-cat-slider .section-content {
    width: 100%;
    max-height: 364px;
    overflow: hidden;
}

.sec5 .section-cat-slider h3,
.sec5 .section-cat-slider.h3 {
    font-size: 18px;
    padding-top: 20px;
}

.section-cat-slider .slider-row {
    margin-left: -12px;
    margin-right: -12px;
}

    .section-cat-slider .slider-row .slider-col {
        padding-left: 12px;
        padding-right: 12px;
    }

.section-cat-slider .post-item .title {
    font-size: 16px;
    line-height: 24px;
}

.section-cat-slider .img-slider-ratio {
    --bs-aspect-ratio: 76.67% !important;
}

    .section-cat-slider .img-slider-ratio img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

#category_slider_1 .slick-slide .post-content-3 {
    flex-grow: 1;
    margin-left: 15px;
    direction: rtl;
    overflow: hidden;
    height: 100px;
    text-align: right;
    display: flex;
    align-items: center;
}
 

.post-item-2 {
    width: 100%;
    position: relative;
    background-color: initial;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
}


@keyframes smooth-float {
    0% {
        transform: translateY(0);
        background-color: initial;
    }

    50% {
        background-color: rgba(255, 0, 0, 0.2);
    }

    100% {
        transform: translateY(-5px);
        background-color: rgba(0, 0, 255, 0.2);
    }
}


@keyframes smooth-return {
    0% {
        transform: translateY(-5px);
        background-color: rgba(0, 0, 255, 0.2);
    }

    50% {
        background-color: rgba(158, 158, 158, 0.2);
    }

    100% {
        transform: translateY(0);
        background-color: initial;
    }
}

.post-item-2:hover {
    animation: smooth-float 0.8s ease-out forwards;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-item-2:not(:hover) {
    animation: smooth-return 0.8s ease-out forwards;
}

#category_slider_1 .post-text-content {
    position: absolute;
    right: 120px;
}

#category_slider_1 .title-xy .img-link {
    font-family: 'Nebesht-bold';
}

.media-icon-3 {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.post-item-2.rounded-box { 
    border-radius: 200px;
    padding: 0 10px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100px;
}

.post-item-2 .d-flex {
    width: 100%;
}

.post-image-slide-2 {
    flex-shrink: 0;
    position: relative;
    margin-left: 10px;
}

.title-xy .img-link {
    font-size: 17px;
}

.post-content-3 {
    flex-grow: 1;
    margin-left: 15px;
    direction: rtl;
    overflow: hidden;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#category_slider_1 .title-xy {
    font-size: 18px;
    font-family: 'Nebesht';
    font-weight: normal !important;
    width: 100%;
    margin-bottom: 5px;
    padding-left: 15px;
}

#category_slider_1 .description {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 22px;
    width: 100%;
}

#category_slider_1 .slick-slide img {
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
}

/* Responsive styles for mobile */
@media (max-width: 767px) {
    .section-cat-slider .post-item-2.rounded-box {
        height: auto;
        min-height: 100px;
        padding: 10px;
        border-radius: 15px !important;
    }

    #category_slider_1 .title-xy .img-link {
        font-size: 15px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
    }

    #category_slider_1 .description {
        font-size: 13px !important;
        margin-top: 5px;
    }

    #category_slider_1 .slick-slide img {
        width: 70px !important;
        height: 70px !important;
    }

    .post-content-3 {
        margin-left: 10px !important;
    }

    .post-image-slide-2 {
        margin-left: 5px !important;
    }

    .post-item-2 .d-flex {
        flex-wrap: nowrap;
    }
}


#category_slider_1 .title-xy .img-link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}


/* category 6 */
.midea-gallery-wrapper {
    position: relative;
    margin: 5px;
}

.midea-gallery-box {
    background-color: #002773;
    position: relative;
    overflow: hidden;
}

    .midea-gallery-box::before {
        content: "\f03e";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 300px;
        color: rgba(255, 255, 255, 0.05);
        z-index: 0;
    }


.midea-gallery-items {
    max-height: 500px;
    overflow-y: auto;
    padding-left: 10px;
    scrollbar-width: thin;
    scrollbar-color: #64b5f6 #002773;
}

    .midea-gallery-items::-webkit-scrollbar {
        width: 6px;
    }

    .midea-gallery-items::-webkit-scrollbar-track {
        background: #002773;
    }

    .midea-gallery-items::-webkit-scrollbar-thumb {
        background-color: #64b5f6;
        border-radius: 6px;
    }

.midea-gallery-item {
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .midea-gallery-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-5px);
    }

    .midea-gallery-item.active-item {
        background: #DC0008;
    }

    .midea-gallery-item i {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .midea-gallery-item:hover i {
        color: white;
        transform: scale(1.2);
    }

    .midea-gallery-item h3,
    .midea-gallery-item h4 {
        color: white;
        transition: color 0.3s ease;
    }

@media (max-width: 576px) {

    .midea-gallery-item h3,
    .midea-gallery-item h4 {
        font-size: 16px;
        overflow: hidden;
        height: 20px;
        display: block;
    }
}

.midea-gallery-item:hover h3,
.midea-gallery-item:hover h4 {
    color: #bbdefb;
}


.midea-gallery-display-content {
    animation: mideaFadeIn 0.5s ease;
}

@keyframes mideaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.midea-gallery-image img {
    transition: transform 0.5s ease;
}

.midea-gallery-display-content:hover .midea-gallery-image img {
    transform: scale(1.05);
}

.midea-image-overlay {
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.midea-post-date {
    background: #DC0008;
}

    .midea-post-date::before {
        content: "";
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 80%;
        background: white;
        border-radius: 0 5px 5px 0;
    }


@media (max-width: 767.98px) {
    .midea-gallery-items {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        max-height: unset;
        overflow-y: visible;
        padding-left: 0;
    }

    .midea-gallery-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }

    .midea-gallery-display {
        height: 400px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .midea-gallery-item {
        flex: 1 1 100%;
    }
}

/* category 7 */
.map {
    width: 100%;
    height: auto;
    max-height: 500px;
}

.map_holder {
    width: 100%;
    height: auto;
    max-height: 434px;
    overflow: hidden;
}

.map .btn:hover {
    color: #fff !important;
}


.sm_state_AFG1767 {
    fill: #F54B01 !important;
    stroke: #D14301 !important;
}

    .sm_state_AFG1767:hover {
        fill: #D14301 !important;
    }

.map_holder .button_list {
    overflow-y: auto;
    width: 100%;
    height: 55px;
}

.map_holder .province-btn {
    height: 30px;
}



.map_holder {
    padding-left: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto; 
    /* For Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

    /* For Chrome, Edge, Safari */
    .map_holder::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .map_holder::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .map_holder::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

        .map_holder::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }


    /* category 7 part 2 */
     
    .map_holder .post-card-animate {
        animation: slideIn 0.5s ease forwards;
        opacity: 0;
        transform: translateX(-50px);
    }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.map_holder .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

    .map_holder .post-card:hover .post-image-container img {
        transform: scale(1.05);
    }

.map_holder .post-title a:hover {
    color: #F54B01;
}

.map_holder .btn-default {
    background-color: #F54B01;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .map_holder .btn-default:hover {
        background-color: #D14301;
        transform: translateY(-2px);
    }


.map_holder .post-card {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 5px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 75px;
}

.map_holder .post-image-container {
    flex: 0 0 22%;
    overflow: hidden;
    height: 100%;
}

    .map_holder .post-image-container img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: transform 0.5s ease;
    }

.map_holder .post-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    background-color: #fff;
}

.map_holder .post-title {
    color: #333;
    margin-bottom: 3px;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 19px;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 0px;
}


.map_holder .post-summary {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.2em;
    font-size: 15px;
    line-height: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    font-family: 'Nebesht';
}

.map_holder .btn-read-more {
    background-color: #F54B01;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

    .map_holder .btn-read-more:hover {
        background-color: #D14301;
        transform: translateY(-2px);
    }
     
#load-all-btn.btn {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgb(184, 3, 3);
    border: none;
}


@media (max-width: 576px) {
    #load-all-btn.btn {
        font-size: 14px;
        padding: 2px 10px;
    }

    .map {
        margin-top: 15px;
    }

    .map_holder .post-card {
        flex-direction: row-reverse;
        /* تصویر در راست، متن در چپ */
        height: 120px;
        /* ارتفاع مناسب برای موبایل */
        margin-bottom: 10px;
    }

    .map_holder .post-image-container {
        flex: 0 0 33.33% !important;
        /* نسبت 4 از 12 */
        height: 100% !important;
        max-height: 120px;
    }

    .map_holder .post-content {
        flex: 0 0 66.66% !important;
        /* نسبت 8 از 12 */
        padding: 8px 12px !important;
        justify-content: center;
    }

    .map_holder .post-title {
        -webkit-line-clamp: 2 !important;
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }

    .map_holder .post-summary {
        -webkit-line-clamp: 2 !important;
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .map_holder .btn-read-more {
        padding: 4px 10px !important;
        font-size: 12px !important;
    }
}

/* category 8 */

.gallery-video {
    max-width: 100%;
    background: #002773;
    height: auto; 
    padding: 10px 0 20px;
    overflow: hidden;
}

.titlee {
    width: 100%;
    height: auto;
    padding: 5px;
    overflow: hidden;
}

    .titlee h2 {
        font: 20px/30px 'Nebesht-bold';
        color: #fff;
        position: relative;
        float: right;
        margin-bottom: 0.5rem;
    }

        .titlee h2 span {
            color: rgba(255, 255, 255, 0.69);
            font: 20px/30px 'Nebesht-bold';
            float: right;
            margin-left: 10px;
        }

.video-player-container {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

    .video-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .video-poster:hover img {
        opacity: 1;
    }
     
.video-poster {
    position: relative;
    overflow: hidden;
}



.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

    .play-button i {
        color: #fff;
        font-size: 30px;
        margin-left: 5px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .play-button:hover { 
        transform: translate(-50%, -50%) scale(1.15);
    }

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: ripple 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

    .ripple:nth-child(2) {
        animation-delay: 0.8s;
    }

    .ripple:nth-child(3) {
        animation-delay: 1.6s;
    }

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }

    70% {
        opacity: 0.4;
    }

    99% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}



/* end wave */

.video-iframe-container {
    width: 100%;
    height: 400px;
}

.video-iframe,
.video-iframe iframe,
.video-iframe video {
    width: 100%;
    height: 100%;
    border: none;
}

.fb-video {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 15px;
    color: #fff;
    position: absolute;
    top: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

    .video-info h2 a {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .video-info h2 a:hover {
            color: #f0f0f0;
        }

    .video-info .daat {
        display: flex;
        flex-wrap: wrap;
        margin-top: 10px;
    }

        .video-info .daat li {
            margin-left: 15px;
            font-size: 14px;
        }

.video-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}


.video-l {
    position: relative;
}
 

.sb-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    height: 100%;
}

.sb-content {
    padding-left: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 400px;
    /* For Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

    /* For Chrome, Edge, Safari */
    .sb-content::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .sb-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .sb-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

        .sb-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }
 

.ite {
    float: right;
    width: 100%;
    position: relative;
    height: auto;
    padding: 0px 60px 0px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.1);
}

    .ite:last-child {
        margin-bottom: 0;
    }

    .ite:hover {
        transform: translateX(-5px);
        background: rgba(0, 39, 115, 0.3);
    }

    .ite.active-video {
        background: linear-gradient(to right, rgba(0, 39, 115, 0.7), rgba(0, 0, 0, 0.3));
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .ite.playing-video {
        border-right: 3px solid #dc0008;
    }

    .ite .ni {
        float: right;
        position: absolute;
        right: 15px;
        z-index: 9;
        color: #fff;
        font-size: 50px;
        padding: 12px 0;
        text-align: center;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .ite.active-video .ni,
    .ite:hover .ni {
        opacity: 1;
        transform: scale(1.1);
    }

    .ite .thumb {
        width: 30%;
        height: 90px;
        float: right;
        background: #000;
        border-radius: 8px;
        position: relative;
        transition: all 0.3s ease;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

        .ite .thumb img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0.8;
            object-fit: cover;
        }

    .ite.active-video .thumb img,
    .ite:hover .thumb img {
        opacity: 1;
        transform: scale(1.05);
    }

    .ite a.i-play {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        text-align: center;
        box-sizing: border-box;
        z-index: 9;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        border-radius: 50%;
        background: #fff;
        transition: all 0.3s ease;
        color: #333 !important;
    }

    .ite:hover a.i-play {
        transform: translate(-50%, -50%) scale(1.1);
        color: #dc0008 !important;
        background: rgba(255, 255, 255, 0.9);
    }


.video-duration-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(2px);
}

.now-playing-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(220, 0, 8, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(2px);
    animation: pulse 2s infinite;
}

    .now-playing-badge i {
        margin-left: 5px;
    }

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.ite .det {
    width: 70%;
    float: right;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

    .ite .det h2 {
        width: 100%;
        line-height: 20px;
        margin-bottom: 7px;
        float: right;
        transition: all 0.3s ease;
    }

        .ite .det h2 a {
            font-weight: normal;
            font-family: "Estedad-Bold";
            color: rgba(255, 255, 255, 0.85);
            float: right;
            font-size: 14px;
            font-weight: normal;
            transition: all 0.3s ease;
        }

.ite.active-video .det h2 a,
.ite:hover .det h2 a {
    color: #fff;
}

.ite .det .daat {
    width: 100%;
    float: right;
    transition: all 0.3s ease;
    padding: 5px 0;
}

    .ite .det .daat li {
        width: auto;
        font-family: "Estedad-Medium";
        color: #ddd;
        height: auto;
        float: right;
        font-size: 12px;
        font-weight: normal;
        margin-bottom: 5px;
        margin-left: 12px;
    }

        .ite .det .daat li a {
            color: #ddd;
            transition: color 0.3s ease;
        }

            .ite .det .daat li a:hover {
                color: #dc0008;
            }


@media (max-width: 768px) {

    .video-info h2 a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .video-l {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .ite {
        padding: 5px 0;
    }

        .ite .ni {
            display: none;
        }

        .ite .thumb {
            width: 100px;
            height: 70px;
        }

        .ite .det {
            width: calc(100% - 110px);
        }

            .ite .det .daat {
                display: none;
            }
}

/* category 9 */

.panel_20 {
    border: 1px solid #aaa;
    padding: 10px;
    border-radius: 10px;
    background-color: #FFF;
}

.section-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.section-title-x-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-x {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    padding-right: 40px;
}

    .section-title-x::before {
        position: absolute;
        top: 14px;
        right: 2px;
        content: "";
        width: 23px;
        height: 8px;
        background-color: #FFC90E;
        border-radius: 3px;
    }

    .section-title-x::after {
        position: absolute;
        top: 14px;
        right: 28px;
        content: "";
        width: 8px;
        height: 8px;
        background-color: #AAAAAA;
        border-radius: 8px;
    }

.btn-view-all {
    background-color: #4e73df;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn-view-all:hover {
        background-color: #3a5bc7;
        text-decoration: none;
        color: white;
        transform: translateX(-5px);
    }

.category-tabs-fonix-container {
    direction: ltr;
}

.category-tabs-fonix {
    border-bottom: none;
}

    .category-tabs-fonix .nav-item {
        margin-left: 10px;
    }

@media (max-width: 767px) {
    .category-tabs-fonix .nav-item {
        margin-left: 0;
    }
}

.category-tabs-fonix .nav-link {
    border: none;
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

    .category-tabs-fonix .nav-link.active {
        background-color: #4e73df;
        color: white;
    }

    .category-tabs-fonix .nav-link:hover:not(.active) {
        background-color: #f1f1f1;
    }

.category-tabs-fonix .dropdown-menu {
    border-radius: 0 0 4px 4px;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.category-tabs-fonix .dropdown-item {
    padding: 8px 15px;
    transition: all 0.2s;
}

    .category-tabs-fonix .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #4e73df;
    }

.posts-list {
    height: 420px; 
    overflow-x: hidden; 
}

.post-item-small {
    padding: 5px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 3px;
    border-radius: 5px;
}

    .post-item-small:last-child {
        border-bottom: none;
    }

    .post-item-small:hover {
        background-color: #303890;
        transform: translateX(-5px);
        color: #FFF;
    }

        .post-item-small:hover .post-meta-fonix span {
            color: #FFF;
        }

    .post-item-small.active {
        background-color: #EF4325;
        color: #FFF;
    }


.post-title {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 20px;
}

    .post-title a {
        color: #333;
        text-decoration: none;
        transition: all 0.2s;
    }

        .post-title a:hover {
            color: #4e73df;
        }

.post-meta-fonix {
    font-size: 11px;
}

    .post-meta-fonix span {
        margin-left: 10px;
    }

    .post-meta-fonix i {
        margin-left: 3px;
    }

.post-thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

    .post-thumbnail img {
        transition: all 0.3s;
        height: 65px;
    }

    .post-thumbnail:hover img {
        transform: scale(1.05);
    }

.featured-post {
    position: sticky;
    top: 20px;
}

.featured-post-inner {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.featured-image {
    overflow: hidden;
}

    .featured-image img {
        width: 100%;
        height: auto;
        transition: all 0.5s;
    }

.featured-post-inner:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 20px;
}


.featured-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

    .featured-title a:hover {
        color: #4e73df;
    }

.featured-meta {
    font-size: 13px;
    color: #777;
}

    .featured-meta span {
        margin-left: 10px;
    }

    .featured-meta i {
        margin-left: 3px;
    }


.btn-read-more {
    display: inline-block;
    background-color: #4e73df;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-read-more:hover {
        background-color: #3a5bc7;
        color: white;
        transform: translateX(-5px);
    }




.posts-list {
    padding-left: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 400px;
    /* For Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.tab-content .row {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* For Chrome, Edge, Safari */
.posts-list::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.posts-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.posts-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

    .posts-list::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }


     

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.section-x {
    padding-top: 20px;
    padding-bottom: 20px;
}

    .section-x.midea-gallery-box {
        padding: 10px 0 20px 0;
    }

@media (max-width: 767.98px) {
    .post-meta-fonix {
        font-size: 12px;
        color: #777;
        display: none;
    }

        .post-meta-fonix span {
            margin-left: 5px;
        }
}


/* category 10 */
.panel_20 {
    border: 1px solid #aaa;
    padding: 10px;
    border-radius: 10px;
    background-color: #FFF;
}

.section-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}


.section-title-x-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-x {
    font-size: 15px;
    font-weight: normal;
    color: #333;
    margin: 0;
    position: relative;
    padding-right: 40px;
}

@media (max-width: 767px) {
    .section-title-x {
        font-size: 18px;
        line-height: 31px;
    }

    .post-thumbnail {
        margin-bottom: 0px;
    }

    .slide-thumbnail {
        margin-bottom: 10px;
    }


    .panel_20 {
        padding: 5px;
    }

    .section-header {
        margin-bottom: 0px;
    }
}

.section-title-x::before {
    position: absolute;
    top: 6px;
    right: 2px;
    content: "";
    width: 23px;
    height: 8px;
    background-color: #303890;
    border-radius: 3px;
}

.section-title-x::after {
    position: absolute;
    top: 6px;
    right: 28px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #EF4325;
    border-radius: 8px;
}

/* Button Styles */
.btn-view-all,
.btn-read-more {
    background-color: #4e73df;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-view-all:hover,
    .btn-read-more:hover {
        background-color: #3a5bc7;
        color: white;
        transform: translateX(-5px);
    }

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

    .btn-outline-light:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: #FFF;
    }

/* Category Tabs Styles */
.category-tabs-slide-container {
    margin-top: 15px;
    direction: ltr;
}

.category-tabs-slide {
    border-bottom: none;
}

    .category-tabs-slide .nav-item {
        margin-left: 10px;
    }

    .category-tabs-slide .nav-link {
        border: none;
        color: #555;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s;
    }

        .category-tabs-slide .nav-link.active {
            background-color: #4e73df;
            color: white;
        }

        .category-tabs-slide .nav-link:hover:not(.active) {
            background-color: #f1f1f1;
        }

    .category-tabs-slide .dropdown-menu {
        border-radius: 0 0 4px 4px;
        border: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .category-tabs-slide .dropdown-item {
        padding: 8px 15px;
        transition: all 0.2s;
    }

        .category-tabs-slide .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #4e73df;
        }

@media (max-width: 767px) {
    .category-tabs-slide-container {
        margin-top: 0;
    }

    .category-tabs-slide .nav-item {
        margin-left: 0;
    }
}

/* Slides List Styles */
.slides-list {
    /* height: 420px; */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px;
}

.slide-item-small {
    padding: 5px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 3px;
}

    .slide-item-small:last-child {
        border-bottom: none;
    }

    .slide-item-small:hover { 
        background-color: #bdd8f7;
        transform: translateX(5px);
    }

/* Slide Content Styles */
.slide-title,
.featured-title {
    font-size: 16px; 
}

    .slide-title a,
    .featured-title a {
        color: #333;
        text-decoration: none;
        transition: all 0.2s;
    }

        .slide-title a:hover,
        .featured-title a:hover {
            color: #4e73df;
        }

.slide-meta-items,
.featured-meta {
    font-size: 11px;
    color: #777;
}

    .slide-meta-items span,
    .featured-meta span {
        margin-left: 10px;
    }

    .slide-meta-items i,
    .featured-meta i {
        margin-left: 3px;
    }



/* Thumbnail Styles */
.slide-thumbnail,
.featured-image {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

    .slide-thumbnail img {
        transition: all 0.3s;
        height: 65px;
    }

    .featured-image img {
        transition: all 0.3s;
    }

    .featured-image:hover {
        transform: scale(1.05);
    }

    .slide-thumbnail:hover img {
        transform: scale(1.05);
    }

/* Featured Content Styles */
.featured-content {
    padding: 10px;
}

.featured-title {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 20px;
}

/* Slide Post Styles */
.slide-post {
    position: sticky;
    top: 20px;
    height: 420px;
}

.slide-post-inner-bg {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 8px;
}


.featured-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f0f0f0;
    background-size: 100% 100%;
    transition: transform 0.5s ease;
    z-index: 1;
}


.featured-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    color: white;
    z-index: 2;
}

.media-icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 4px;
}

/* Overlay Text Styles */
.featured-title-overlay {
    color: white !important;
    font-size: 18px; 
}

.featured-meta-overlay {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px; 
}

.featured-excerpt-overlay {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}
 


.slides-list {
    padding-left: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 400px;
    /* For Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

    /* For Chrome, Edge, Safari */
    .slides-list::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .slides-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .slides-list::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

        .slides-list::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

         

/* Animation Styles */
@keyframes fadeIn2 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fadeIn2 {
    animation-name: fadeIn2;
}

/* Icon Styles */
#slidePostContainer .fas {
    font-size: 14px !important;
    margin: 0 10px 0 auto;
}

.section-category-slide {
    background-color: #002773;
}

@media (max-width: 576px) {

    .featured-content-overlay {
        padding: 10px;
    }

    .slide-post {
        height: 300px;
    }
}




@media (max-width: 767.98px) {
    .post-item-small .post-thumbnail img {
        width: 100%;
        height: 60px;
        max-width: 80px;
    }

    
    .posts-list .align-items-center {
        align-items: flex-start !important;
    }

    .slide-item-small .align-items-center {
        align-items: flex-start !important;
    }


    .post-title {
        font-size: 14px;
        margin-bottom: 0;
        padding-top: 10px;
    }
}

/* category 11 */
.quarter-circle-border {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 125%;
    height: 125%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #DC0008;
    border-right-color: #DC0008;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(70deg);
    transition: all 0.6s ease-in-out;
    box-sizing: border-box;
    clip-path: polygon(0 0, 70% 0, 50% 50%, 0 50%);
}

.slide-content:hover .quarter-circle-border {
    border-color: #7389B2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(360deg);
    border-width: 3px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}

.mnh-slider-container {
    background: #f5f5f5;
    padding: 20px 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-header {
    margin-bottom: 15px;
    padding: 0 15px;
}

.slider-title {
    padding-right: 20px;
}

    .slider-title,
    .slider-title a {
        position: relative;
        font-size: 24px;
        color: #002773;
        font-family: 'Nebesht-bold';
        display: inline-block;
    }

        .slider-title .title-border {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 50px;
            background: #dc0008;
            border-radius: 5px 0 0 5px;
        }

.mnh-slider-wrapper {
    position: relative;
}

.mnh-slider- {
    position: relative;
    margin: 0 -10px;
}

.mnh-slide-item {
    padding: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .mnh-slide-item.active-video {
        position: relative;
    }

        .mnh-slide-item.active-video::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 10px;
            left: 10px;
            height: 3px;
            background: #dc0008;
            border-radius: 3px;
        }

.slide-content {
    direction: rtl;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mnh-slide-item:hover .slide-content {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.circle-image {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-left: 15px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.h-slide-details {
    flex: 1;
}

    .h-slide-details h3 a {
        margin-bottom: 10px;
        color: #002773;
        line-height: 1.4;
        -moz-transition: all .5s ease-in-out 0s;
        -webkit-transition: all .5s ease-in-out 0s;
        transition: all .5s ease-in-out 0s;
    }

        .h-slide-details h3 a:hover {
            color: #DC0008;
        }

.slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .slide-meta span {
        font-size: 14px; 
    }

    .slide-meta i {
        margin-left: 3px;
    }


.mnh-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.mnh-slider-prev,
.mnh-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

    .mnh-slider-prev:hover,
    .mnh-slider-next:hover {
        background: #dc0008;
        color: #fff;
    }

.mnh-slider-prev {
    margin-right: -57px;
    display: block !important;
}

.mnh-slider-next {
    margin-left: -57px;
    display: block !important;
}

@media (max-width: 768px) {


    .slider-title {
        font-size: 20px;
    }

    .circle-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {

    .mnh-slider- {
        margin: 0 -5px;
    }

    .mnh-slide-item {
        padding: 0 5px;
    }

    .slide-content {
        padding: 13px 23px;
    }

    .h-slide-details h3 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .slide-meta {
        gap: 0;
    }

        .slide-meta span {
            font-size: 14px;
        }
}

/* category 12 */

#custom-horizontal-slider {
    background: #f5f5f5;
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
 
    #custom-horizontal-slider .slider-title {
        position: relative;
        font-size: 24px;
        color: #002773;
        font-family: 'Nebesht-bold';
        display: inline-block;
        padding-right: 20px;
    }

        #custom-horizontal-slider .slider-title .title-border {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 50px;
            background: #dc0008;
            border-radius: 5px 0 0 5px;
        }

    #custom-horizontal-slider .main-2-slider-horizantal-wrapper {
        position: relative;
        min-height: 140px;
    }

    #custom-horizontal-slider .main-2-slider-horizantal {
        position: relative;
        margin: 0 -10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #custom-horizontal-slider .slide-item {
        padding: 0 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        #custom-horizontal-slider .slide-item.active-video {
            position: relative;
        }

            #custom-horizontal-slider .slide-item.active-video::after {
                content: '';
                position: absolute;
                bottom: -10px;
                right: 10px;
                left: 10px;
                height: 3px;
                background: #dc0008;
                border-radius: 3px;
            }

    #custom-horizontal-slider .slide-content {
        direction: rtl;
        background: #fff;
        border-radius: 10px;
        padding: 15px 20px 15px 10px;
        display: flex;
        align-items: center;
        height: 100%;
        min-height: 100px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    #custom-horizontal-slider .slide-item:hover .slide-content {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    #custom-horizontal-slider .circle-image {
        position: relative;
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin-left: 15px;
    }

    #custom-horizontal-slider .image-wrapper {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

        #custom-horizontal-slider .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

    #custom-horizontal-slider .slide-details {
        flex: 1;
    }

        #custom-horizontal-slider .slide-details h3 a {
            margin-bottom: 10px;
            color: #002773;
            line-height: 1.4;
            transition: all 0.5s ease-in-out;
        }

            #custom-horizontal-slider .slide-details h3 a:hover {
                color: #DC0008;
            }

    #custom-horizontal-slider .slide-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

        #custom-horizontal-slider .slide-meta span {
            font-size: 14px;
            color: #666;
        }

        #custom-horizontal-slider .slide-meta i {
            margin-left: 3px;
        }

    #custom-horizontal-slider .slider-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 2;
    }

    #custom-horizontal-slider .slider-prev,
    #custom-horizontal-slider .slider-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
    }

        #custom-horizontal-slider .slider-prev:hover,
        #custom-horizontal-slider .slider-next:hover {
            background: #dc0008;
            color: #fff;
        }

    #custom-horizontal-slider .slider-prev {
        margin-right: -57px;
    }

    #custom-horizontal-slider .slider-next {
        margin-left: -57px;
    }

    #custom-horizontal-slider .sec12-quarter-circle-border {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 125%;
        height: 125%;
        border-radius: 50%;
        border: 4px solid transparent;
        border-top-color: #002773;
        border-right-color: #002773;
        border-left-color: transparent;
        border-bottom-color: transparent;
        transform: rotate(70deg);
        transition: all 0.6s ease-in-out;
        box-sizing: border-box;
        clip-path: polygon(0 0, 70% 0, 50% 50%, 0 50%);
    }

    #custom-horizontal-slider .slide-content:hover .sec12-quarter-circle-border {
        border-color: red;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: rotate(360deg);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    #custom-horizontal-slider .main-2-slider-horizantal {
        margin: 10px -5px;
    }

    #custom-horizontal-slider .slide-item {
        padding: 0 5px;
    }

    #custom-horizontal-slider .slider-prev {
        margin-right: -20px;
    }

    #custom-horizontal-slider .slider-next {
        margin-left: -20px;
    }
}

@media (max-width: 768px) {
    #custom-horizontal-slider {
        padding: 20px 0;
    }

        #custom-horizontal-slider .slider-title {
            font-size: 20px;
        }

        #custom-horizontal-slider .circle-image {
            width: 60px;
            height: 60px;
            min-width: 60px;
            margin-left: 10px;
        }

        #custom-horizontal-slider .slide-content {
          
            min-height: 100px;
            flex-direction: column;
            text-align: center;
        }

        #custom-horizontal-slider .slide-details {
            margin-top: 10px;
            width: 100%;
        }

            #custom-horizontal-slider .slide-details h3 a {
                font-size: 18px;
            }

        #custom-horizontal-slider .slide-meta span {
            font-size: 14px;
        }

        #custom-horizontal-slider .sec12-quarter-circle-border {
            width: 110%;
            height: 110%;
        }
}

@media (max-width: 576px) {
    

    #custom-horizontal-slider .slider-title {
        font-size: 18px;
        padding-right: 15px;
    }

        #custom-horizontal-slider .slider-title .title-border {
            height: 40px;
        }

    #custom-horizontal-slider .slide-content {
        
        min-height: 130px;
    }

    #custom-horizontal-slider .circle-image {
        width: 100px;
        height: 100px;
        min-width: 50px;
        margin-left: 0;
    }

    #custom-horizontal-slider .slider-controls {
        display: none;
    }
}

/* category 13 */

.authors-widget-container { 
    padding: 10px 5px;
}

.sec13 {
    background: #DC0008;
    padding: 15px 0;
}

    .sec13 .posts-grid {
        display: grid;
        /* grid-template-columns: repeat(3, 1fr); */
        /* grid-template-rows: repeat(4, 1fr); */
        gap: 10px;
    }

    .sec13 .grid-item {
        transition: all 0.3s ease;
        position: relative;
        margin-bottom: 10px;
    }

        .sec13 .grid-item:hover {
            transform: translateY(-5px);
        }

    .sec13 .item-content {
        display: flex;
        height: 100%;
        overflow: hidden;
    }

    .sec13 .image-container {
        position: relative;
        width: 120px;
        height: 80px;
        min-width: 120px;
        margin-left: 10px;
        border-radius: 10px 0 10px 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .sec13 .grid-item::before {
        content: ' ';
        width: 10px;
        height: 2px;
        display: block;
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #DC0008;
    }

    .sec13 .grid-item::after {
        content: ' ';
        width: 2px;
        height: 10px;
        display: block;
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #DC0008;
    }

    .sec13 .post-image {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: all 0.3s ease;
    }

    .sec13 .grid-item:hover .post-image {
        filter: grayscale(100%);
    }

    .sec13 .corner-border {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 25px;
        height: 25px;
        border-right: 3px solid #dc0008;
        border-top: 3px solid #dc0008;
        transition: all 0.3s ease;
    }

    .sec13 .text-content {
        flex: 1;
    }

    .sec13 .post-title {
        position: relative;
        margin-bottom: 5px;
    }

        .sec13 .post-title a {
            color: #AEAFB0;
            transition: color 0.3s ease;
            font-size: 19px;
            line-height: 12px;
        }

            .sec13 .post-title a i {
                margin-top: 3px;
                font-size: 5px;
            }

    .sec13.grid-item:hover .post-title a {
        color: #dc0008;
    }

    .sec13.post-excerpt {
        font-size: 15px;
        color: #000;
    }

    .sec13.arrow-box i {
        margin-left: 5px;
    }

@media (max-width: 992px) {
    .sec13 .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .sec13 .posts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}


@media (max-width: 768px) {

    .sec13 .image-container {
        width: 100%;
        height: 150px;
    }

    .sec13 .text-content {
        margin-top: 10px;
    }

    .sec13.posts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .sec13 .item-content {
        flex-direction: column;
    }

    .sec13.image-container {
        width: 100%;
        height: 180px;
        margin-left: 0;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .sec13.text-content {
        padding: 0 5px;
    }

    .sec13 .post-title a {
        font-size: 16px;
        line-height: 1.4;
    }

    .sec13 .post-excerpt {
        font-size: 14px;
    }

    .sec13 .grid-item::before,
    .sec13 .grid-item::after {
        display: none;
    }
}

/* category 14 */


.sec13 .redline-title,
.sec13 .redline-title a {
    position: relative;
    font-size: 24px;
    color: #002773;
    font-family: 'Nebesht-bold';
    display: inline-block;
}

.sec13.redline-title {
    padding-right: 20px;
}

    .sec13 .redline-title .title-border {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 50px;
        background: #dc0008;
        border-radius: 5px 0 0 5px;
    }

.sec13 .box-category-tag {
    display: flex;
    align-items: center;
    text-align: right;
    direction: rtl;
    margin-bottom: 10px;
}

.sec13 .box-red-square-main {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #e74c3c;
    margin-left: 5px;
}

.sec13 .box-category-name-main {
    font-size: 18px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.sec13 .bg-gray-medium {
    background-color: #E0E0E0 !important;
}

/* New Post Box Styles */
.post-box {
    position: relative; 
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .post-box:hover {
        transform: translateY(-5px);
    }

.post-image-container {
    position: relative;
    width: 100%; 
    overflow: hidden;
}

    .post-image-container img {
        width: 100%;
        height: auto;
        display: block; 
        transition: transform 0.3s ease;
    }

.post-box:hover .post-image-container img {
    transform: scale(1.03);
}

.post-content {
    padding: 7px 0 0 0;
    text-align: right;
    direction: rtl;
}

.mx-post-title-first {
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.4;
}

    .mx-post-title-first a {
        color: #FFF;
        transition: color 0.3s ease;
    }

        .mx-post-title-first a:hover {
            color: #DC0008;
        }

.mx-post-title {
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.4;
}

    .mx-post-title a {
        color: #002B79;
        transition: color 0.3s ease;
    }

        .mx-post-title a:hover {
            color: #DC0008;
        }

.post-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.sec14-post-meta {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
    font-size: 14px;
    color: #777;
}

.post-image-container .sec14-post-meta {
    color: #FFF;
}

.sec14-post-meta a,
.sec14-post-meta span {
    margin-right: 8px;
    margin-left: 0;
}

.rtl-mode .sec14-post-meta a,
.rtl-mode .sec14-post-meta span {
    margin-right: 0;
    margin-left: 8px;
}

/* Featured Post Styles */
 

.post-overlay-content .sec14-post-meta a, .post-overlay-content .sec14-post-meta span {
    color: white;
}

.mx-featured-post .post-main-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mx-featured-post .post-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    color: white;
}

.mx-featured-post .box-category-name-main,
.mx-featured-post .post-summary {
    color: rgba(255, 255, 255, 0.9);
}

.mx-featured-post .mx-post-title {
    font-size: 24px;
    color: white;
}

    .mx-featured-post .mx-post-title a:hover {
        color: #09AEE0;
    }

/* Media Icons */
.media-icon-lg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-sm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-xs {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mx-featured-post .mx-post-title {
        font-size: 20px;
    }

    .mx-post-title {
        font-size: 16px;
    }

    .box-category-name-main {
        font-size: 14px;
    }
}
 
/* Responsive Adjustments */
@media (max-width: 768px) {
    #tabCategoryAll4 {
        background: #fff;
        padding: 5px;
    }

        #tabCategoryAll4 .mx-featured-post .mx-post-title {
            font-size: 20px;
        }

        #tabCategoryAll4 .mx-post-title {
            font-size: 16px;
            margin: 0;
        }

        #tabCategoryAll4 .box-category-name-main {
            font-size: 14px;
        }

        /* New styles for mobile layout */

        #tabCategoryAll4 .post-box {
            flex-direction: row;
            gap: 15px;
            align-items: flex-start;
        }
         
        #tabCategoryAll4 .post-image-container {
           
            margin-bottom: 0;
        }

        #tabCategoryAll4 .col-md-3 .post-image-container {
         
            flex: 0 0 33.33%; 
            margin-bottom: 0;
            height: 100px;
        }

       

        #tabCategoryAll4 .post-image-container img {
            width: 90%;
            height: 90%;
            display: block;
            transition: transform 0.3s ease;
            border-radius: 50px 50px 50px 0;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.21);
            padding: 3px;
            margin: 4px;
        }

        #tabCategoryAll4 .post-content {
           
            flex: 0 0 66.67%;
            padding: 0;
        }

        #tabCategoryAll4 .post-excerpt {
            display: none;
            
        }

        #tabCategoryAll4 .sec14-post-meta {
           
            flex-wrap: wrap;
        }
}

/* category 15 */
.sec15 {
    padding-top: 20px;
    padding-bottom: 20px;
}

    .sec15 .fav-slider-section {
        padding: 30px 0;
        position: relative;
    }

    .sec15 .fav-slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        direction: ltr;
    }

    .sec15 .slider-loading-3 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .sec15 .fav-slider {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sec15 .fav-slide-item {
        padding: 30px 10px;
        background: #fff;
    }

    .sec15 .fav-slide-content {
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        position: relative;
    }

    .sec15 .fav-slide-image {
        position: relative;
    }

    .sec15 .fav-corner-border::before {
        content: ' ';
        width: 10px;
        height: 2px;
        display: block;
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #002B79;
    }

    .sec15 .fav-corner-border::after {
        content: ' ';
        width: 2px;
        height: 10px;
        display: block;
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #002B79;
    }



    .sec15 .fav-image-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        height: 100%;
        height: 200px;
        z-index: 2;
        background: #f8f9fa;
    }

        .sec15 .fav-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.5s ease;
        }

        .sec15 .fav-image-wrapper:hover img {
            transform: scale(1.05);
        }

    .sec15 .mbn-content-wrapper-main {
        position: relative;
        z-index: 2;
        direction: rtl;
    }


    .sec15 .fav-cat-tag {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        text-align: right;
        direction: rtl;
    }

    .sec15 .fav-red-square {
        display: inline-block;
        width: 5px;
        height: 5px;
        background-color: #e74c3c;
        margin-left: 5px;
    }

    .sec15 .fav-catname {
        font-size: 16px;
        color: #7f8c8d;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-right: 10px;
    }

    .sec15 .fav-title-post {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.4;
    }

        .sec15 .fav-title-post a {
            color: #002B79;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .sec15 .fav-title-post a:hover {
                color: #e74c3c;
            }

    .sec15 .fav-summary {
        font-size: 16px;
        color: #34495e;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .sec15 .fav-meta {
        display: flex;
        gap: 20px;
        font-size: 14px;
        color: #95a5a6;
        direction: rtl;
        text-align: rtl;
    }

        .sec15 .fav-meta i {
            margin-left: 5px;
        }

    .sec15 .fav-slider-dots {
        margin-top: -35px;
        margin-bottom: 10px;
        margin-left: 15px;
    }

    .sec15 .slide3-container .slick-dotted.slick-slider,
    .sec15 .fav-slider-section .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    /* Slick dots customization */
    .sec15 .fav-slider-section .slick-dots {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: left;
        margin-top: 0px;
        padding: 0;
    }

        .sec15 .fav-slider-section .slick-dots li {
            margin: 0 5px;
            width: auto;
            height: auto;
        }

            .sec15 .fav-slider-section .slick-dots li button {
                width: 10px;
                height: 10px;
                padding: 0;
                border-radius: 50%;
                background: #bdc3c7;
                transition: all 0.3s ease;
            }

                .sec15 .fav-slider-section .slick-dots li button:before {
                    display: none;
                }

            .sec15 .fav-slider-section .slick-dots li.slick-active button {
                background: #e74c3c;
                width: 25px;
                border-radius: 5px;
            }

/* Responsive styles */
@media (max-width: 992px) {
    .sec15 .fav-slide-content {
        padding: 30px 20px !important;
    }

    .sec15 .fav-title-post {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .sec15 .fav-slide-item .row {
        flex-direction: column-reverse;
    }
     
    .sec15 .fav-slide-content {
        padding: 20px 15px !important;
    }


    .sec15 .fav-title-post {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sec15 .fav-summary {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .sec15 .fav-meta {
        font-size: 12px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .sec15 .fav-slide-item {
        padding: 20px 15px;
    }

    .sec15 .fav-cat-tag {
        margin-bottom: 10px;
    }

    .sec15 .fav-slider-dots {
        margin-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sec15 .fav-title-post {
        font-size: 16px;
    }

    .sec15 .fav-slide-image {
        min-height: 200px;
    }

    .sec15 .fav-image-wrapper {
        height: 180px;
    }

    .sec15 .fav-slider-section {
        padding: 20px 0;
    }

    .sec15 .fav-slide-item {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {

    .sec15 .fav-slider-section .slick-list {
        overflow: visible !important;
    }

    .sec15 .fav-slide-item {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
    }

        .sec15 .fav-slide-item .row {
            display: flex !important;
            flex-direction: column-reverse;
            height: 100%;
        }
 
    .sec15 .fav-slide-content {
        padding: 15px !important;
        height: auto !important;
    }


    .sec15 .fav-slider-dots {
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        position: relative !important;
        bottom: auto !important;
    }


    .sec15 .slider-loading-3 {
        display: none !important;
    }

    .sec15 .fav-slider {
        opacity: 1 !important;
        visibility: visible !important;
    }
}


/* category 15 part 2 */

.mv-redline-title,
.mv-redline-title a {
    position: relative;
    font-size: 24px;
    color: #002773;
    font-family: 'Nebesht-bold';
    display: inline-block;
}

.mv-redline-title {
    padding-right: 20px;
}

    .mv-redline-title .title-border {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 50px;
        background: #dc0008;
        border-radius: 5px 0 0 5px;
    }

.mvm-box-category-name-main {
    font-size: 16px;
    color: #7f8c8d;
}

.bg-gray-medium {
    background-color: #E0E0E0 !important;
}

/* New Post Box Styles */
.mv-post-box2 {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 5px;
}

.mv-post-box {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 3px;
    height: 124px;
    overflow: hidden;
    margin-bottom: 5px;
}

    .mv-post-box:hover,
    .mv-post-box2 {
        transform: translateY(-5px);
    }

.sh-post-image {
    position: relative;
    overflow: hidden;
}

    .sh-post-image img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 7px;
        transition: transform 0.3s ease;
    }

.mv-post-box:hover .sh-post-image img,
.mv-post-box2:hover .sh-post-image img {
    transform: scale(1.03);
}

.sh-post-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

    .sh-post-title a {
        color: #002B79;
        transition: color 0.3s ease;
    }

        .sh-post-title a:hover {
            color: #DC0008;
        }

.post-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.post-meta {
    color: #777;
}

/* Featured Post Styles */
.mvn-featured-post .sh-post-image {
    aspect-ratio: 4/3;
}

.mvn-featured-post .post-main-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mvn-featured-post .post-overlay-content {
    padding: 20px 0;
}

.mvn-featured-post .mvm-box-category-name-main,
.mvn-featured-post .post-summary {
    color: rgba(153, 153, 153, 0.9);
}

.mvn-featured-post .sh-post-title {
    font-size: 24px;
    color: white;
}

    .mvn-featured-post .sh-post-title a:hover {
        color: #09AEE0;
    }

/* Standard Post Styles */

 
/* Media Icons */
.media-icon-lg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-sm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-xs {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mvn-featured-post .sh-post-title {
        font-size: 20px;
    }

    .sh-post-title {
        font-size: 16px;
        margin: 0;
    }

    .mvm-box-category-name-main {
        font-size: 14px;
    }

    .mv-post-box {
        height: 110px;
    }
}

/* category 16 */
.slfix-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 214px;
}

.slfix-slider-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slfix-content-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 100%;
}

.slfix-slide-item {
    padding: 0;
    border: none;
    height: 100%;
}

    .slfix-slide-item .row {
        height: 100%;
        margin: 0;
    }

.slfix-slide-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slfix-content-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    direction: rtl;
}

.slfix-slide-image {
    position: relative;
    padding: 0;
    height: 100%;
}

.slfix-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #f8f9fa;
}

    .slfix-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .slfix-image:hover img {
        transform: scale(1.05);
    }

.slfix-cat-tag {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
}

.slfix-red-square {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #e74c3c;
    margin-left: 5px;
}

.slfix-cat-name {
    font-size: 16px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.slfix-title-post {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.4;
}

    .slfix-title-post a {
        color: #002B79;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .slfix-title-post a:hover {
            color: #e74c3c;
        }

.slfix-summary {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.slfix-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #95a5a6;
    direction: rtl;
    margin-top: auto;
    padding-top: 15px;
}

    .slfix-meta i {
        margin-left: 5px;
    }

.slfix-nav-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

    .slfix-nav-container button {
        width: 30px;
        height: 30px;
        border-radius: 0;
        background: #FFF;
        border: 1px solid #bdc3c7;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

        .slfix-nav-container button:hover {
            background: #264B8D;
            color: #FFF;
        }

/* Responsive styles */
@media (max-width: 992px) {
    .slfix-slider-container {
        height: 350px;
    }

    .slfix-slide-content {
        padding: 25px !important;
    }

    .slfix-title-post {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    

    .slfix-slide-item .row {
        flex-direction: column;
    }
     
    .slfix-slide-content {
        padding: 5px !important;
        height: auto;
    }

    .slfix-title-post {
        font-size: 18px;
    }

    .slfix-summary {
        font-size: 15px;
    }

    .slfix-meta {
        font-size: 14px;
        gap: 15px;
    }

  

    .slfix-nav-container {
        position: absolute;
        bottom: 5px;
        left: 0;
        justify-content: center; 
        right: 0;
    }
}

@media (max-width: 480px) {
    .slfix-title-post {
        font-size: 16px;
    }
     
}

[dir="rtl"] .slfix-slick-next {
    right: auto;
    left: -7px;
}

[dir="rtl"] .slfix-slick-prev {
    right: -75px;
    left: auto;
}

/* category 16 part 2*/
.three-item-slider-section {
    padding: 20px 0;
    position: relative;
}

.fav-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-loading-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.catname {
    color: #95a5a6;
}

.fav-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fav-slide-item {
    padding: 30px 10px;
    background: #fff;
}

.fav-slide-content {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}

.fav-slide-image {
    position: relative;
}


.fav-corner-border::before {
    content: ' ';
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #002B79;
}

.fav-corner-border::after {
    content: ' ';
    width: 2px;
    height: 10px;
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #002B79;
}

.fav-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    height: 100%;
    height: 200px;
    z-index: 2;
    background: #f8f9fa;
}

    .fav-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .fav-image-wrapper:hover img {
        transform: scale(1.05);
    }

.slfix-content-main {
    position: relative;
    z-index: 2;
}


.fav-cat-tag {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
}

.fav-red-square {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #e74c3c;
    margin-left: 5px;
}

.fav-catname {
    font-size: 16px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.fav-title-post {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

    .fav-title-post a {
        color: #002B79;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .fav-title-post a:hover {
            color: #e74c3c;
        }

.fav-summary {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 25px;
}

.fav-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #95a5a6;
    direction: rtl;
    text-align: rtl;
}

    .fav-meta i {
        margin-left: 5px;
    }

.fav-slider-dots {
    margin-top: -35px;
    margin-bottom: 10px;
    margin-left: 15px;
}

.three-item-slider-section .slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* Slick dots customization */
.three-item-slider-section .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: left;
    margin-top: 0px;
    padding: 0;
}

    .three-item-slider-section .slick-dots li {
        margin: 0 5px;
        width: auto;
        height: auto;
    }

        .three-item-slider-section .slick-dots li button {
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background: #bdc3c7;
            transition: all 0.3s ease;
        }

            .three-item-slider-section .slick-dots li button:before {
                display: none;
            }

        .three-item-slider-section .slick-dots li.slick-active button {
            background: #e74c3c;
            width: 25px;
            border-radius: 5px;
        }

/* Responsive styles */
@media (max-width: 992px) {
    .fav-slide-content {
        padding: 30px 20px !important;
    }

    .fav-title-post {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .fav-slide-item .row {
        flex-direction: column-reverse;
    }
     
    .fav-slide-content {
        padding: 20px 15px !important;
    }


    .fav-title-post {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .fav-summary {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .fav-meta {
        font-size: 12px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .fav-slide-item {
        padding: 20px 15px;
    }

    .fav-cat-tag {
        margin-bottom: 10px;
    }

    .fav-slider-dots {
        margin-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fav-title-post {
        font-size: 16px;
    }

   

    .fav-image-wrapper {
        height: 180px;
    }

    .three-item-slider-section {
        padding: 20px 0;
    }

    .fav-slide-item {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {

    .three-item-slider-section .slick-list {
        overflow: visible !important;
    }

    .fav-slide-item {
        height: auto !important;
        display: flex !important;
        flex-direction: column;
    }

        .fav-slide-item .row {
            display: flex !important;
            flex-direction: column-reverse;
            height: 100%;
        }

 

    .fav-slide-content {
        padding: 15px !important;
        height: auto !important;
    }

    .fav-slider-dots {
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        position: relative !important;
        bottom: auto !important;
    }

    .slider-loading-3 {
        display: none !important;
    }

    .fav-slider {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Base Styles */


.mv-redline-title,
.mv-redline-title a {
    position: relative;
    font-size: 24px;
    color: #002773;
    font-family: 'Nebesht-bold';
    display: inline-block;
}

.mv-redline-title {
    padding-right: 20px;
}

    .mv-redline-title .title-border {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 50px;
        background: #dc0008;
        border-radius: 5px 0 0 5px;
    }

.mvm-catname {
    font-size: 16px;
    color: #7f8c8d;
}

.bg-gray-medium {
    background-color: #E0E0E0 !important;
}

/* New Post Box Styles */
.three-itemmv-post-box {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .three-itemmv-post-box:hover {
        transform: translateY(-5px);
    }

.sh-post-image {
    position: relative;
    overflow: hidden;
}

    .sh-post-image img {
        width: 100%;
        height: 100px;
        display: block;
        border-radius: 7px;
        transition: transform 0.3s ease;
    }

.three-itemmv-post-box:hover .sh-post-image img {
    transform: scale(1.03);
}

.three-item-post-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

    .three-item-post-title a {
        color: #002B79;
        transition: color 0.3s ease;
    }

        .three-item-post-title a:hover {
            color: #DC0008;
        }

.three-item-post-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mvn-featured-post .sh-post-image {
    aspect-ratio: 4/3;
}

.mvn-featured-post .post-main-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mvn-featured-post .post-overlay-content {
    padding: 20px 0;
}

.mvn-featured-post .mvm-catname,
.mvn-featured-post .post-summary {
    color: rgba(153, 153, 153, 0.9);
}

.mvn-featured-post .three-item-post-title {
    font-size: 24px;
    color: white;
}

    .mvn-featured-post .three-item-post-title a:hover {
        color: #09AEE0;
    }

 

/* Media Icons */
.media-icon-lg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-sm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.media-icon-xs {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

audio {
    width: 100%;
}


.download-link-cnt {
    width: 20px !important;
    height: 45px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mvn-featured-post .three-item-post-title {
        font-size: 20px;
    }

    .three-item-post-title {
        font-size: 16px;
    }

    .mvm-catname {
        font-size: 14px;
    }

    .sh-post-image img {
        height: 90px;
    }
}

/* Footer */

.trending-container {
    position: relative;
}

.trending-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    background: #0C6FCE;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
    height: 30px;
}

.trending-title {
    color: white;
    margin: 0;
    font-size: 10pt;
    white-space: nowrap;
    line-height: 20px;
}

 

.trending-content {
    overflow: hidden;
    position: relative;
    height: 30px;
    background: #f8f9fa;
    border-radius: 4px;
   
}
 


/* load widget custom  tabbed*/
.varta-widget-header {
    padding: 0;
    border-bottom: 1px solid var(--varta-border);
}

.varta-tab-nav {
    display: flex;
    margin: 0;
    padding: 0 12px;
    list-style: none;
    position: relative;
}

    .varta-tab-nav::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: var(--varta-border);
        z-index: 1;
    }

.varta-tab-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.varta-tab-btn {
    width: 100%;
    height: var(--varta-tab-height);
    border: none;
    background: transparent;
    color: var(--varta-text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .varta-tab-btn:hover {
        color: var(--varta-primary);
    }

    .varta-tab-btn.active {
        color: var(--varta-primary);
    }

        .varta-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--varta-primary), var(--varta-primary-light));
            border-radius: 3px 3px 0 0;
            z-index: 3;
        }

.varta-widget-content {
    padding: 16px;
}

.varta-tab-pane {
    display: none;
}

    .varta-tab-pane.active {
        display: block;
    }

.varta-posts-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.varta-post-item {
    margin-bottom: 16px;
}

.varta-empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--varta-text-light);
}

    .varta-empty-state i {
        color: var(--varta-primary-light);
        margin-bottom: 12px;
        opacity: 0.7;
    }

    .varta-empty-state p {
        margin: 0;
        font-size: 0.9rem;
    }


.varta-posts-list::-webkit-scrollbar {
    width: 6px;
}

.varta-posts-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.varta-posts-list::-webkit-scrollbar-thumb {
    background: var(--varta-primary-light);
    border-radius: 10px;
    opacity: 0.5;
}

    .varta-posts-list::-webkit-scrollbar-thumb:hover {
        background: var(--varta-primary);
    }

.varta-tab-pane {
    animation: fadeIn3 0.4s ease;
}

@keyframes fadeIn3 {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .varta-tab-nav {
        flex-direction: column;
    }

    .varta-tab-item {
        flex: none;
        width: 100%;
        text-align: right;
    }

    .varta-tab-btn {
        justify-content: flex-start;
        padding: 12px 16px;
        height: auto;
    }

        .varta-tab-btn.active::after {
            width: 3px;
            height: 100%;
            left: auto;
            right: 0;
            top: 0;
            bottom: 0;
            border-radius: 3px 0 0 3px;
        }

    .varta-widget-header {
        border-bottom: none;
    }

    .varta-tab-nav::after {
        display: none;
    }
}


@media (max-width: 768px) {
    .sidebar-widget.varta-tabbed-widget {
        padding: 8px 0;
    }

    .varta-widget-header {
        padding: 0;
    }

    .varta-tab-nav {
        gap: 4px;
    }

    .varta-tab-btn {
        padding: 10px 12px;
        border-radius: 6px;
        transition: all 0.2s ease;
        background-color: #EEEEF0;
    }

        .varta-tab-btn.active {
            background-color: #dc3545;
            color: white !important;
            box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
        }

            .varta-tab-btn.active::after {
                display: none;
            }

            .varta-tab-btn.active i {
                color: white !important;
            }

    .varta-widget-content {
        padding: 12px 8px;
    }


    .varta-tab-btn {
        text-align: right;
        justify-content: flex-start;
    }
}

/* load widget custom part 2 tags*/

.sidebar-widget .tag-list li a {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .sidebar-widget .tag-list li a:hover {
        opacity: 0.8;
        transform: translateY(-2px);
        color: #3a3939;
        border-color: inherit;
        border-color: var(--border-color);
    }




/* sidebar widget custom 1 */
.post-item-circle {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    gap: 10px;
    background-color: #f5f5f5;
    margin: 5px 10px 0;
}

    .post-item-circle:hover {
        background-color: #E3E7F1;
    }

.post-content-circle {
    flex: 1;
}

    .post-content-circle a {
        color: #2B4A97 !important;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        display: block;
        margin-bottom: 5px;
    }

        .post-content-circle a:hover {
            color: #cc0000 !important;
            text-decoration: none;
        }

.post-image-circle-container {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 4px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.post-image-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-category-circle {
    font-size: 15px;
    margin-top: 5px;
    display: inline-block;
    color: #878C97;
}



.post-content-circle .gray {
    color: #878C97;
}


.post-image-circle-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

    .post-image-circle-container:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-color: #2B4A97;
    }

.post-image-circle {
    transition: all 0.4s ease;
}

.post-image-circle-container:hover .post-image-circle {
    transform: scale(1.1);
}

.post-image-circle-container i {
    transition: all 0.4s ease;
    font-size: 24px;
    color: #878C97;
}

.post-image-circle-container:hover i {
    transform: scale(1.2);
    color: #2B4A97;
}

@media (max-width: 767.98px) {
   

    .post-item-circle {
        display: flex;
        align-items: center;
        padding: 4px;
        border-radius: 10px;
        transition: all 0.3s ease;
        gap: 5px;
        background-color: #f5f5f5;
        margin: 2px 0;
    }

    .post-content-circle a {
        display: contents;
        margin-bottom: 0;
    }
}

/* main slider */
.slider-loading {
    height: 430px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

#custom-main-slider,
#custom-thumbnail-slider,
.custom-slider-nav {
    display: none;
}

.slider-loaded #custom-main-slider,
.slider-loaded #custom-thumbnail-slider,
.slider-loaded .custom-slider-nav {
    display: block;
}


.custom-slider-item h2 {
    font-size: 30px;
}

    .custom-slider-item h2 a {
        font-family: 'Nebesht-bold';
    }

#custom-main-slider .slick-track {
    direction: ltr;
}

.custom-main-slider {
    width: 100%;
    margin: 0 auto;
}

.custom-slider-item {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.slider-content {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    /* border-bottom: 1px solid #a5a5a5; */
}


 

.slider-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(192, 4, 4, 0.1);
    border-radius: 3px;
    overflow: hidden;
    z-index: 10;
}

.slider-underline-active {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #c01313, #ad4444);
    transform: scaleX(0);
    transform-origin: left; 
    animation: sliderUnderlineGrow 3.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    border-radius: 3px;
    opacity: 0;
    animation-fill-mode: both;
}

 


@keyframes sliderUnderlineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0.3;
    }

    15% {
        opacity: 0.7;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}


.slider-content .description {
    text-align: justify;
    direction: rtl;
    font-size: 13pt;
}

.slider-left {
    display: flex;
    flex-direction: column;
    flex: 0 43%;
}

    .slider-left img {
        width: 100%;
        height: 306px; 
    }

.slider-right {
    flex: 1;
    direction: rtl;
}
 


.custom-thumbnail-slider {
    width: 93%;
    margin: 10px 0 10px 0;
}

.thumbnail-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin: 0 5px;
    cursor: pointer;
    background: #f8f8f8;
    border-radius: 8px;
}

    .thumbnail-item img {
        width: 80px !important;
        height: 60px !important;
        object-fit: fill;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

.thumbnail-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis; 
}


.custom-slider-nav {
    position: absolute;
    bottom: 2px;
    left: 4px;
    display: grid !important;
    gap: 8px;
}

    .custom-slider-nav button {
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid #9b9b9b;
        color: #292727;
        cursor: pointer;
        border-radius: 5px;
        font-size: 16px;
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .custom-slider-nav button:hover {
            background: var(--vr-theme-color);
            color: #FFF;
            border-color: var(--vr-theme-color);
        }

@media (max-width: 768px) {
    .custom-slider-item {
        flex-direction: column;
        gap: 15px;
    }

    .slider-content {
        flex-direction: column;
        padding: 10px;
        gap: 5px;
    }

    .custom-thumbnail-slider {
        width: 100%;
    }

    .thumbnail-item {
        padding: 6px;
    }

        .thumbnail-item img {
            width: 60px !important;
            height: 50px !important;
        }

    .thumbnail-title {
        font-size: 12px;
    }

    .custom-slider-nav {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .slider-left img {
        width: 100%;
        height: 200px; 
    }

    .custom-slider-nav {
        display: flex !important;
        gap: 8px;
    }


    .thumbnail-item {
        flex-direction: column;
        text-align: center;
    }

        .thumbnail-item img {
            width: 100% !important;
            height: 100px !important;
            margin-bottom: 5px;
        }

    .thumbnail-title {
        white-space: normal;
        font-size: 11px;
    }
}



@media (max-width: 768px) {
    .slider-loading {
        height: 350px;
    }

    .custom-slider-item {
        flex-direction: column;
        gap: 10px;
    }

    .slider-content {
        flex-direction: column;
        padding: 10px;
        border-bottom: none;
    }

    .slider-right {
        order: 2;
    }

    .slider-left {
        order: 1;
    }

   

    .slider-content .description {
        font-size: 12pt;
        margin-top: 10px;
    }

    .custom-thumbnail-slider {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .slider-loaded #custom-thumbnail-slider,
    .slider-loaded .custom-slider-nav {
        display: none !important;
        display: none;
    }

    .custom-thumbnail-slider,
    .custom-slider-nav {
        display: none !important;
    }

    .slider-loading {
        
        height: 100px;
    }

    

    .slider-content {
        padding: 18px 5px;
    }

    
    .custom-slider-item h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .slider-content .description {
        font-size: 11pt;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

     


    .thumbnail-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

        .thumbnail-item img {
            width: 100% !important;
            height: 100px !important;
            margin-bottom: 5px;
        }

    .thumbnail-title {
        white-space: normal;
        font-size: 12px;
    }
}

/* latest posts */
.image-hover-container {
    --b: 3px;
    --c: #0D76D9;
    /* --w: 250px;
  width: var(--w); */
    position: relative;
    margin: 0 auto;
}

    .image-hover-container a {
        display: block;
        position: relative;
    }

    .image-hover-container img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: fill;
        display: block;
        border-radius: 10px 0 10px 10px;
        transition: all 0.3s;
    }

    .image-hover-container .hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px 0 12px 12px;
        transition: all 0.3s;
        z-index: 1;
    }

    .image-hover-container .hover-border {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: var(--b) solid transparent;
        border-radius: 12px 0 12px 12px;
        transition: all 0.3s;
        z-index: 2;
        opacity: 0;
        transform: scale(1.2);
    }

    .image-hover-container a:hover .hover-overlay {
        background: rgba(0, 0, 0, 0);
    }

    .image-hover-container a:hover .hover-border {
        opacity: 1;
        transform: scale(1);
        border-color: var(--c);
        top: calc(-1 * var(--b));
        left: calc(-1 * var(--b));
        right: calc(-1 * var(--b));
        bottom: calc(-1 * var(--b));
    }

/* post item category */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 10px 0;
}

.category-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
}

.category-post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 180px;
}

.category-post-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-post-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.category-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-post-card:hover .post-image {
    transform: scale(1.05);
}

.category-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 40%);
}

.category-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .category-post-title a:hover {
        color: #0066cc;
    }

.category-media-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
 

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  

/* post slik slider */
.sec5.section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.sec5 .slick-slide {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.main-2-slider-horizantal-container .slick-slide,
.fav-slider .slick-slide {
    padding-top: 20px;
    padding-bottom: 20px;
}

.post-item-slide-main .image {
    --bs-aspect-ratio: 61.9%;
}

    .post-item-slide-main .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.related-posts-slider {
    margin: 0 -10px;
}
 

.related-posts-slider .post-item-slide-main {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
    margin-bottom: 20px;
}

    .related-posts-slider .post-item-slide-main:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.related-posts-slider .image {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.related-posts-slider .title {
    padding: 10px 15px 0;
    height: 80px;
    overflow: hidden;
}

.related-posts-slider .small-post-meta {
    padding: 0 15px 15px;
    color: #666;
}

.slider-nav-arrows {
    display: flex;
    gap: 8px;
}

.slick-prev-custom,
.slick-next-custom {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .slick-prev-custom:hover,
    .slick-next-custom:hover {
        background: var(--vr-theme-color);
        color: #FFF;
        border-color: var(--vr-theme-color);
    }

    .slick-prev-custom svg,
    .slick-next-custom svg {
        width: 16px;
        height: 16px;
    }

.slick-prev,
.slick-next {
    display: none !important;
}

.slick-dots {
    bottom: -30px;
}

    .slick-dots li button:before {
        font-size: 10px;
        color: #999;
    }

    .slick-dots li.slick-active button:before {
        color: #333;
    }

@media (max-width: 768px) {
    .slider-nav-arrows {
        display: none;
    }

    .related-posts-slider .post-item-slide-main {
        min-height: 340px;
        max-height: 340px;
    }
}

/* profile */
/* start dynamic part */
.container-bn-header {
    display: none !important;
}

.profile-header .profile-info-container {
    background-color: transparent;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 100%);
    background-image: -webkit-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 100%);
    background-image: -moz-linear-gradient(to bottom, transparent, rgb(0, 0, 0, 0.7) 100%);
    background-image: -owg-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 100%);
    background-image: -o-linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 100%);
}

 

.profile-header .profile-last-seen {
    font-size: 12px;
}

/* end dynamic part */

.bg-gray {
    background-color: #EFF0F1;
    border-radius: 10px;
}

.post-item .image img {
    border-radius: 10px;
}

.profile-info {
    display: flex;
    align-items: flex-end;
    color: white;
}

.profile-image {
    position: relative;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    bottom: -40px;
}

    

.profile-username {
    padding-left: 30px;
}

    

.profile-info .cell-left {
    position: relative;
    z-index: 2;
}

/* .profile-header .profile-info .profile-username .username ,.profile-last-seen    */
.profile-username {
    background-color: rgba(240, 242, 245, 0.57);
    padding: 5px 25px;
    border-radius: 50px 0 0 50px;
    color: #FFF;
    text-align: right;
    font-family: 'Nebesht';
    margin-right: -20px;
    margin-bottom: 15px;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.username {
    font-family: 'Nebesht';
    font-size: 18px;
    padding: 0;
    margin: 0;
    display: flex;
}

.profile-last-seen {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

    .profile-last-seen.online {
        color: #FFF;
    }

.icon-circle {
    margin-right: 6px;
}


.btn-follow {
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-follow svg {
        margin-right: 8px;
    }

    .btn-follow:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.profile-details {
    background: #052A84;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 10px;
}

    .profile-details .description {
        line-height: 1.6;
        color: #FFF;
        padding: 10px;
        border-bottom: 1px solid #DEE3EF;
    }
 
.contact-details {
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
}

.profile-email {
    display: flex;
    align-items: center;
    color: #FFF;
}

    .profile-email svg {
        margin-right: 5px;
    }


.profile-social-links {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}

.profile-details .text-muted {
    color: #E3E7F1 !important;
}

.profile-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F54B01;
    color: #FFF;
    transition: all 0.3s ease;
}

    .profile-social-links li a:hover {
        background-color: #FFD900;
        color: #F54B01 !important;
        transform: translateY(-2px);
    }


.sidebar-widget {
    background: #F1F3F8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.235);
    margin-bottom: 10px;
}

.widget-head-profile {
    padding: 15px;
    border-bottom: 1px dashed #BDC7DF;
}

.title-profile {
    color: #052A84;
}

.widget-head-profile .title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.section-profile .widget-head-profile {
    margin-bottom: 20px;
}
 

.list-followers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.img-follower {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .img-follower:hover {
        transform: scale(1.1);
    }

    .img-follower img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.post-item {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

    .post-item:hover {
        transform: translateY(-5px);
    }


@media (max-width: 992px) {
    

    .profile-username h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
   
    .profile-info {
        display: grid;
        /* align-items: flex-end; */
        color: white;
    }

     

    .profile-image {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 4px solid white;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        background-color: #fff;
        bottom: -75px;
    }
  
    .profile-username {
        background-color: rgba(240, 242, 245, 0.57);
        padding: 5px 45px;
        border-radius: 35px;
      
        margin-right: 0;
        margin-bottom: 5px;
        padding-right: 115px;
        position: relative;
        z-index: 1;
    }

    .btn-follow {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
   

    .widget-head-profile,
    .widget-body { 
        padding: 5px 0px;
    }
}

/* contact */
.page-contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .page-contact-info-container:hover {
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.page-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(240, 242, 245, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .page-contact-item:hover {
        background: rgba(240, 242, 245, 0.9);
        transform: translateX(5px);
    }

.my-page-contact-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    border-radius: 50%;
    flex-shrink: 0;
}

.page-contact-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.page-contact-text {
    font-size: 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    line-height: 1.4;
}

.page-contact-item a.page-contact-text:hover {
    color: #3498db;
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-contact-info-container {
        padding: 15px;
        gap: 15px;
    }

    .page-contact-item {
        padding: 8px 12px;
        gap: 12px;
    }

    .my-page-contact-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .page-contact-text {
        font-size: 0.95rem;
    }
}

#footer {
    margin: 0 !important
}



/* custom 3 */
.title-big-dline {
    background-color: #204589;
    color: #FFF;
    padding: 15px 20px 15px 10px;
    width: 100%;
    display: block;
    border-radius: 0 10px 0 0;
    position: relative;
}

    .title-big-dline::after {
        content: '';
        width: 100px;
        height: 4px;
        background-color: #cc0000;
        position: absolute;
        bottom: 0;
        right: 20px;
    }

.sidebar-widget-n {
    padding: 0;
    border-radius: 12px;
    background-color: #FFF;
    --varta-primary: #204589;
    --varta-primary-light: #637DAD;
    --varta-bg: #ffffff;
    --varta-border: #e5e7eb;
    --varta-text: #374151;
    --varta-text-light: #6b7280;
    --varta-radius: 12px;
    --varta-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --varta-tab-height: 52px;
}

.news-scroller {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    position: relative;
}

    .news-scroller::-webkit-scrollbar {
        width: 6px;
    }

    .news-scroller::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .news-scroller::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

        .news-scroller::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
}

.news-article-card {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

    .news-article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.news-thumbnail-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-article-card:hover .news-thumbnail {
    transform: scale(1.05);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 42px;
}

.news-details {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-headline {
    color: #212529;
    font-weight: normal;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

    .news-headline:hover {
        color: #0d6efd;
        text-decoration: none;
    }

.scroll-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.scroll-arrow {
    font-size: 24px;
    color: #0d6efd;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s;
}

    .scroll-arrow:hover {
        opacity: 1;
        transform: scale(1.1);
    }

.scroll-hint {
    color: #6c757d;
    font-size: 14px;
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-thumbnail-wrapper {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .sidebar-widget-n {
        margin-top: 20px;
    }

    .news-scroller {
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 20px;
    }

    .news-grid {
        display: inline-flex;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 10px 15px;
        width: max-content;
    }

    .news-article-card {
        width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .news-thumbnail-wrapper {
        height: 160px;
    }

    .scroll-indicators {
        display: flex;
    }

    .left-arrow {
        animation: bounceLeft 2s infinite;
    }

    .right-arrow {
        animation: bounceRight 2s infinite;
    }

    @keyframes bounceLeft {

        0%, 20%, 50%, 80%, 100% {
            transform: translateX(0);
        }

        40% {
            transform: translateX(-5px);
        }
    }

    @keyframes bounceRight {

        0%, 20%, 50%, 80%, 100% {
            transform: translateX(0);
        }

        40% {
            transform: translateX(5px);
        }
    }
}

@media (max-width: 480px) {
    .news-article-card {
        width: 85vw;
        min-width: 250px;
    }
}

/* authors widget */

.title-xg {
    margin-left: auto;
    background: rgb(0, 39, 115);
    background: -moz-linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    background: linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002773", endColorstr="#002773", GradientType=1);
    color: #FFF;
    padding: 5px 10px;
    display: block;
    width: 100%;
}


.authors-wrapper {
    position: relative;
}

.authors {
    margin: 0 -10px;
}

    .authors .author-item {
        padding: 0 10px;
    }


.sec13-quarter-circle-border {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 125%;
    height: 125%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #B1B1B2;
    border-right-color: #B1B1B2;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(70deg);
    transition: all 0.6s ease-in-out;
    box-sizing: border-box;
    clip-path: polygon(0 0, 70% 0, 50% 50%, 0 50%);
}

.author-content:hover .sec13-quarter-circle-border {
    border-color: red;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(360deg);
}

.midea-gallery-display {
    height: 400px;
    background-color: #000;
    padding: 0;
}

.video-author-horizantal-container {
    background: #f5f5f5;
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-header {
    margin-bottom: 30px;
    padding: 0 15px;
}

.author-title {
    padding-right: 20px;
}

    .author-title,
    .author-title a {
        position: relative;
        font-size: 24px;
        color: #002773;
        font-family: 'Nebesht-bold';
        display: inline-block;
    }

        .author-title .title-border {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 50px;
            background: #dc0008;
            border-radius: 5px 0 0 5px;
        }

.author-item {
    padding: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .author-item.active-video {
        position: relative;
    }

        .author-item.active-video::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 10px;
            left: 10px;
            height: 3px;
            background: #dc0008;
            border-radius: 3px;
        }


.author-content {
    direction: rtl;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.author-item:hover .author-content {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.author-circle-image {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-left: 15px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

.author-details {
    flex: 1;
}

    .author-details h3 a {
        color: #002773;
        line-height: 1.4;
        -moz-transition: all .5s ease-in-out 0s;
        -webkit-transition: all .5s ease-in-out 0s;
        transition: all .5s ease-in-out 0s;
    }

        .author-details h3 a:hover {
            color: #DC0008;
        }



.author-meta span {
    font-size: 15px;
    color: #666;
}

.author-meta i {
    margin-left: 3px;
    font-size: 10px;
}


.author-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.author-prev,
.author-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

    .author-prev:hover,
    .author-next:hover {
        background: #dc0008;
        color: #fff;
    }

.author-prev {
    margin-right: -60px;
    display: block !important;
}

.author-next {
    margin-left: -60px;
    display: block !important;
}




@media (max-width: 768px) {

    .author-title {
        font-size: 20px;
    }

    .author-circle-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .author-details h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {


    .video-author-horizantal {
        margin: 0 -5px;
    }

    .author-item {
        padding: 0 5px;
    }

    .author-content {
        padding: 10px;
    }

    .author-details h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .author-meta {
        gap: 5px;
    }

        .author-meta span {
            font-size: 16px;
        }
}

/* comments widget */

.recent-comments-slider-container {
    margin: 20px 0;
}

.slider-comment-wrapper {
    display: flex;
    gap: 15px;
}

.slider-comment-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .slider-comment-nav button {
        width: 30px;
        height: 30px;
        border: none;
        background: #E9E9ED;
        color: #999;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .slider-comment-nav button:hover {
            background: #002773;
            color: #fff;
        }

.slider-comment-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 115px;
}

.comment-slide {
    position: absolute;
    width: 100%; 
    opacity: 0;
    transition: all 0.5s ease;
    background: #fff;
    border-radius: 0 0 5px 5px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    filter: blur(5px);
    transform: scale(0.95);
}

    .comment-slide.active {
        opacity: 1;
        z-index: 1;
        filter: blur(0);
        transform: scale(1);
    }

.comment-content {
    direction: rtl;
    text-align: right;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.title-xg {
    margin-left: auto;
    background: rgb(0, 39, 115);
    background: -moz-linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    background: linear-gradient(270deg, rgba(0, 39, 115, 1) 0%, rgba(0, 39, 115, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002773", endColorstr="#002773", GradientType=1);
    color: #FFF;
    padding: 5px 10px;
    display: block;
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.comment-author-image {
    flex-shrink: 0;
}

    .comment-author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .comment-author-image .image-wrapper {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid rgb(105, 105, 105);
        outline: 1px dashed rgb(112, 107, 107);
        outline-offset: 2px;
        box-sizing: border-box;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: pointer;
    }

        .comment-author-image .image-wrapper:hover {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 0 20px rgba(198, 242, 255, 0.51);
            outline-offset: 4px;
            outline: 1px dashed #738BB6;
        }

    .comment-author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease-out;
    }

    .comment-author-image .image-wrapper:hover img {
        transform: scale(1.05);
    }

.comment-details {
    flex-grow: 1;
}

    .comment-details h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
    }

        .comment-details h4 a {
            color: #002773;
            text-decoration: none;
        }

            .comment-details h4 a:hover {
                color: #dc0008;
            }

.comment-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.comment-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 576px) {
    .comment-meta {
        display: block;
        gap: 0;
        font-size: 12px;
        color: #888;
    }
}

.comment-meta i {
    margin-left: 3px;
}

.comment-meta a {
    color: #888;
    text-decoration: none;
}

    .comment-meta a:hover {
        color: #dc0008;
    }

.slider-comment-prev {
    margin-right: 0;
    display: block !important;
}

/* New styles for post title */
.author-post-title-container {
    display: flex;
    align-items: center;
    max-width: 180px;
}

.author-post-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
}

.author-post-title {
    font-size: 10px;
    margin-bottom: 3px;
}


/* custom 2 */

.custom-widget-popular {
    position: relative;
    border-radius: 8px;
    background: white;
    margin-bottom: 20px;
}

.custom-widget-header {
    display: flex;
    flex-direction: row-reverse; 
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.custom-widget-nav {
    display: flex;
    gap: 5px;
    margin-left: 10px;
}

.custom-widget-title {
    margin-left: auto;
    padding: 5px 15px;
    background-color: #204589;
    color: #FFF; 
    font-size: 16px;
    margin-bottom: 0;
}

.custom-widget-nav button {
    background: transparent;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 4px;
    padding: 0;
}

    .custom-widget-nav button:hover {
        background-color: #ff0000;
        color: white;
        border-color: #ff0000;
    }

    .custom-widget-nav button.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background-color: transparent !important;
        border-color: #ddd !important;
        color: inherit !important;
    }

.custom-widget-scrollable {
    max-height: 470px;
    overflow: hidden;
    position: relative;
}

.custom-widget-container {
    height: 100%;
    overflow: hidden;
}

.custom-widget-slider {
    height: 470px;
    overflow: hidden;
}

.custom-widget-track {
    transition: transform 0.5s ease;
}

.custom-widget-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.custom-post-item a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.4;
}

    .custom-post-item a:hover {
        color: rgb(204, 13, 13);
    }

.custom-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #777;
}
 

/* currency */

#currencyData button {
    padding: 3px 6px;
    background: var(--currency-secondary-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 8pt;
}



.custom-slider-item .slick-slide {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* block 6 */
.midea-post-details h2 a {
    color: #FFFFFF;
}

    .midea-post-details h2 a:hover {
        color: #FF0000;
    }
     

.slick-dots li button::before {
    opacity: .25;
    color: #999 !important;
    font-size: 14px !important;
}



/*style  */
.category-block-links-mobile {
    display: none;
}

@media (max-width: 1199.98px) {
    .category-block-links {
        display: none;
    }

    .category-block-links-mobile {
        display: block;
    }

    .section-cat-block .post-item-vr .image {
        height: 285px;
    }

    .post-meta a,
    .post-meta span,
    .small-post-meta a,
    .small-post-meta span {
        font-size: 18px !important;
        margin-right: 4px;
    }


    .col-sidebar {
        padding: 0 !important;
    }
}

.body {
    padding: 10px;
}