/* tablemap-elementor */
.tb-tablemap-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #ececec;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.09);
}

.tb-tablemap-left,
.tb-tablemap-right {
    flex: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.tb-tablemap-left #map {
    border: 2px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    height: 530px !important;
}

.tb-tabs .tb-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #e0e0e0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.tb-tab-list::-webkit-scrollbar {
    display: none;
}

.tb-tab-item {
    padding: 5px 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-family: 'yekan';
    font-size: 14px;
    color: #555;
    border-radius: 6px;
    background: #f0f2f5;
    position: relative;
    user-select: none; /* Prevent text selection */
}

.tb-tab-item:hover {
    background: #e3f2fd;
    color: #0277bd;
}

.tb-tab-item.tb-active {
    font-weight: bold;
    color: #0277bd;
    background: #e3f2fd;
}

.tb-tab-item.tb-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0277bd;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.tb-tab-content .tb-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tb-tab-content .tb-tab-pane.tb-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tb-tab-items-wrapper {
    max-height: 466px;
    overflow-y: auto;
    width: 100%;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tb-tab-items-wrapper::-webkit-scrollbar {
    display: none;
}

.tb-tab-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

.tb-tab-item-box {
    background: #f9f9f9;
    padding: 10px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.tb-tab-item-box:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tb-tab-item-box img {
    width: 100%;
    height: 50px !important;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 5px !important;
}

.tb-tab-item-box span {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    color: #0b7498;
    font-family: 'yekan';
}

.tb-tab-item-box:not(:has(img)) {
    min-height: auto;
    height: auto;
}

.tb-tab-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.tb-center-item {
    display: flex;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tb-center-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tb-center-image {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    overflow: hidden;
    border-radius: 8px;
}

.tb-center-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.tb-center-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 15px;
}

.tb-center-name {
    font-size: 16px;
    font-weight: bold;
    color: #0b7498;
    font-family: 'yekan';
    margin-bottom: 8px;
}

.tb-center-name a {
    color: #0b7498;
    text-decoration: none;
}

.tb-center-name a:hover {
    text-decoration: underline;
}

.tb-center-details {
    font-size: 14px;
    color: #333;
    font-family: 'yekan';
    position: relative;
}

.tb-center-details p {
    margin: 0;
    line-height: 1.6;
}

.tb-center-btn {
 
    position: absolute;
    bottom: -4px;
    left: -4px;
    padding: 4px 10px;
    background: linear-gradient(to right, #8BC34A, #4CAF50);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'yekan';
    transition: background 0.3s ease;
}

.tb-center-btn:hover {
    background: linear-gradient(to right, #7CB342, #43A047);
}

.back-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 5px;
}

.tb-filter-selects {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tb-select {
    padding: 5px;
    border: 1px solid #ececec;
    border-radius: 5px;
    font-family: 'yekan';
    font-size: 14px;
    background: #f9f9f9;
    color: #333;
    min-width: 150px;
    cursor: pointer;
}

.tb-select:focus {
    outline: none;
    border-color: #2196F3;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tb-tab-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .tb-tablemap-container {
        flex-direction: column;
        padding: 10px;
    }
    .tb-tablemap-right {
        order: -1;
    }
    .tb-tab-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .tb-tab-item-box {
        height: 110px;
    }
    .tb-tab-item-box img {
        height: 70px;
    }
    .tb-center-item {
        flex-direction: column;
    }
    .tb-center-image {
        flex: 0 0 auto;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .tb-center-image img {
        width: 100%;
        height: 150px;
    }
    .tb-center-info {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .tb-tab-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .tb-tab-item-box {
        padding: 3px;
        height: 100px;
    }
    .tb-tab-item-box img {
        height: 60px;
    }
    .tb-center-name {
        font-size: 14px;
    }
    .tb-center-details {
        font-size: 12px;
    }
    .tb-select {
        min-width: 100%;
    }
}









/*neontags-elementor*/
.container {
    width: 100%;
    background: #1e212a;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    --rotate: 0deg;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.container::before, .container::after {
    content: "";
    position: absolute;
    border-radius: 22px;
    background-image: linear-gradient(var(--rotate), #5ddcff, #3c67e3 43%, #4e00c2);
    z-index: -1;
}

.container::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.container::after {
    inset: 0;
    margin: 0 auto;
    transform: scale(0.9);
    filter: blur(30px);
    opacity: 0.8;
}

.content {
    flex: 0 0 34%;
    min-width: 250px;
}

.title {
    color: #f3f2f6;
    font-size: 24px;
    margin: 0px;
    font-family: var(--font-titels) , sans-serif;
}

.description {
    color: #99979d;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-titels) , sans-serif;
}

.hashtag-list {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.hashtag {
    padding: 20px 15px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.15));
    border: 3px solid #1b1c20;
    border-radius: 10px;
    height: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.5s ease;
}

.hashtag::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.095);
    border-radius: 1px 1px 10px 10px;
    top: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.hashtag:hover::before {
    background: #fff;
    box-shadow: 0 7px 28px 14px rgba(255, 255, 255, 0.25);
}

.hashtag span {
    background: linear-gradient(180deg, #5ddcff, #3c67e3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    transition: background 0.5s ease;
    font-family: var(--font-titels) , sans-serif;
}

.hashtag:hover span {
    background: linear-gradient(180deg, #72e1ff, #648bff);
    -webkit-background-clip: text;
    background-clip: text;
}

@media (max-width: 768px) {
  
    .content {
        flex: 0 0 100%;
    }

    .hashtag-list {
        flex: 0 0 100%;
    }
}




/*tileblog-elementor*/
.tileblog-container {
    margin: 0 auto;
}

.tileblog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tileblog-main-title {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    background: var(--gradientcolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    margin: 0;
}

.tileblog-categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    direction: rtl;
    width: calc(100% - 150px); 
    -ms-overflow-style: none; 
    scrollbar-width: none;
    justify-content: flex-end;
}

.tileblog-categories::-webkit-scrollbar {
    display: none;
}

.tileblog-category-item {
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid #ececec;
    text-decoration: none;
}

.tileblog-category-item:hover {
    background: #f0f0f0;
    color: #000;
}

.tileblog-layout {
    display: flex;
    gap: 20px;
    direction: rtl;
}

.tileblog-right {
    width: 35%;
}

.tileblog-left {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tileblog-right-item,
.tileblog-left-item,
.tileblog-bottom-item {
    position: relative;
    border-radius: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tileblog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    z-index: 1;
}

.tileblog-right-item:hover .tileblog-bg,
.tileblog-left-item:hover .tileblog-bg,
.tileblog-bottom-item:hover .tileblog-bg {
    transform: scale(1.1);
}

.tileblog-right-item {
    height: 600px;
}

.tileblog-left-top {
    flex: 1;
}

.tileblog-left-item {
    height: 100%;
}

.tileblog-left-bottom {
    display: flex;
    gap: 20px;
    flex: 1;
}

.tileblog-bottom-item {
    width: 50%;
    height: 100%;
}

.tileblog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 80%) !important;
    color: #fff;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tileblog-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 100%) !important;
    color: #fff;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tileblog-right-title {
    font-size: 25px !important;
}

.tileblog-left-title {
    font-size: 20px !important;
}

.tileblog-bottom-title {
    font-size: 16px !important; 
}

.tileblog-right-title a,
.tileblog-left-title a,
.tileblog-bottom-title a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.tileblog-right-excerpt {
    font-size: 14px;
    margin: 10px 0;
    background: #ffffff1c;
    padding: 8px;
    border-radius: 5px;
}

.tileblog-no-posts {
    text-align: center;
    color: #777;
    padding: 20px;
}

@media (max-width: 768px) {
    .tileblog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tileblog-categories {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-start;
    }

    .tileblog-layout {
        flex-direction: column;
    }

    .tileblog-right,
    .tileblog-left {
        width: 100%;
    }

    .tileblog-right-item {
        height: 400px;
    }

    .tileblog-left-item,
    .tileblog-bottom-item {
        height: 200px;
    }

    .tileblog-left-bottom {
        flex-direction: column;
    }

    .tileblog-bottom-item {
        width: 100%;
    }
}
.tb-back-btn {
    display: block;
    margin-top: 8px;
    padding: 5px 10px;
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'yekan';
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}

.tb-back-btn:hover {
    background: linear-gradient(to right, #1976D2, #1565C0);
}











/*matnbar-elementor*/
.matn-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 10px;
    background-color: #818b980d;
}

.matn-bar-text,
.matn-bar-link {
    flex-grow: 1;
    margin: 0 10px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.matn-bar-text::-webkit-scrollbar,
.matn-bar-link::-webkit-scrollbar {
    display: none;
}

.matn-bar-text {
    color: #1f2328;
}

.matn-bar-link {
    text-decoration: none;
}

.matn-bar[data-type="link"] .matn-bar-link {
    color: #006ec6;
}

.matn-bar[data-type="download"] .matn-bar-link {
    color: #1f2328;
}

.matn-bar-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}










/*blogsidebar-elementor*/

.blgsid-blog-container {
    margin: 0 auto;
}

.blgsid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    padding-bottom: 15px;
    flex-direction: row-reverse;
}

.blgsid-header-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    background: var(--gradientcolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blgsid-view-all a {
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-family: var(--font-titels);
}

.blgsid-blog-layout {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse; 
}

.blgsid-blog-sidebar {
    width: 30%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    margin-bottom: 20px;
    border: 1px solid #ececec;
}

.blgsid-posts-list {
    width: 70%;
}

.blgsid-blog-post {
    border-radius: 15px;
    overflow: hidden;
}

.blgsid-post-main {   
    display: flex;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    margin-bottom: 20px;
    border: 1px solid #ececec;
}

.blgsid-post-thumbnail {
    width: 80%;
    overflow: hidden; 
    border-radius: 12px; 
}

.blgsid-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 1s ease;
    transform-origin: center center; 
}

.blgsid-post-thumbnail img:hover {
    transform: scale(1.05); 
}

.blgsid-post-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blgsid-post-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.blgsid-post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.blgsid-post-title a:hover {
    color: #0073aa;
}

.blgsid-post-excerpt {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-block-start: 5px;
    margin-block-end: 1em;
}

.blgsid-post-meta-container {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    padding-top: 10px;
    align-items: center;
}

.blgsid-post-viewcomment {
    display: flex;
}

.blgsid-post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.blgsid-post-comments {
    display: flex;
    align-items: center;
}

.blgsid-post-comments img,
.blgsid-post-views img {
    width: 25px;
    height: 25px;
}

.blgsid-f-comment {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

.blgsid-f-view {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

.blgsid-sidebar-content {
    padding: 10px;
}

.blgsid-no-posts {
    text-align: center;
    color: #777;
    padding: 20px;
}

@media (max-width: 992px) {
    .blgsid-blog-layout {
        flex-direction: column;
    }

    .blgsid-blog-sidebar {
        width: 100%;
        order: 2;
        padding: 10px;
    }

    .blgsid-posts-list {
        width: 100%; 
        order: 1;
    }

    .blgsid-blog-container {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blgsid-post-main {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .blgsid-post-thumbnail {
        width: 100%;
        margin-bottom: 15px;
    }

    .blgsid-post-content {
        width: 100%;
    }

    .blgsid-post-meta-container {
        gap: 15px;
    }

    .blgsid-header {
        align-items: center;
        gap: 10px;
        display: flex;
    }
}

.blog-sidebar {
    width: 30%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    margin-bottom: 20px;
    border: 1px solid #ececec;
}

@media (max-width: 992px) {
    .blog-sidebar {
        width: 100%; 
        order: 2;
    }
}

.blog-sidebar {
    padding: 15px;
    border-radius: 10px;
    font-family: var(--font-titels), sans-serif;
    background: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    border: 1px solid #ececec;
}

.blog-sidebar .sidebar-content {
    padding: 0;
    margin-bottom: 15px;
}

.blog-sidebar .sidebar-content h3 {
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 16px;
    color: #333;
    font-family: var(--font-titels);
}

.blog-sidebar .smart-search-container {
    position: relative;
    width: 100%;
}

.blog-sidebar .smart-search-input {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-titels);
    border: 2px solid #ececec;
    outline: none;
    background: #fff;
}

.blog-sidebar .smart-search-input:focus {
    border-color: #e2e2e2;
}

.blog-sidebar .smart-search-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: none;
}

.blog-sidebar .smart-search-results {
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 10px;
    margin-top: 5px;
    padding: 5px;
}

.blog-sidebar .smart-search-results .search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .smart-search-results .search-results-list li {
    padding: 5px 10px;
    font-family: var(--font-titels);
    font-size: 14px;
    color: #333;
    border-radius: 5px;
}

.blog-sidebar .smart-search-results .search-results-list li:hover {
    background: #f8f9fa;
}

.blog-sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
}

.blog-sidebar .tagcloud a {
    display: inline-block;
    padding: 0px 5px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 13px !important;
    border: 2px solid #ececec;
    border-radius: 10px;
    font-family: var(--font-titels);
    transition: color 0.3s;
}

.blog-sidebar .tagcloud a:hover {
    color: #2196F3;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li.cat-item {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    font-family: var(--font-titels);
}

.blog-sidebar ul li.cat-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-sidebar ul li.cat-item a:hover {
    color: #2196F3;
}

@media (max-width: 992px) {
    .blog-sidebar {
        width: 100%;
        order: 2;
        padding: 10px;
    }
}










/*story-elementor*/
.str-stories-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.str-story-circle {
    width: 80px;
    height: 80px;
    cursor: pointer;
    position: relative;
    margin-right: 5px;
}

.str-story-circle-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    background: #fbfbff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 3px solid #fbfbff;
}

.str-story-circle-image {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    display: block;
}

.str-swiper-slide {
    width: 80px !important;
    height: 80px !important;
}

.str-story-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.str-story-progress-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.str-story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.str-story-progress-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    transition: width linear;
}

.str-story-fullscreen-swiper {
    width: 100%;
    height: 100%;
}

.str-story-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.str-story-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.str-story-content {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.str-story-content img,
.str-story-content video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

@media (max-width: 767px) {
    .str-story-content img,
    .str-story-content video {
        border-radius: 0px !important;
    }
}

@media (min-width: 768px) {
    .str-story-content img,
    .str-story-content video {
        border-radius: 15px !important;
    }
}

.str-story-button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #ffffff1a;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.str-story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.str-story-prev,
.str-story-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.str-story-prev:hover,
.str-story-next:hover,
.str-story-prev:active,
.str-story-next:active {
    opacity: 1;
}

.str-story-prev img,
.str-story-next img {
    width: 40px;
    height: 40px;
    display: block;
}

@media (min-width: 768px) {
    .str-story-prev {
        right: 20px;
        left: auto;
    }
    .str-story-next {
        left: 20px; 
        right: auto;
    }
}

@media (max-width: 767px) {
    .str-story-prev {
        right: 10px;
        left: auto;
    }
    .str-story-next {
        left: 10px;
        right: auto;
    }
}

.str-story-circle-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-repeat: repeat-x;
    background-position: center;
    border-radius: 50%;
    padding: 0.15rem;
    box-sizing: border-box;
}

.str-story-circle-wrapper:active{
    transform: scale(0.95); 
}



.str-stories-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to right, #fbfbff, transparent);
    z-index: 2;
    pointer-events: none;
}

.str-stories-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to left, #fbfbff, transparent);
    z-index: 2;
    pointer-events: none;
}


.str-stories-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
}

