@font-face {
    font-family: 'Yekan';
    src: url('../fonts/B_Yekan/Yekan.ttf');
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir/Vazirmatn-Medium.woff2');
}

@font-face {
    font-family: 'Vazir Light';
    src: url('../fonts/Vazir/Vazirmatn-Light.woff2');
}

* {
    font-family: 'Vazir';
}

:root {
    --primary-color: #007a87;
    --primary-hover: #005f69;
    --accent-color: #00bcd4;
    --bg-gradient: linear-gradient(135deg, #005f69 0%, #008b9b 100%);
    --footer-bg: #111d27;
    --footer-text-muted: #94a3b8;
    --footer-border: rgba(255, 255, 255, 0.08);
    --theme: #00838f;
    --theme-dark: #006064;
    --text-muted: #6c757d;
    --light-bg: #f5f7f8;
}

.news-slider .owl-dot:nth-child(6) span::after,
.mini-slider .owl-dot:nth-child(6) span::after {
    content: '6';
}

.news-slider .owl-dot:nth-child(7) span::after,
.mini-slider .owl-dot:nth-child(7) span::after {
    content: '7';
}

.news-slider .owl-dot:nth-child(8) span::after,
.mini-slider .owl-dot:nth-child(8) span::after {
    content: '8';
}

.news-slider .owl-dot:nth-child(9) span::after,
.mini-slider .owl-dot:nth-child(9) span::after {
    content: '9';
}

.news-slider .owl-dot:nth-child(10) span::after,
.mini-slider .owl-dot:nth-child(10) span::after {
    content: '10';
}

body {
    background-color: #d9d9d9 !important;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #00838f;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 131, 143, 0.3);
    z-index: 1000;
    font-size: 1.2rem;
    text-decoration: none;
}

    .scroll-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-to-top:hover {
        background-color: #006064;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 131, 143, 0.5);
        color: #ffffff;
    }

    .scroll-to-top:active {
        transform: translateY(-1px) scale(0.95);
        transition: all 0.1s ease;
    }

    .scroll-to-top i {
        animation: bounceUp 2s infinite;
    }

@keyframes bounceUp {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.scroll-to-top:hover i {
    animation: none;
}

.top-toolbar {
    background-color: #00838f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    color: #ffffff;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    line-height: 1.8;
}

.toolbar-link {
    color: #ffffff;
    text-decoration: none;
    margin-left: 1.3rem;
    transition: opacity 0.2s ease;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.9;
}

    .toolbar-link:hover {
        opacity: 1;
        color: #ffffff;
        text-decoration: none;
    }

.form-check {
    margin: 0;
    padding-right: 0 !important;
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-left: 2px;
    flex-shrink: 0;
}

    .form-check-input:checked {
        background-color: #00838f !important;
        border-color: #00838f !important;
        box-shadow: none !important;
    }

    .form-check-input:focus {
        box-shadow: none !important;
        border-color: #00838f !important;
    }

.form-check-label {
    font-size: 0.75rem;
    color: #333;
}

.toolbar-date {
    color: #ffffff;
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0.9;
    gap: 5px;
    margin-left: 0.2rem;
}

.toolbar-date {
    margin-top: 1px;
}

    .toolbar-date i {
        margin-left: 0.4rem;
        font-size: 0.9rem;
        opacity: 0.9;
    }

.toolbar-action {
    color: #ffffff;
    text-decoration: none;
    margin-right: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    opacity: 0.9;
}

    .toolbar-action:hover {
        opacity: 1;
        color: #ffffff;
    }

    .toolbar-action i {
        margin-left: 0.35rem;
        font-size: 0.95rem;
    }

.top-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.nav-content {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 19px;
    color: #00838f;
    text-decoration: none;
    font-weight: 300;
    white-space: nowrap;
}

.nav-link-item {
    font-size: 14px;
    position: relative;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

    .nav-link-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: #00838f;
        transition: width 0.3s ease;
    }

    .nav-link-item:hover {
        color: #00838f;
    }

        .nav-link-item:hover::after {
            width: 100%;
        }

.hamburger-btn {
    margin-top: 2px;
    font-size: 1.1rem !important;
    transition: color 0.2s !important;
}

    .hamburger-btn:hover {
        color: #00838f;
    }

.app-text {
    color: #dc3545;
    font-size: 0.8rem;
    white-space: nowrap;
}

.offcanvas-start {
    width: 80% !important;
}

.offcanvas-start {
    transition: transform 0.35s ease-in-out;
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
    padding: 16px 20px;
}

.offcanvas-title {
    font-size: 20px;
    color: #00838f;
    font-weight: 300;
}

.offcanvas-body {
    padding: 5px 0 !important;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 14px 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

    .sidebar-link:hover {
        background-color: #f8f9fa;
        color: #00838f;
    }

.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .search-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.search-modal-dialog {
    width: 90%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal-overlay.active .search-modal-dialog {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.search-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00838f;
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s;
}

    .search-modal-close:hover {
        color: #dc3545;
    }

.search-modal-body {
    padding: 24px 20px 28px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7f8;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s;
}

    .search-input-group:focus-within {
        border-color: #00838f;
        box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.1);
    }

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    color: #333;
}

    .search-input::placeholder {
        color: #adb5bd;
    }

.search-submit-btn {
    background: #00838f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

    .search-submit-btn:hover {
        background: #006064;
    }

/* ریسپانسیو موبایل */
@media (max-width: 576px) {
    .search-modal-dialog {
        width: 95%;
        margin: 0 10px;
    }

    .search-input-group {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: none;
        padding: 0;
    }

    .search-input {
        background: #f5f7f8;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .search-submit-btn {
        justify-content: center;
        border-radius: 10px;
        padding: 14px;
    }
}

.news-slider-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 5px 20px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    align-items: stretch;
}

    .news-card:hover {
        box-shadow: 0 8px 25px rgba(0, 131, 143, 0.15);
        border-color: #00838f;
        transform: translateY(-2px);
    }

.news-image {
    width: 180px;
    min-width: 180px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-content {
    flex: 1;
    padding: 5px 15px 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-label {
    font-size: 0.7rem;
    color: #9f9f9f;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slider .owl-nav {
    position: absolute;
    top: 5.9rem;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0 !important;
    pointer-events: none;
}

    .news-slider .owl-nav button {
        position: absolute;
        pointer-events: all;
        width: 36px;
        height: 36px;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 2px solid #dee2e6 !important;
        color: #495057 !important;
        font-size: 18px !important;
        line-height: 32px !important;
        text-align: center;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

        .news-slider .owl-nav button:hover {
            background: #00838f !important;
            border-color: #00838f !important;
            color: #ffffff !important;
            box-shadow: 0 4px 12px rgba(0, 131, 143, 0.3);
        }

.news-slider .owl-prev {
    right: -18px !important;
}

.news-slider .owl-next {
    left: -18px !important;
}

.news-slider .owl-dots {
    margin-top: 5px !important;
    text-align: center;
}

.news-slider .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

    .news-slider .owl-dot span {
        width: 32px !important;
        height: 32px !important;
        margin: 5px 2px !important;
        background: #f8f9fa !important;
        border: 2px solid #dee2e6 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 600;
        color: #495057;
        transition: all 0.3s ease !important;
        position: relative;
    }

    .news-slider .owl-dot:nth-child(1) span::after {
        content: '1';
    }

    .news-slider .owl-dot:nth-child(2) span::after {
        content: '2';
    }

    .news-slider .owl-dot:nth-child(3) span::after {
        content: '3';
    }

    .news-slider .owl-dot:nth-child(4) span::after {
        content: '4';
    }

    .news-slider .owl-dot:nth-child(5) span::after {
        content: '5';
    }

    .news-slider .owl-dot.active span,
    .news-slider .owl-dot:hover span {
        background: #00838f !important;
        border-color: #00838f !important;
        color: #ffffff !important;
    }

        .news-slider .owl-dot.active span::after,
        .news-slider .owl-dot:hover span::after {
            color: #ffffff;
        }

.news-slider .item {
    padding-top: 10px;
}

.mini-slider-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 15px 15px 20px 15px;
}

.mini-news-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: stretch;
}

.mini-news-image {
    width: 120px;
    min-width: 120px;
    height: 100%;
    overflow: hidden;
}

    .mini-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mini-news-content {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-news-label {
    color: white;
    background-color: #00838f;
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
}

.mini-news-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}


.mini-slider {
    position: relative;
}

    .mini-slider .owl-nav {
        position: absolute;
        top: 4rem;
        width: 100%;
        margin-top: 0 !important;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
    }

        .mini-slider .owl-nav button {
            pointer-events: all;
            width: 28px;
            height: 28px;
            border-radius: 50% !important;
            background: #f8f9fa !important;
            border: 1px solid #dee2e6 !important;
            color: #495057 !important;
            font-size: 12px !important;
            line-height: 26px !important;
            text-align: center;
            transition: all 0.2s ease !important;
            position: relative;
        }

            .mini-slider .owl-nav button:hover {
                background: #00838f !important;
                border-color: #00838f !important;
                color: #ffffff !important;
            }

    .mini-slider .owl-prev {
        margin-right: 0;
    }

    .mini-slider .owl-next {
        margin-left: 0;
    }

    .mini-slider .owl-dots {
        margin-top: 10px !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mini-slider .owl-dot span {
        width: 24px !important;
        height: 24px !important;
        margin: 0 !important;
        background: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 600;
        color: #6c757d;
        transition: all 0.2s ease !important;
        position: relative;
    }

    .mini-slider .owl-dot:nth-child(1) span::after {
        content: '1';
    }

    .mini-slider .owl-dot:nth-child(2) span::after {
        content: '2';
    }

    .mini-slider .owl-dot:nth-child(3) span::after {
        content: '3';
    }

    .mini-slider .owl-dot:nth-child(4) span::after {
        content: '4';
    }

    .mini-slider .owl-dot:nth-child(5) span::after {
        content: '5';
    }

    .mini-slider .owl-dot.active span {
        background: #00838f !important;
        border-color: #00838f !important;
    }

        .mini-slider .owl-dot.active span::after {
            color: #ffffff;
        }

.mini-news-par {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 10px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-widget {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    border-top: 4px solid #00bcd4;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.news-header {
    text-align: center;
    padding: 20px 15px;
}

    .news-header h3 {
        color: #cc0000;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0;
    }

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

    .news-item:hover {
        background-color: #f8f9fa;
    }

.news-link {
    display: flex;
    align-items: flex-start;
    padding: 5px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.7;
    transition: color 0.2s ease;
}

    .news-link span {
        padding-top: 4px;
    }

    .news-link:hover {
        color: #00bcd4;
    }

.news-icon {
    color: #6a8b96;
    margin-left: 12px;
    margin-top: 6px;
    font-size: 1.1rem;
}

.timer-widget {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #00bcd4;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.timer-header {
    text-align: center;
    padding: 15px;
    background-color: #ffffff;
}

    .timer-header h3 {
        color: #b30000;
        font-weight: bold;
        font-size: 1.1rem;
        margin: 0;
    }

.timer-body {
    padding: 40px 15px;
    background-color: #8b5cf6;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.countdown-wrapper {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.time-box {
    background-color: #050505;
    color: #ffffff;
    border-radius: 12px;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.time-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
}

.time-label {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 2px;
    color: #dddddd;
}

.video-widget {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #00bcd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.video-widget-title {
    text-align: center;
    padding: 15px 15px 5px 15px;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.video-tabs {
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-around;
}

    .video-tabs .nav-link {
        border: none;
        color: #7f8c8d;
        font-size: 0.9rem;
        font-weight: bold;
        padding: 5px 20px;
        background: none;
        position: relative;
        transition: color 0.3s;
    }

        .video-tabs .nav-link:hover {
            color: #00bcd4;
            border: none;
        }

        .video-tabs .nav-link.active {
            color: #00bcd4 !important;
            border: none;
            background: none;
        }

            .video-tabs .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                height: 3px;
                background-color: #00bcd4;
            }

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #bdc3c7;
    border-radius: 50%;
    margin-right: 5px;
}

.nav-link.active .live-dot {
    background-color: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
}

.video-list {
    padding: 10px 15px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
    padding: 15px 0;
    border-bottom: 1px dashed #e9ecef;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

    .video-item:last-child {
        border-bottom: none;
    }

    .video-item:hover {
        background-color: #fcfcfc;
    }

.video-info {
    flex: 1;
}

.video-meta {
    font-size: 0.65rem;
    color: #95a5a6;
    margin-bottom: 6px;
}

.video-title {
    font-size: 12px;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-item:hover .video-title {
    color: #00bcd4;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 110px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    direction: ltr;
}

    .video-duration-badge i {
        color: #00bcd4;
        font-size: 0.65rem;
    }

.video-footer {
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.video-footer-btn {
    display: block;
    padding: 15px;
    color: #1a252f;
    font-weight: bold;
    text-decoration: none;
    font-size: .9rem;
    transition: background-color 0.2s, color 0.2s;
}

    .video-footer-btn:hover {
        background-color: #f1f2f6;
        color: #00bcd4;
    }

    .video-footer-btn i {
        font-size: 0.8rem;
        margin-left: 5px;
    }

.newspaper-widget {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #00bcd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.newspaper-widget-title {
    text-align: center;
    padding: 15px 15px 15px 15px;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.newspaper-carousel {
    position: relative;
}

.newspaper-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.newspaper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* دکمه‌های ناوبری سفید رنگ چپ و راست در لبه تصویر */
.newspaper-carousel .carousel-control-prev,
.newspaper-carousel .carousel-control-next {
    width: 40px;
    height: 45px;
    background-color: #ffffff;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s;
}

    .newspaper-carousel .carousel-control-prev:hover,
    .newspaper-carousel .carousel-control-next:hover {
        background-color: #f1f2f6;
    }

.newspaper-carousel .carousel-control-prev {
    right: 0;
}

.newspaper-carousel .carousel-control-next {
    left: 0;
}

.newspaper-carousel .carousel-control-prev-icon,
.newspaper-carousel .carousel-control-next-icon {
    background-image: none;
    color: #00bcd4;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newspaper-caption {
    text-align: center;
    padding: 20px 15px;
    background-color: #ffffff;
}

    .newspaper-caption h4 {
        font-size: .9rem;
        font-weight: bold;
        color: #2c3e50;
        margin: 0;
    }

.newspaper-footer {
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.newspaper-footer-btn {
    display: block;
    padding: 15px;
    color: #1a252f;
    font-weight: bold;
    text-decoration: none;
    font-size: .9rem;
    transition: background-color 0.2s, color 0.2s;
}

    .newspaper-footer-btn:hover {
        background-color: #f1f2f6;
        color: #00bcd4;
    }

    .newspaper-footer-btn i {
        font-size: 0.8rem;
        margin-left: 5px;
    }


.sports-news-container {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #00bcd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.sports-news-main-title {
    text-align: center;
    padding: 15px 15px 5px 15px;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.sports-tabs-wrapper {
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-around;
}

    .sports-tabs-wrapper .nav-link {
        border: none;
        color: #7f8c8d;
        font-size: .75rem;
        font-weight: bold;
        padding: 12px 10px;
        background: none;
        position: relative;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .sports-tabs-wrapper .nav-link:hover {
            color: #00bcd4;
            border: none;
        }

        .sports-tabs-wrapper .nav-link.active {
            color: #00bcd4 !important;
            border: none;
            background: none;
        }

            .sports-tabs-wrapper .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                height: 3px;
                background-color: #00bcd4;
            }

.sports-badge-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.55rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
}

.sports-filter-area {
    padding: 15px;
    border-bottom: 1px solid #f1f2f6;
}

.sports-select-box {
    width: 100%;
    padding: 8px 15px;
    font-size: .9rem;
    font-weight: bold;
    color: #2c3e50;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 18px;
    padding-left: 40px;
}

    .sports-select-box:focus {
        border-color: #00bcd4;
    }

.sports-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sports-article-row {
    border-bottom: 1px solid #f5f6fa;
    transition: background-color 0.2s;
}

    .sports-article-row:last-child {
        border-bottom: none;
    }

    .sports-article-row:hover {
        background-color: #fafbfc;
    }

.sports-article-link {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 20px;
    color: #34495e;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.7;
    transition: color 0.2s;
    gap: 8px;
}

    .sports-article-link:hover {
        color: #00bcd4;
    }

.sports-article-text {
    flex: 1;
    padding-left: 10px;
    margin-top: 4px;
}

.sports-article-icon {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.hot-media-widget {
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #00bcd4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.hot-media-header {
    text-align: center;
    padding: 15px 15px 10px 15px;
}

.hot-media-title {
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.hot-media-viewer {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #000;
    overflow: hidden;
}

.hot-media-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

    .hot-media-element.active {
        display: block;
    }

.hot-story-progress-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hot-story-progress-bar {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    overflow: hidden;
}

.hot-story-progress-fill {
    height: 100%;
    width: 0%;
    background-color: #ffffff;
    border-radius: 2px;
}

.hot-story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

    .hot-story-nav-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

.hot-story-nav-prev {
    right: 10px;
}

.hot-story-nav-next {
    left: 10px;
}

.hot-story-overlay-controls {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.hot-story-icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    transition: transform 0.1s;
}

    .hot-story-icon-btn:hover {
        transform: scale(1.1);
    }

.hot-media-footer {
    padding: 20px 15px;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #f1f2f6;
}

.hot-media-caption {
    font-size: .9rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
}

.site-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-size: 0.82rem;
    border-top: 4px solid var(--accent-color);
    margin-top: auto;
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-col-title i {
        color: var(--accent-color);
        font-size: 1rem;
    }

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-list li {
        margin-bottom: 12px;
    }

.footer-link {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

    .footer-link:hover {
        color: var(--accent-color);
        transform: translateX(-4px);
    }

.footer-bottom {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid var(--footer-border);
}

.footer-socials {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.footer-social-btn {
    color: var(--footer-text-muted);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .footer-social-btn:hover {
        color: var(--accent-color);
        transform: translateY(-3px);
    }

.footer-copyright {
    color: var(--footer-text-muted);
    text-align: right;
    line-height: 1.8;
    margin: 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.footer-logo-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-color);
}



/* Advertisement Page Styles */

.ads-hero {
    background: linear-gradient(135deg, #001c1f 0%, #008b9b 100%);
    color: #ffffff;
    padding: 65px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .ads-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm76-4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM3 54c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.ads-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.ads-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cards-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.ads-card {
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
}

    .ads-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 122, 135, 0.1);
        border-color: rgba(0, 188, 212, 0.4);
        color: inherit;
    }

.ads-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 122, 135, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #008080;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.ads-card:hover .ads-icon-wrapper {
    background-color: #008080;
    color: #ffffff;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 122, 135, 0.2);
}

.ads-card-telegram:hover .ads-icon-wrapper {
    background-color: #24A1DE;
    box-shadow: 0 10px 20px rgba(34, 158, 217, 0.3);
}

.ads-card-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #001f22;
    transition: color 0.3s ease;
}

.ads-card:hover .ads-card-title {
    color: #008080;
}

.ads-card-telegram:hover .ads-card-title {
    color: #24A1DE;
}

.ads-card-value {
    font-size: 1.1rem;
    color: rgb(40, 40, 40);
    margin-bottom: 5px;
    direction: ltr;
    font-weight: 600;
}

.ads-card-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 8px;
}

.ads-minimal-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 25px 0;
    text-align: center;
    background-color: #ffffff;
    font-size: 0.85rem;
    color: rgb(40, 40, 40);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}


/* Contact Us Page Styles */
.contact-hero {
    background: var(--bg-gradient);
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--accent-color);
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.contact-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.info-card {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    text-decoration: none;
    display: block;
    color: inherit;
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 122, 135, 0.12);
        color: inherit;
    }

.info-card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 122, 135, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(10deg);
}

.info-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #34495e;
}

.info-card-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
    direction: ltr;
}

.contact-form-card {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 35px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .form-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

.form-label {
    font-weight: 700;
    color: #4a5568;
    font-size: 0.92rem;
    margin-bottom: 8px;
}

    .form-label span {
        color: #e74c3c;
        margin-right: 3px;
    }

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    color: #2d3748;
}

    .form-control::placeholder {
        color: #a0aec0;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 122, 135, 0.1);
        outline: none;
    }

.form-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-position: left 16px center;
    background-size: 16px;
    padding-left: 40px;
}

.field-group {
    position: relative;
}

.validation-icon {
    position: absolute;
    left: 15px;
    top: 43px;
    font-size: 1rem;
    pointer-events: none;
    display: none;
}

.is-valid + .validation-icon {
    display: block;
    color: #2ecc71;
}

.recaptcha-box {
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 100%;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    user-select: none;
}

.recaptcha-check-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.recaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.recaptcha-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #4285f4;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

.recaptcha-checkmark {
    color: #00bc62;
    font-size: 1.1rem;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.recaptcha-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: #737373;
}

    .recaptcha-logo-area img {
        width: 28px;
        height: 28px;
        margin-bottom: 2px;
    }

.submit-btn {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 40px !important;
    font-weight: bold !important;
    font-size: 1.05rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(0, 122, 135, 0.2) !important;
}

    .submit-btn:hover {
        background-color: var(--primary-hover) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 18px rgba(0, 122, 135, 0.3) !important;
        color: #ffffff !important;
    }

    .submit-btn:active {
        transform: translateY(0) !important;
    }

.success-toast {
    position: fixed;
    top: 25px;
    left: 25px;
    background-color: #2ecc71;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: bold;
}

    .success-toast.show {
        transform: translateX(0);
    }


/* News Page Styles */

.archive-header {
    background: linear-gradient(135deg, #001c1f 0%, #008b9b 100%);
    color: #ffffff;
    padding: 20px 0;
    border-top: 4px solid #0054a8;
}

    .archive-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm76-4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM3 54c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.archive-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-reset-filters {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

    .btn-reset-filters:hover {
        opacity: 0.8;
    }

.custom-select-wrapper {
    position: relative;
    min-width: 140px;
    flex-grow: 1;
    max-width: 200px;
}

@media (max-width: 991.98px) {
    .custom-select-wrapper {
        max-width: 100%;
    }
}

.select-btn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid #008383;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: right;
}

    .select-btn:hover,
    .select-btn.active {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .select-btn::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.8rem;
        margin-right: 10px;
        transition: transform 0.2s ease;
    }

    .select-btn.active::after {
        transform: rotate(180deg);
    }

.custom-dropdown-menu {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    list-style: none;
    padding: 5px 0;
    margin: 0;
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}

    .custom-dropdown-menu.show {
        display: block;
    }

    .custom-dropdown-menu li {
        padding: 10px 15px;
        font-size: 0.88rem;
        color: #ffffff;
        cursor: pointer;
        transition: background-color 0.2s;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        .custom-dropdown-menu li:last-child {
            border-bottom: none;
        }

        .custom-dropdown-menu li:hover {
            background-color: #008080;
        }

.date-filter-btn::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    margin-left: 8px;
    font-size: 0.95rem;
}

.newsPage-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    height: 12.1rem;
}

    .newsPage-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.news-img-wrapper {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsPage-card:hover .news-img {
    transform: scale(1.05);
}

.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    margin-bottom: 12px;
}

    .news-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.news-title {
    font-size: .95rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.custom-tabs .news-nav-link {
    color: #6c757d;
    font-weight: 500;
    font-size: .9rem;
    padding: 10px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

    .custom-tabs .news-nav-link:hover {
        color: #0097a7;
        border-bottom-color: transparent;
        background: transparent;
    }

    .custom-tabs .news-nav-link.active {
        color: #0097a7;
        background: transparent;
        border: none;
        font-size: .95rem;
        border-bottom: 3px solid #0097a7;
    }

.tab-content {
    padding: 20px 0;
}



/* Newspapers Page Styles */

.page-header {
    background: linear-gradient(135deg, #00838f, #006064);
    color: #ffffff;
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

    .page-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .page-header p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }

.newspaper-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .newspaper-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 131, 143, 0.15);
        border-color: #00838f;
    }

.newspaper-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f8f9fa;
}

    .newspaper-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.newspaper-card:hover .newspaper-image img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #00838f;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .date-badge i {
        font-size: 0.7rem;
    }

.newspaper-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newspaper-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newspaper-card:hover .newspaper-title {
    color: #00838f;
}

.editor-name {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .editor-name i {
        color: #00838f;
        font-size: 0.8rem;
    }

.publish-date {
    font-size: 0.8rem;
    color: #868e96;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .publish-date i {
        font-size: 0.75rem;
    }

.newspaper-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f3f5;
}

.page-count {
    font-size: 0.8rem;
    color: #868e96;
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    background-color: #00838f;
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

    .download-btn:hover {
        background-color: #006064;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 131, 143, 0.3);
    }

.filter-bar {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}



/* Videos Page Styles */

.video-card {
    background: transparent;
    border: none;
    margin-bottom: 20px;
}

.videos-thumbnail {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

    .videos-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.play-btn {
    width: 26px;
    height: 26px;
    background-color: #008080;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.durations-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.videos-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.video-category {
    color: #008080;
    font-size: 0.7rem;
    font-weight: 600;
}

.video-stats {
    color: #868e96;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .video-stats span {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .video-stats i {
        font-size: 0.6rem;
    }

.videos-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.stories-wrapper {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.story-item {
    text-align: center;
    cursor: pointer;
    padding: 0 2px;
}

.story-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    margin: 0 auto 6px;
    transition: transform 0.2s ease;
}

.story-item:hover .story-ring {
    transform: scale(1.05);
}

.story-ring.unseen {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.story-ring.seen {
    background: #dbdbdb;
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    background: #f8f9fa;
    display: block;
}

.story-username {
    font-size: 0.75rem;
    color: #262626;
    margin: 0;
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stories-slider .owl-nav {
    position: absolute;
    top: 35px;
    width: 100%;
    margin-top: 0 !important;
    pointer-events: none;
}

    .stories-slider .owl-nav button {
        position: absolute;
        pointer-events: all;
        width: 30px;
        height: 30px;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 1px solid #dbdbdb !important;
        color: #262626 !important;
        font-size: 12px !important;
        line-height: 28px !important;
        text-align: center;
        transition: all 0.2s ease !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

        .stories-slider .owl-nav button:hover {
            background: #fafafa !important;
            border-color: #bcbcbc !important;
        }

.stories-slider .owl-prev {
    right: -15px !important;
}

.stories-slider .owl-next {
    left: -15px !important;
}

.stories-slider .owl-dots {
    display: none;
}



/* Video Page Styles */

.video-meta-section {
    padding: 15px 0;
}

.video-info-right .category {
    color: #00838f;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.video-info-right .meta-detail {
    color: #6c757d;
    font-size: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-actions-left {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.action-btn {
    width: 90px;
    height: 45px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 6px;
    color: #212529;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

    .action-btn:hover {
        background-color: #e6e6e6;
    }

    .action-btn i {
        font-size: 0.8rem;
    }

.video-badge-btn {
    width: auto;
    height: 30px;
    padding: 15px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 6px;
    color: #212529;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

    .video-badge-btn:hover {
        background-color: #e6e6e6;
    }

    .video-badge-btn i {
        font-size: 0.8rem;
    }

.video-desc {
    font-size: 14px;
}

.error-btn {
    color: #dc3545;
}

.videoPage-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 12px;
    color: #212529;
}

.login-alert-box {
    background-color: #f6fcff;
    border-radius: 6px;
    padding: 40px 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 20px;
}

    .login-alert-box i {
        color: #00838f;
        font-size: 1rem;
    }

    .login-alert-box a {
        color: #00838f;
        font-weight: 600;
        text-decoration: none;
    }

.comments-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comments-count {
    font-weight: 700;
    color: #212529;
    font-size: 1rem;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-size: 0.85rem;
    cursor: pointer;
}

    .sort-filter i {
        font-size: 1.1rem;
        color: #6c757d;
    }

.comments-section {
    padding: 20px 0;
}

.comments-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #212529;
    margin-bottom: 6px;
}

.rules-reminder {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 16px;
}

    .rules-reminder .bold-theme {
        font-weight: 700;
        color: #00838f;
    }

.login-alert-box {
    background-color: #f6fcff;
    border-radius: 6px;
    padding: 40px 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 20px;
}

    .login-alert-box i {
        color: #00838f;
        font-size: 1rem;
    }

    .login-alert-box a {
        color: #00838f;
        font-weight: 600;
        text-decoration: none;
    }

.comments-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comments-count {
    font-weight: 700;
    color: #212529;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-size: 0.85rem;
    cursor: pointer;
}

    .sort-filter i {
        color: #6c757d;
        font-size: 1.1rem;
    }

.comment-card {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    margin-left: 10px;
    flex-shrink: 0;
}

.comment-user-info {
    flex: 1;
}

.comment-username {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
}

.comment-time {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
}

.comment-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #00838f;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .action-item i {
        font-size: 0.8rem;
    }

.comment-body {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

.view-replies-btn {
    color: #00838f;
    font-size: 0.8rem;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
}

    .view-replies-btn i {
        transition: transform 0.3s;
    }

    .view-replies-btn[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

.replies-container {
    margin-top: 10px;
    padding-right: 50px;
}

.reply-card {
    padding: 12px 0;
    border-bottom: 1px dashed #e9ecef;
}

    .reply-card .comment-avatar {
        width: 32px;
        height: 32px;
    }

    .reply-card .comment-username {
        font-size: 0.85rem;
    }

    .reply-card .comment-body {
        font-size: 0.85rem;
    }

    .reply-card .action-item {
        font-size: 0.7rem;
    }

.next-videos-section {
    background: #f0f6fa;
    border-radius: 8px;
    padding: 15px 0;
}

.next-videos-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .next-videos-header i {
        color: #00838f;
        font-size: 1rem;
    }

.next-video-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
}

    .next-video-item:hover {
        background-color: #f8f9fa;
    }

.next-thumb {
    position: relative;
    width: 140px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}

    .next-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.next-play-btn {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background-color: #00838f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.next-duration {
    position: absolute;
    bottom: 6px;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 500;
}


.next-video-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.next-video-time {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.next-video-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-badge-icon {
    background-color: #f6f6f6;
    padding: 4px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    transition: all 200ms linear;
}

    .news-badge-icon:hover {
        background-color: #e1e1e1;
    }

.searchVideos-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

    .searchVideos-thumbnail img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }



/* Gallery Report Page Styles */

.photo-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .photo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

.photo-grid {
    display: flex;
    height: 240px;
    gap: 2px;
}

.main-image {
    width: 55%;
    overflow: hidden;
}

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.side-images {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.side-top,
.side-bottom {
    flex: 1;
    overflow: hidden;
    position: relative;
}

    .side-top img,
    .side-bottom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    pointer-events: none;
}

.photo-info {
    padding: 14px 16px;
}

.photo-meta {
    font-size: 0.72rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.photo-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-hero {
    background: linear-gradient(135deg, #001c1f 0%, #008b9b 100%);
    color: #ffffff;
    padding: 35px 20px;
    position: relative;
    overflow: hidden;
    text-align: start;
}

    .gallery-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm76-4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM3 54c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.gallery-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


/* About Us Page Styles */

.about-banner-wrapper {
    margin: 0 auto;
}

.about-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('./../../Media/bg.jpg');
    background-size: cover;
    background-position: center left;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-banner-content {
    background-color: #009fa5;
    color: #ffffff;
    width: 65%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    padding: 40px 40px 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-icon {
    font-size: 1.8rem;
}

.about-banner-text {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
}

.features-section {
    margin: 60px auto 20px auto;
}

.feature-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 159, 165, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 159, 165, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .feature-item:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 159, 165, 0.25);
        box-shadow: 0 15px 35px rgba(0, 159, 165, 0.1);
    }

.feature-icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(0, 159, 165, 0.08);
    color: #009fa5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background-color: #009fa5;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 159, 165, 0.2);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #009fa5;
}

.feature-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}


/* News Page Styles */
.news-detail-container {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.news-top-row {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.news-image-side {
    width: 320px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

    .news-image-side img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

.news-title-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

    .news-meta-row span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

.news-code-badge {
    background: var(--light-bg);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 500;
    color: #495057;
}

.news-main-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.6;
    color: #212529;
    margin: 0;
}

.divider-line {
    border: none;
    border-top: 1px solid #000;
    margin: 20px 0 24px 0;
}

.news-content-text {
    font-size: 0.9rem;
    line-height: 2.2;
    color: #343a40 !important;
    margin-bottom: 24px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.share-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #495057;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
    text-decoration: none;
}

    .share-btn:hover {
        background: var(--theme);
        color: #fff;
        border-color: var(--theme);
    }

.app-download-box {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 24px;
    border: 1px solid #ecf0f1;
}

    .app-download-box .download-btn {
        background: var(--theme);
        color: #fff;
        border-radius: 8px;
        padding: 8px 20px;
        font-size: 0.85rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
    }

.live-suggestions {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #212529;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.live-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
}

.live-item {
    min-width: 140px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    flex-shrink: 0;
}

    .live-item img {
        width: 100%;
        height: 90px;
        object-fit: cover;
    }

    .live-item .live-title {
        font-size: 0.75rem;
        font-weight: 600;
        color: #333;
        padding: 6px 6px;
        line-height: 1.4;
    }


/* Login Page Styles */


.login-box {
    max-width: 545px;
    width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme);
    margin: 2rem 0 1rem 0;
    text-align: center;
    line-height: 1.3;
}

.login-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin: .5rem 0 3rem 0;
    font-weight: 500;
}

.input-group-phone {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
}

.country-select {
    width: 90px;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 8px 8px;
    background-color: #f8f9fa;
    font-size: 0.85rem;
    color: #495057;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-size: 14px;
    cursor: pointer;
    direction: ltr;
    text-align: left;
    padding-left: 25px;
    height: 42px;
}

.phone-input {
    flex: 1;
    border: 1px solid #ced4da;
    border-left: none;
    border-radius: 0px 8px 8px 0px;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    text-align: center;
    height: 42px;
}

    .phone-input::placeholder {
        text-align: center;
    }

    .phone-input:focus,
    .country-select:focus {
        border-color: #00838f;
        box-shadow: 0 0 0 2px rgba(0, 131, 143, 0.15);
        z-index: 1;
        position: relative;
    }

.login-btn {
    width: 100%;
    background-color: #0097a7;
    color: #ffffff;
    border: none;
    border-radius: 5rem;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    height: 42px;
}

    .login-btn:hover {
        background-color: #006064;
    }

.phone-input::-webkit-inner-spin-button,
.phone-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.phone-input[type="number"] {
    -moz-appearance: textfield;
}


.image-gradient-bar {
    position: relative;
    width: 100%;
    height: 150px;
    background: url('../../Media/b4f4lh4j2.jpeg') no-repeat left center / cover;
    overflow: hidden;
}

    .image-gradient-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 70%);
    }

.bar-content {
    position: absolute;
    right: 7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    z-index: 2;
    max-width: 55%;
}

.meta-info {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.main-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
}

.pic-desc {
    font-size: 1rem;
}




/* New Styles */

/* Main Page News Slider Navs */
.news-slider .owl-nav .fa-chevron-left {
    padding-top: 7px;
}

.news-slider .owl-nav .fa-chevron-right {
    padding-top: 7px;
}

.mini-slider .owl-nav .fa-chevron-right {
    padding-top: 7px;
}


/* NavBar DropDown */

.dropdown-nav {
    position: relative;
    display: inline-block;
}

.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 131, 143, 0.12);
    border: 1px solid #e0f7fa;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
    min-width: 280px;
}

.dropdown-nav:hover .dropdown-menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.dropdown-item-nav {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .dropdown-item-nav:hover {
        background-color: #e0f7fa;
        color: #00838f;
    }

.dropdown-menu-nav::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #e0f7fa;
    border-top: 1px solid #e0f7fa;
    transform: rotate(45deg);
}

.sidebar-link .toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.sidebar-link[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.submenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    padding: 8px 12px 8px 0;
    border-right: 2px solid #e0f7fa;
}

.submenu-link {
    display: block;
    padding: 8px 10px;
    font-size: 0.8rem;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

    .submenu-link:hover {
        background-color: #e0f7fa;
        color: #00838f;
    }


.image-gradient-bar {
    position: relative;
    width: 100%;
    height: 150px;
    background: url('https://picsum.photos/1200/400') no-repeat left center / cover;
    overflow: hidden;
}

    .image-gradient-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 70%);
    }

.bar-content {
    position: absolute;
    right: 7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    z-index: 2;
    max-width: 55%;
}

.meta-info {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.main-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
}

/* Login Page Styles */

.input-group-phone {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
}

.country-select {
    width: 90px;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 8px 8px;
    background-color: #f8f9fa;
    font-size: 0.85rem;
    color: #495057;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-size: 14px;
    cursor: pointer;
    direction: ltr;
    text-align: left;
    padding-left: 25px;
    height: 42px;
}

.phone-input {
    flex: 1;
    border: 1px solid #ced4da;
    border-left: none;
    border-radius: 0px 8px 8px 0px;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    text-align: center;
    height: 42px;
}

    .phone-input::placeholder {
        text-align: center;
    }

.otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    outline: none;
    transition: border-color 0.2s;
}

    .otp-input:focus {
        border-color: #00838f;
        box-shadow: 0 0 0 2px rgba(0, 131, 143, 0.15);
    }

.login-btn {
    width: 100%;
    background-color: #0097a7;
    color: #ffffff;
    border: none;
    border-radius: 5rem;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    height: 42px;
}

    .login-btn:hover {
        background-color: #006064;
    }

.back-link {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 12px;
    text-align: center;
    cursor: pointer;
}

    .back-link:hover {
        color: #00838f;
    }

@media (max-width: 768px) {
    .login-box {
        margin-top: -30px;
        padding: 20px 25px;
        max-width: 90%;
    }

    .bar-content {
        right: 2rem;
        max-width: 70%;
    }
}

/* Videos Styles For Story Section */

.story-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .story-viewer-overlay.active {
        display: flex;
    }

.story-viewer-close {
    position: absolute;
    top: 30px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .story-viewer-close:hover {
        background: rgba(220, 53, 69, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
        transform: rotate(90deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    }

.story-progress-bars {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 5;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0;
    background: #fff;
    transition: width 0.1s linear;
}

    .story-progress-fill.completed {
        background: #fff;
    }

.story-viewer-content {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .story-viewer-content img,
    .story-viewer-content video {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
    }

.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .story-nav-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        transform: translateY(-50%) scale(1.08);
    }

.story-nav-prev {
    right: 20px;
}

.story-nav-next {
    left: 20px;
}


.story-like-container {
    position: absolute;
    bottom: 35px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.story-like-btn {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .story-like-btn i {
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .story-like-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.08);
    }

    .story-like-btn.liked {
        background: rgba(255, 71, 87, 0.7);
        border-color: rgba(255, 71, 87, 0.8);
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
    }

        .story-like-btn.liked i {
            color: #ffffff;
            animation: heartBeat 0.5s ease;
        }

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .story-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .story-nav-prev {
        right: 10px;
    }

    .story-nav-next {
        left: 10px;
    }

    .story-like-btn {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }

    .story-like-container {
        bottom: 25px;
        right: 20px;
    }

    .story-viewer-close {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        top: 30px;
        right: 15px;
    }

    .story-viewer-content {
        max-width: 65%;
    }
}




/* Media Queries */
@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }

    /* .desktop-only {
        display: flex !important;
    } */
}

@media (max-width: 1200px) {
    .videos-thumbnail {
        height: 110px;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 20px;
    }

    .footer-copyright {
        text-align: center;
        justify-content: center;
        margin-top: 15px;
    }

    .footer-socials {
        justify-content: center;
    }

    .newspaper-image {
        height: 250px;
    }

    .about-banner-content {
        width: 75%;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
        padding: 35px 30px 35px 60px;
    }

    /* Kiyan Edited Code */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .next-thumb {
        width: 120px;
        height: 72px;
    }

    .next-video-title {
        font-size: 0.8rem;
    }

    .photo-title {
        font-size: 0.85rem;
    }

    .custom-tabs .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .archive-header {
        display: none !important;
    }

    .toolbar-link {
        margin-left: 0.9rem;
        font-size: 0.8rem;
    }

    .toolbar-date {
        font-size: 12px;
        border-left: 1px solid white;
        padding-left: 5px;
        margin-left: 0;
    }

    .toolbar-action {
        font-size: 12px;
        padding: 0 10px;
        border-left: 1px solid white;
        margin-right: 0;
    }

    .contact-hero {
        padding: 40px 0;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-form-card {
        padding: 20px;
        margin-top: -15px;
    }

    .info-card {
        margin-bottom: 15px;
    }

    .ads-hero-title {
        font-size: 1.1rem;
    }

    .ads-hero-subtitle {
        font-size: .80rem;
    }

    .ads-hero {
        padding: 40px 0;
    }

    .contact-hero {
        padding: 40px 0;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-form-card {
        padding: 20px;
        margin-top: -15px;
    }

    .info-card {
        margin-bottom: 15px;
    }

    .newspaper-image {
        height: 220px;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .videos-thumbnail {
        height: 100px;
    }

    .searchVideos-thumbnail {
        height: 12rem;
    }

    .videos-title {
        font-size: 0.8rem;
    }

    .story-ring {
        width: 62px;
        height: 62px;
    }

    .story-username {
        font-size: 0.7rem;
        max-width: 66px;
    }

    .stories-slider .owl-nav button {
        width: 26px;
        height: 26px;
        font-size: 10px !important;
        line-height: 24px !important;
    }

    .stories-slider .owl-prev {
        right: -13px !important;
    }

    .stories-slider .owl-next {
        left: -13px !important;
    }

    .video-actions-left {
        margin-top: 10px;
    }

    .action-btn {
        width: auto;
        padding: 0 10px;
    }

    .video-badge-btn {
        width: auto;
        padding: 0 10px;
    }

    .newsPage-card {
        flex-direction: column;
        height: auto;
    }

    .news-img-wrapper {
        width: 100%;
        height: 200px;
        flex-shrink: 1;
    }

    .news-body {
        padding: 15px;
    }

    .news-title {
        font-size: 0.9rem;
    }

    .news-desc {
        font-size: 0.7rem;
    }

    .about-banner {
        flex-direction: column;
        justify-content: flex-end;
        min-height: 450px;
    }

    .about-banner-content {
        width: 100%;
        clip-path: none;
        padding: 30px;
        background: linear-gradient(to top, #009fa5 90%, rgba(0, 159, 165, 0.9));
    }

    .about-banner-title {
        font-size: 1.3rem;
    }

    .about-banner-text {
        font-size: 0.9rem;
    }

    .features-section {
        margin-top: 40px;
    }

    .feature-item {
        margin-bottom: 10px;
        padding: 30px 20px;
    }

    .news-top-row {
        flex-direction: column;
        gap: 15px;
    }

    .news-image-side {
        width: 100%;
    }

        .news-image-side img {
            height: 220px;
        }

    .news-main-title {
        font-size: 1.3rem;
    }

    .comment-header {
        display: flex;
        align-items: start;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .videoPage-title {
        font-size: 1.15rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .main-row {
        flex-wrap: nowrap;
        transform-origin: top right;
        transform: scale(0.45);
        width: 222%;
        margin-bottom: -400px;
    }

    .container {
        overflow: hidden;
    }

    .mainPage-container {
        height: 110rem;
    }

    .time-number {
        font-size: 1rem;
    }

    .time-box {
        width: 50px;
        height: 50px;
    }

    .bar-content {
        right: 1rem;
    }

    .meta-info {
        font-size: .5rem;
    }

    .main-title {
        font-size: .8rem;
    }

    .pic-page-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .news-card {
        flex-direction: column;
        height: auto;
    }

    .photo-meta {
        font-size: 0.7rem;
        gap: 8px;
    }

    .news-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .news-content {
        padding: 15px;
    }

    .news-slider-wrapper {
        padding: 15px;
    }

    .mini-news-card {
        height: 145px;
    }

    .next-thumb {
        width: 100px;
        height: 60px;
    }

    .mini-news-image {
        width: 100px;
        min-width: 100px;
    }

    .mini-news-title {
        font-size: 0.8rem;
    }

    .mini-news-content {
        padding: 8px 10px;
    }

    .newspaper-image {
        height: 200px;
    }

    .newspaper-content {
        padding: 15px;
    }

    .story-ring {
        width: 56px;
        height: 56px;
    }

    .story-username {
        font-size: 0.65rem;
        max-width: 60px;
    }

    .stories-slider .owl-nav button {
        display: none;
    }

    .videos-header-title h3 {
        font-size: 18px;
    }

    .videos-header-title a {
        font-size: 13px;
    }

    .comment-actions {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .replies-container {
        padding-right: 30px;
    }

    .news-img-wrapper {
        height: 180px;
    }

    .news-body {
        padding: 12px;
    }
}

@media (max-width:420px) {
    .time-number {
        font-size: .8rem;
    }

    .time-label {
        font-size: .8rem;
    }

    .time-box {
        width: 40px;
        height: 45px;
    }

    .nav-tabs .nav-link {
        font-size: 10px;
    }

    .video-widget-title {
        font-size: 13px;
    }

    .video-thumbnail-wrapper {
        width: 65px;
    }

    .video-duration-badge {
        font-size: .5rem;
    }

    .video-meta {
        font-size: 0.5rem;
        color: #95a5a6;
        margin-bottom: 6px;
    }

    .video-title {
        font-size: 9px;
    }

    .video-footer-btn {
        font-size: .8rem;
    }

    .newspaper-img-wrapper {
        width: 100%;
        height: 135px;
        overflow: hidden;
    }

    .carousel-control-prev-icon {
        font-size: 13px !important;
    }

    .carousel-control-next-icon {
        font-size: 13px !important;
    }

    .newspaper-footer-btn {
        font-size: .8rem;
    }

    .newspaper-widget-title {
        font-size: 13px;
    }

    .sports-news-main-title {
        font-size: 13px;
    }

    .hot-media-title {
        font-size: 13px;
    }

    .hot-media-caption {
        font-size: .8rem;
    }

    .hot-media-viewer {
        height: 160px;
    }
}


/* New Styles Added Kiyan */

.desktop-only {
    display: flex;
}

.nav-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.nav-scroll-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.desktop-only-main {
    /*display: flex !important;*/
    align-items: center !important;
    gap: 0.8rem !important;
    flex-wrap: nowrap !important;
    min-height: 50px;
}

    .desktop-only-main::-webkit-scrollbar {
        height: 4px;
    }

    .desktop-only-main::-webkit-scrollbar-track {
        background: transparent;
    }

    .desktop-only-main::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #00a0ad, #00838f);
        border-radius: 10px;
    }

        .desktop-only-main::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

#dropdownContainer {
    border: 1px solid #e0e0e0;
    min-width: 200px;
}

    #dropdownContainer.show {
        display: block !important;
    }

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.dropdown-item-nav {
    padding: 4px 8px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: 14px;
}

    .dropdown-item-nav:hover {
        background: #f0f0f0;
        color: #000;
    }

@media (max-width: 768px) {
    .nav-scroll-wrapper {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 0.9rem;
    }
}

.sidebar-toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.sidebar-link[aria-expanded="true"] .sidebar-toggle-icon {
    transform: rotate(180deg);
}

.sidebar-submenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    padding: 8px 12px 8px 0;
    border-right: 2px solid #e0f7fa;
}

.sidebar-sub-link {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .sidebar-sub-link:hover {
        background-color: #f8f9fa;
        color: #00838f;
    }