@media (min-width: 1024px) {
    .str-stories-content {
        width: 25%;
    }
    .str-stories-container {
        width: 75%;
    }
    .str-stories-wrapper:not(:has(.str-stories-content)) .str-stories-container {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .str-stories-wrapper {
        flex-direction: column;
    }
    .str-stories-content,
    .str-stories-container {
        width: 100%;
    }
}

.str-stories-title {
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}

.str-stories-description {
    line-height: 1;
}







/* tileslides-elementor */
.plg-tile-slides-container {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
}

.plg-tiles-list {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plg-tile-item {
    position: relative;
    height: 65px;
    border-radius: 15px;
    display: block;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.plg-tile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
    transform: scale(1);
    z-index: 0;
}

.plg-tile-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.plg-tile-item:hover::before {
    transform: scale(1.1);
}

.plg-tile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.plg-tile-icon {
    width: 25px;
    height: 20px;
}

.plg-tile-text {
    color: white;
    font-family: var(--font-titels);
    font-size: 20px;
}

.plg-main-image-section {
    width: 67%;
    position: relative;
}

.plg-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.plg-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.plg-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 1s ease;
}

.plg-image-container:hover img {
    transform: scale(1.04);
}

.plg-image-container.has-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    border-radius: 20px;
    z-index: 1;
}

.plg-image-overlay-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-45%);
    color: #ffffff;
    font-family: var(--font-titels);
    z-index: 2;
    width: 80%;
    padding: 10px;
    text-decoration: none;
}

.plg-image-overlay-content .plg-image-title {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px #000;
    font-family: var(--font-titels);
}

.plg-image-overlay-content .plg-image-description {
    display: block;
    line-height: 1.5;
    text-shadow: 0 2px 4px #000;
    font-family: var(--font-titels);
}

.plg-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: var(--font-titels);
    background-color: #fbfbff;
    padding: 10px;
    width: max-content;
    border-radius: 0px 20px 0px 0px;
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 3;
}

.plg-text-overlay span {
    display: inline-block;
    font-family: var(--font-titels);
font-weight: bold;
}

.plg-text-overlay::before {
    top: -20px;
    left: 0px;
    bottom: 0px;
    content: "";
    height: 20px;
    position: absolute;
    width: 20px;
    z-index: 1;
    border-radius: 0 0 0 100vw;
    box-shadow: -4px 4px 0 4px #fbfbff;
}

.plg-text-overlay::after {
    bottom: 0px;
    left: calc(100% + 0px);
    content: "";
    height: 20px;
    position: absolute;
    width: 20px;
    z-index: 1;
    border-radius: 0 0 0 100vw;
    box-shadow: -4px 4px 0 4px #fbfbff;
}

@media (max-width: 768px) {
    .plg-text-overlay::before {
        left: 1px;
    }
    .plg-text-overlay::after {
        bottom: 1px;
    }

    .plg-tile-slides-container {
        flex-direction: column-reverse;
    }

    .plg-tiles-list {
        width: 100%;
    }

    .plg-main-image-section {
        width: 100%;
    }

    .plg-image-container {
        height: auto;
    }

    .plg-image-container img {
        height: auto;
    }

    .plg-text-overlay {
        position: absolute;
        bottom: -1px;
        left: -1px;
        width: max-content;
        padding: 8px;
    }

    .plg-image-overlay-content {
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
}










/*gallery-elementor*/
.gallery-main-title{
    font-family: var(--font-titels);
font-size: 1.17em;
font-weight: bold;

margin-block-start: 1em;
    margin-block-end: 1em;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    display: block; 
    width: 100%;
}
.gallery-text {
    width: 100%;
    bottom: 0;
    margin: 0;
    line-height: 1.2;
    font-family: var(--font-titels);
}
@media (max-width: 767px) {
    .gallery-container {
        grid-template-columns: 1fr !important;
    }
}


/* blog-slides CSS */
.sld-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.sld-slides-title {
    margin-bottom: 0; 
}

.sld-slides-title .sld-gradient-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.sld-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sld-blog-slide {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
    padding: 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sld-blog-slide-image {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.sld-blog-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    border-radius: 10px;
    min-width: 100%;
    min-height: 100%;
}

.sld-blog-slide h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
    line-height: 1.4;
    height: 2.8em; 
    display: flex;
    align-items: center; 
    overflow: hidden;
    font-family: var(--font-titels);
    flex-shrink: 0; 
}

.sld-excerpt {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.sld-blog-meta {
    margin-top: auto; 
    flex-shrink: 0; 
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.sld-post-date {
    font-size: 14px;
    color: #777;
}

.sld-read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #03A9F4, #2196F3);
    padding: 0 8px;
    border-radius: 10px;
    font-family: var(--font-titels);
}

.sld-read-more:hover {
    background: linear-gradient(135deg, #039fe7, #1d86dc);
}

/* view-comments */
.sld-post-viewcomment {
    display: flex;
}

.sld-post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.sld-post-comments {
    display: flex;
    align-items: center;
}

.sld-post-comments img,
.sld-post-views img {
    width: 25px;
    height: 25px;
}

.sld-f-comment {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
    color: #777;
}

.sld-f-view {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
    color: #777;
}

@media (max-width: 1024px) {
    .sld-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sld-blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sld-blog-slide {
        padding: 15px;
    }


    .sld-blog-slide h3 {
        font-size: 18px;
    }

    .sld-excerpt {
        font-size: 13px;
    }
}
















/* blog-carousel */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px 35px 25px;
    position: relative;
}

.carousel-title {
}

.carousel-title .gradient-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.blog-carousel {
    overflow: hidden;
}

.blog-slide {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
    padding: 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-slide-image {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.blog-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    border-radius: 10px;
    min-width: 100%;
    min-height: 100%;
}

.blog-slide h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
    line-height: 1.4;
    height: 2.8em; 
    display: flex;
    align-items: center; 
    overflow: hidden;
    font-family: var(--font-titels);
    flex-shrink: 0; 
}

.blog-slide .excerpt {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-slide .blog-meta {
    margin-top: auto; 
    flex-shrink: 0; 
}

.post-date {
    font-size: 14px;
    color: #777;
}

.read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #03A9F4, #2196F3);
    padding: 0 8px;
    border-radius: 10px;
    font-family: var(--font-titels);
}

.read-more:hover {
    background: linear-gradient(135deg, #039fe7, #1d86dc);
}

.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background: rgba(255, 255, 255, 0.9);
    width: 30px;
    height: 30px;
    border-radius: 25%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ffffff;
    background: #3999ff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #2c92ff;
    opacity: 1;
}

@media (max-width: 768px) {
    .blog-slide {
        padding: 15px;
    }

    .blog-slide h3 {
        font-size: 18px;
    }

    .blog-slide .excerpt {
        font-size: 13px;
    }
}















/* search */

.elmentor-search-container {
    position: relative;
    margin: 0 auto;
}

.elmentor-search-input{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-titels);
}

.elmentor-search-input:focus {
    border: 2px solid #c8c8c8; 
    outline: none;
}

.elmentor-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 12%);
    z-index: 1000;
}

.elmentor-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.elmentor-search-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.elmentor-search-results li:last-child {
    border-bottom: none;
}

.elmentor-search-results a {
    text-decoration: none;
    color: #333;
}

.elmentor-search-results a:hover {
    color: #0073aa;
}

.elmentor-search-results p {
    padding: 10px;
    margin: 0;
    color: #666;
}


.elmentor-search-results::-webkit-scrollbar {
    width: 10px;
}
.elmentor-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.elmentor-search-results::-webkit-scrollbar-thumb {
    background: #4bccff;
    border-radius: 10px;
}






.elmentor-search-container {
    position: relative;
}

.elmentor-search-spinner {
    display: none;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}





/*smart-search*/
.smart-search-container {
    position: relative;
}

.smart-search-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.smart-search-results {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 10;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px;
}

.smart-search-results .search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.smart-search-results .search-results-list li {
    padding: 5px 10px;
}

.smart-search-results .search-results-list li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.smart-search-results .search-results-list li a:hover {
    color: #0073aa;
}


.smart-search-results::-webkit-scrollbar {
    width: 10px;
}
.smart-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.smart-search-results::-webkit-scrollbar-thumb {
    background: #4bccff;
    border-radius: 10px;
}



/*loading-smart-search*/
.smart-search-container {
    position: relative;
}

.smart-search-spinner {
    display: none;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}



/*view-comments*/
.post-viewcomment {
    display: flex;
}

.post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.post-comments{
    display: flex;
    align-items: center;
}



.post-comments img,
.post-views img {
    width: 25px;
    height: 25px;
}


.f-comment{font-family: var(--font-titels);
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;color: #777;}

.f-view{font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;color: #777;}




    .blog-meta{display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
    }





/* style-single-post */

.plg_post-main {
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #ececec;
}

.plg_post-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.plg_post-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.plg_post-thumbnail img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.plg_post-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plg_post-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.plg_post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.plg_post-title a:hover {
    color: #0073aa;
}

.plg_post-excerpt {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-block-start: 5px;
    margin-block-end: 1em;
}

.plg_post-meta-container {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    padding-top: 10px;
    border-top: 1px solid #eee;
    align-items: center;
}

.plg_post-viewcomment {
    display: flex;
}

.plg_post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.plg_post-comments {
    display: flex;
    align-items: center;
}

.plg_post-comments img,
.plg_post-views img {
    width: 25px;
    height: 25px;
}

.plg_f-comment {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

.plg_f-view {
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .plg_post-main {
        flex-direction: column;
        text-align: center;
        gap: 0;
        border-radius: 15px;
    }

    .plg_post-thumbnail {
        width: 100%;
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
    }

    .plg_post-thumbnail a {
        display: block;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        line-height: 0;
    }

    .plg_post-thumbnail img {
        width: 100%;
        height: auto;
        object-fit: cover; 
        border-radius: 12px;
        display: block;
    }

    .plg_post-content {
        width: 100%;
    }

    .plg_post-meta-container {
        gap: 15px;
    }
}






/*category-elementor*/
.plg-category-slider-widget {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.plg-category-slider-container {
    display: flex;
    flex-wrap: wrap;
}

.plg-content-section {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.plg-slider-images {
    flex: 3;
    min-width: 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}


.plg-slide-link {
    display: flex ;
        color: white;
        height: 100%;
        position: relative;
        flex-direction: column;
}

.plg-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 38%), rgb(255 76 76 / 0%));
    padding: 15px 20px 20px;
    color: white;
    margin: 0;
    z-index: 1;
    text-shadow: 0px 2px 3px rgb(0 19 33 / 58%);
}

.plg-slide-caption h3 {
    margin: 0;
    font-size: 16px;
}

.plg-category-slider-widget{
    border: 1px solid #ececec;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    background-color: #ffffff;
}


@media (min-width: 1024px) {
    .plg-slider-images {
        height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .plg-slider-images {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .plg-category-slider-container {
        flex-direction: column;
    }
    .plg-content-section {
        order: 1;
    }
    .plg-slider-images {
        order: 2;
        width: 100%;
        height: 250px;
    }
  
}






/* contact widget */
.contact-widget {
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.contact-widget.box-align-right {
    text-align: right;
    direction: rtl;

    background-color: #00ffff00 !important;
}

.contact-widget.box-align-left {
    text-align: left;
    direction: ltr;
}

.contact-widget-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-links-container.layout-vertical {
    display: flex;
    flex-direction: column;
}

.contact-links-container.layout-horizontal {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}
.contact-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    transition: all 0.3s ease;
    width: 100%;
    width: max-content;
    margin-block-end: 8px;
    border: 1px solid #ececec;
}

.contact-link-item.align-right {
    flex-direction: row-reverse; 
    justify-content: flex-end;
}

.contact-link-item.align-left {
    flex-direction: row;
    justify-content: flex-start;
}

.contact-link-item:hover {
    background-color: #f8f9fa;
}

.contact-link-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-link-item a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}


@media (max-width: 767px) {
    .contact-widget {
        padding: 15px;
    }
    
    .contact-widget-title {
        font-size: 20px;
    }
    
    .contact-link-item a {
        font-size: 14px;
    }
}

.contact-link-icon{display: flex;}
.contact-link-item{font-family: var(--font-titels) ;line-height: 0;}










/*terminal*/
#plg_terminal {
    width: 100%;
    height: fit-content;
    margin: auto auto;
    background-color: #2d2d2d;
    border-radius: 10px;
    box-shadow: 0px 5px 0px 0px rgb(0 0 0 / 7%);
    opacity: 1;
    padding: 10px;
}
.plg_title {
    text-align: center;
    font-size: 1em;
    color: #999;
    height: 1.7rem;
    position: relative;
    top: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.171);
    padding-bottom: 0rem;
    line-height: 1;
}
.plg_window {
    color: #d6d6d6;
    font-size: 14px;
    font-family: monospace;
    overflow-wrap: break-word;
    line-height: 1.25em;
}
.plg_icons {
    margin: 0;
    position: absolute;
    list-style: none;
    padding: 0;
}
ul.plg_icons li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}
ul.plg_icons li.plg_close {
    background-color: #ff5552;
}
ul.plg_icons li.plg_minimize {
    background-color: #ffbe42;
}
ul.plg_icons li.plg_maximize {
    background-color: #31c74a;
}
code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
    direction: ltr;
    text-align: left;
}
.green {
    color: #a9d3ab;
}
.blue {
    color: #00BCD4;
}
.black {
    color: #646464;
}
.bold {
    font-style: bold;
}
.italic {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}





/* wgt-contact widget */

.wgt-contact-widget-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.wgt-contact-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    transition: all 0.3s ease;
    margin-block-end: 8px;
    border: 1px solid #ececec;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #454545; 
}

.wgt-contact-link-item:hover {
    background-color: #f8f9fa;
}

.wgt-contact-link-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.wgt-contact-link-text {
    font-size: 16px;
    transition: color 0.3s ease;
    color: #454545;
    font-family: var(--font-titels);
}

.wgt-align-right {
    flex-direction: row-reverse;
}

.wgt-align-left {
    flex-direction: row;
    justify-content: flex-start;
}

.wgt-contact-link-icon {
    display: flex;
    align-items: center;
}

.wgt-contact-link-item {
    font-family: var(--font-titels);
    line-height: 1.5;
}





/*videos-elementor*/
.plg-video-player-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 9%);
    overflow: hidden;
    border: 1px solid #ececec;
}

.plg-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.plg-widget-title {
    background: var(--gradientcolor); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    display: inline-block;
    font-family: var(--font-titels), sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}


.plg-view-all-btn {
    width: fit-content;
    color: white;
    cursor: pointer;
    font-size: 15px;
    padding: 4px 8px;
    border: none;
    border-radius: 8px;
    background: var(--gradientcolor);
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
    font-family: var(--font-titels);
  }

  .plg-view-all-btn:active {
    background: var(--gradientcolor);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 0px rgba(255, 255, 255, 0.2);
  }


.plg-video-player-container {
    display: flex;
    width: 100%;
    height: 500px;

    flex-direction: row-reverse;
}

.plg-video-player {
    width: 67%;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.plg-video-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 17px;
}

.plg-video-player video {
    width: 100%;
    height: 100%;
    border-radius: 20px; 

}

.plg-video-list {
    width: 33%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; 
    background: #ffffff;
    padding-left: 10px;

}

.plg-video-list::-webkit-scrollbar {
    display: none;
}

.plg-video-item {
    cursor: pointer;
    padding: 5px 0px 5px 5px;
    border-bottom: 3px solid #f9f9f9;
}

.plg-video-item-inner {
    display: flex;
    align-items: center;
}

.plg-thumbnail-wrapper {
    position: relative;
    width: 100px;
    height: 60px;
    margin-left: 10px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.plg-video-info {
    flex-grow: 1;
}

.plg-video-title {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-titels);
    color: #252525;
}

.plg-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plg-meta-left {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.plg-view-icon,
.plg-comment-icon {
  
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.plg-view-full {
    color: #1884db;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-titels);
}

.plg-view-full:hover {
    text-decoration: underline;
}

.plg-play-icon,
.plg-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00000024;
    border-radius: 20%;
    padding: 5px;
    transition: background 0.3s ease;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plg-video-player .plg-play-icon,
.plg-video-player .plg-video-play-overlay {
    width: 40px;
    height: 40px;
    padding: 10px;
}

.plg-play-icon:hover,
.plg-video-play-overlay:hover {
    background-color: #00000050;
}

@media (max-width: 768px) {
    .plg-video-player-container {
        flex-direction: column;
        height: auto;
    }
    .plg-video-player,
    .plg-video-list {
        width: 100%;
    }
    .plg-video-player {
        height: 300px;
        margin-bottom: 10px;
    }
    .plg-video-list {
        max-height: 300px;
    }
   



    .plg-video-list {
        padding-left: 0px;
    
    }



}

.plg-txtvc{font-family: var(--font-titels) ;font-size: 14px;}