.main-news-content h2 a {
    color: #000;
    text-decoration: none;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: #222;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

/*=============== TOP BAR =================*/

.top-bar {
    background: #2b2a2a;
    color: #fff;
    font-size: 12px;
    padding: 4px 0;
}

.top-links a {
    color: #fff;
    margin-right: 20px;
    transition: .3s;
}

.top-links a:hover {
    color: #ffc107;
}

.social-icons a {
    color: #fff;
    margin-left: 12px;
    font-size: 15px;
}


.main-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .logo {
        justify-content: flex-start;
    }
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}


@media (max-width: 576px) {
    .logo img {
        max-height: 85px;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .logo img {
        max-height: 70px;
    }
}


@media (min-width: 992px) {
    .logo img {
        max-height: 135px;
    }
}

.ad-box {
    background: linear-gradient(135deg, #f3f4f7, #ffffff);
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
}

.ad-box h4 {
    font-weight: 700;
    margin-bottom: 6px;
}

/*====================== NAVBAR ============= */
.navbar-custom {
    background: #2b2a2a;
}

.navbar-custom .nav-link {
    color: #fff !important;

    padding: 2px 12px !important;
}

.navbar-custom .nav-link:hover {
    color: #ffc107 !important;
}

/* -------------------- BREAKING NEWS -------------------- */
.breaking-wrapper {
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;

    height: 42px;
    position: relative;
}


.breaking-label {
    background: #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 0 22px;
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.breaking-label::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 16px solid #fff;
}


.breaking-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;

    background: #C60000;


}

.breaking-label {
    background: #fff;
    color: #AB020C;
    padding: 14px 20px;
    font-weight: 800;
    white-space: nowrap;
}

.breaking-ticker {
    flex: 1;
    padding: 0 20px;
    font-size: 18px;

    color: #fff;
}

#breakingText::after {
    content: "|";
    animation: blink .7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}





@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {

    .breaking-wrapper {
        height: 38px;
        flex-wrap: nowrap;
        padding: 0;
    }

    .breaking-label {
        font-size: 11px;
        padding: 0 12px;
        height: 38px;
        flex-shrink: 0;
    }

    .breaking-label::after {
        right: -12px;
        border-top: 19px solid transparent;
        border-bottom: 19px solid transparent;
        border-left: 12px solid #fff;
    }

    .breaking-ticker {
        flex: 1;
        padding: 0 12px 0 18px;
        margin: 0;
        width: auto;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #breakingText {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/*=========================================
NEWS SECTION
=========================================*/

.news-section {
    background: #ffffff;
}


.news-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.062);
    border-radius: 4px;
    padding: 14px;
    height: 100%;
}

/* SECTION HEADER */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
}





/*=========================================
Upper Add slider
=========================================*/

.main-news-card {
    position: relative;
    overflow: hidden;
    height: 550px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.075);
}

.main-news-image {
    width: 100%;
    height: 100%;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.main-news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.90),
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.05));
}



.main-news-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px;
    z-index: 2;
}



.main-news-content h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

.main-news-content h2 a {
    color: #fff;
    text-decoration: none;
}



.main-news-content span {
    display: inline-block;
    color: #feffff;
    font-size: 14px;
    margin-bottom: 12px;
}



.main-news-content p {
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 80%;
}



.main-news-image img {
    transition: 0.5s ease;
}

.main-news-card:hover img {
    transform: scale(1.05);
}



@media(max-width:767px) {

    .main-news-card {
        height: 400px;
    }

    .main-news-content {
        padding: 20px;
    }

    .main-news-content h2 {
        font-size: 24px;
    }

    .main-news-content p {
        font-size: 14px;
        max-width: 100%;
    }

}




/* ------------------MAIN NEWS------------------- */

.main-news-card {
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
}

.main-news-image {
    overflow: hidden;
    border-radius: 0px;
}

.main-news-image img {
    width: 100%;
    height: 320px;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 3px;
}

.main-news-card:hover img {
    transform: scale(1.05);
}

.main-news-content {
    padding-top: 11px;
}

.main-news-content h2 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 10px;
    color: #C70101;
}

.main-news-content span {
    font-size: 14px;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.main-news-content p {
    font-size: 12px;
    color: #e7e4e4;
    line-height: 1.7;
    margin-bottom: 0;
}




/* RIGHT SIDE MINI NEWS */

.mini-news-card {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
    align-items: flex-start;
}

.mini-news-card:hover {
    transform: translateX(3px);
}

.mini-news-card img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.mini-news-card h5 {
    font-size: 17px;
    line-height: 1.4;

    margin-bottom: 6px;
    color: #353434;
}

.mini-news-card span {
    font-size: 11px;
    color: #777;
}

@media(max-width:767px) {

    .mini-news-card img {
        width: 80px;
        height: 60px;
    }

    .main-news-content h2 {
        font-size: 24px;
    }

}




/* -----------slider icon functionality ---------- */

.slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.share-btn:hover {
    background: rgba(255, 255, 255, .25);
}

.share-btn i {
    font-size: 18px;
}





/* ------  share dropdown ----------- */

.share-wrapper {
    position: relative;
}

.share-menu {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #fff;
    padding: 8px 10px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .3s;
    z-index: 9999;
}

.share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}


.facebook {
    background: #1877F2;
}

.whatsapp {
    background: #25D366;
}

.twitter {
    background: #000;
}

.telegram {
    background: #229ED9;
}

.linkedin {
    background: #0A66C2;
}

.copy-link {
    background: #6c757d;
}

/* ------  like comment box  ----------- */



.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.like-btn,
.comment-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    padding: 2px 16px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.like-btn:hover,
.comment-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.like-btn i,
.comment-toggle i {
    font-size: 17px;
}

.like-btn.active {
    background: rgba(13, 110, 253, .25);
    border-color: rgba(13, 110, 253, .4);
    color: #7db6ff;
}






/* =========================
   COMMENT PANEL
========================= */

.modern-comments {
    width: 500px !important;
    max-width: 100vw;
    border-left: 1px solid #e9ecef;
    background: #f8fafc;
    backdrop-filter: blur(15px);
}

.modern-comments .offcanvas-header {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.modern-comments .offcanvas-header h5 {
    font-weight: 700;
}

.modern-comments .offcanvas-header small {
    color: #888;
}

.comment-filter {
    border-radius: 12px;
}

.offcanvas-body {
    overflow-y: auto;
}

/* =========================
   COMMENT CARD
========================= */

.comment-card {
    background: #fff;
    border-radius: 18px;
    padding: 15px;


    animation: fadeIn .3s ease;
}



.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-header span {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.comment-card p {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
    word-break: break-word;
}

.comment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.comment-actions span {
    cursor: pointer;
    transition: .3s;
}

.comment-actions span:hover {
    color: #0d6efd;
}

/* =========================
   FOOTER
========================= */

.comment-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
}

.comment-footer .input-group {
    flex-wrap: nowrap;
}

.comment-footer .form-control {
    border-radius: 50px;
    padding-left: 18px;
    min-width: 0;
}

.comment-footer .btn {
    border-radius: 50px;
    width: 55px;
    flex-shrink: 0;
}



::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #cfd4da;
    border-radius: 20px;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .modern-comments {
        width: 420px !important;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .modern-comments {
        width: 100% !important;
        max-width: 100%;
        border-left: none;
    }

    .comment-card {
        padding: 12px;
        border-radius: 14px;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .comment-card p {
        font-size: 14px;
    }

    .comment-actions {
        gap: 12px;
        font-size: 13px;
    }

    .comment-footer {
        padding: 10px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .modern-comments {
        width: 100% !important;
    }

    .offcanvas-header {
        padding: 12px 15px;
    }

    .comment-card {
        margin-bottom: 10px;
    }

    .comment-footer .btn {
        width: 48px;
    }

    .comment-footer .form-control {
        font-size: 14px;
    }
}

.comment-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.comment-tabs button {
    border: none;
    background: #f1f3f5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.comment-tabs button.active {
    background: #0d6efd;
    color: #fff;
}






/* -------------SIDEBAR ------------------*/

.sidebar-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0px;
    overflow: hidden;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #c70000;
    padding: 14px 18px;
    border-bottom: 1px solid #ececec;
}

/* -------VIDEO BOX ----------*/

.video-upload-box {
    padding: 35px 25px;
    text-align: center;
}

.video-upload-box i {
    font-size: 48px;
    color: #111;
    margin-bottom: 14px;
}

.video-upload-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-upload-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.upload-btn {
    background: #d10000;
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
}

.upload-btn:hover {
    background: #ab0000;
}

/* PDF */

.pdf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.pdf-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdf-left i {
    color: #d10000;
    font-size: 26px;
}

.pdf-left span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.pdf-item a {
    color: #0c4da2;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .main-news-content h2 {
        font-size: 26px;
    }

}

@media(max-width:991px) {

    .sidebar-card {
        margin-top: 20px;
    }

}

@media(max-width:767px) {

    .section-header h3 {
        font-size: 18px;
    }

    .main-news-image img {
        height: 220px;
    }

    .main-news-content h2 {
        font-size: 24px;
    }

    .mini-news-card {
        flex-direction: column;
    }

    .mini-news-card img {
        width: 100%;
        height: 200px;
    }

    .pdf-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}



@media(max-width:991px) {

    .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .top-bar {
        text-align: center;
    }

    .top-links {
        margin-bottom: 10px;
    }

    .breaking-news {
        flex-direction: column;
    }

    .breaking-title {
        margin-bottom: 10px;
    }

    .news-card img {
        height: 200px;
    }

}

@media(max-width:767px) {

    .section-title {
        font-size: 20px;
    }

    .news-content h4 {
        font-size: 20px;
    }

    .side-news {
        flex-direction: column;
    }

    .side-news img {
        width: 100%;
        height: 200px;
    }

    .small-card img {
        height: 220px;
    }

    .navbar-custom .nav-link {
        padding: 12px 0 !important;
    }

}







/*=====================================
GOVT NOTIFICATION
=====================================*/


.notice-box {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.notice-header {
    background: #4e4d4d;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
}

.notice-list {
    height: 530px;
    overflow: hidden;
    position: relative;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
    color: #111;
    background: #fff;
    transition: all .3s ease;
}

.notice-item:hover {
    background: #f8f9fa;
    color: #C70000;
}

.notice-item i {
    color: #0b8cc9;
    font-size: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.notice-item span:first-of-type {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.new-badge {
    background: red;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    white-space: nowrap;
    animation: blinkNew 1s infinite;
}

@keyframes blinkNew {
    50% {
        opacity: 0.3;
    }
}

/*=====================================
NEWS SLIDER
=====================================*/



.discover-slider {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.089);
}

.discover-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
}

.discover-slide.active {
    opacity: 1;
    visibility: visible;
}

.discover-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .2),
            transparent);
}

.slider-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 5;
    color: #fff;
}

.slider-content h2 {
    font-size: 20px;

    line-height: 1.35;
    max-width: 80%;
}

.source {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.slider-top-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.slider-action-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 62px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.616);
    z-index: 20;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.discover-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.discover-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
}

.discover-dots span.active {
    background: #fff;
    width: 22px;
    border-radius: 20px;
}

.custom-dropdown {
    position: relative;
}

.slider-dropdown-menu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: none;
    z-index: 999;
}

.slider-dropdown-menu.show {
    display: block;
}

.slider-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
}

/* ---------- RESPONSIVE FIX ---------- */

@media (max-width: 768px) {

    .discover-slider {
        height: 320px;
        /* reduce height for mobile */
        border-radius: 12px;
    }

    .slider-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .slider-content h2 {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.3;
    }

    .source {
        font-size: 12px;
        margin-bottom: 6px;
    }

    /* action buttons smaller */
    .slider-action-btn {
        width: 34px;
        height: 34px;
    }

    .slider-top-actions {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    /* arrows smaller and closer */
    .slider-prev,
    .slider-next {
        width: 26px;
        height: 50px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    /* dots tighter */
    .discover-dots {
        bottom: 8px;
        gap: 4px;
    }

    .discover-dots span {
        width: 6px;
        height: 6px;
    }

    .discover-dots span.active {
        width: 16px;
    }
}

/* ======================  article section ==========================*/


.article-news-box {
    background: #fff;
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.137);
    transition: 0.3s ease;
}

.article-news-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.075);
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.article-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.article-card-wrap {
    border-radius: 2px;
}

.article-card-img {
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    transition: 0.4s ease;
}

.article-card-wrap:hover .article-card-img {
    transform: scale(1.05);
}

.article-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(220, 53, 69, 0.35);
}

.article-category {
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-main-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 14px;
    transition: 0.3s ease;
    cursor: pointer;
}

.article-main-title:hover {
    color: #dc3545;
}

.article-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.article-date {
    color: #6c757d;
    font-size: 13px;
}

.article-read-btn {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: 0.3s ease;
}

.article-read-btn:hover {
    color: #dc3545;
    letter-spacing: 0.5px;
}







/* ------------------------------------------------------------------------- */

.category-news-section {
    background: #ffffff;

}

.category-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.082);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    padding: 8px 12px;
}

/* TITLE COLORS */

.sports {
    color: #178a2f;
}

.entertainment {
    color: #a100ff;
}

.travel {
    color: #d16a00;
}

.science {
    color: #0088cc;
}

.world {
    color: #5a00d1;
}

.photo {
    color: #ff0080;
}

/* IMAGE */

.category-image img {
    width: 100%;
    height: 300px;

    object-fit: cover;
}



.category-content {
    padding: 10px;
}

.category-content h4 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
}

.category-content span {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}


.view-all-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.view-all-link {
    font-size: 15px;
    font-weight: 600;
    color: #021b4e;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-all-link:hover {
    color: #e10000;
    letter-spacing: 0.5px;
}



.info-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.062);
}

.info-box h3 {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.info-box ul {
    padding-left: 16px;
    margin-bottom: 10px;
}

.info-box ul li {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 6px;
}

.info-box a {
    color: #d10000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.info-box {
    background: #fff;
    border-radius: 0px;
    padding: 5px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.info-header {
    margin-bottom: 20px;
}

.info-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    position: relative;
    padding-left: 8px;
}

.info-header h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 24px;
    background: #D10000;
    border-radius: 10px;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px;
    margin-bottom: 5px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-item:last-child {
    margin-bottom: 0;
}

.post-item:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.post-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 4px;
    background: rgba(219, 124, 20, 0.12);
    color: #D10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.post-content {
    flex: 1;
}

.post-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.5;
}

.post-content span {
    font-size: 13px;
    color: #6b7280;
}

.post-arrow {
    color: #cbd5e1;
    transition: 0.3s;
}

.post-item:hover .post-arrow {
    color: #DB7C14;
    transform: translateX(5px);
}


/* MINI POSTS */

.mini-post {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mini-post img {
    width: 65px;
    height: 65px;
    border-radius: 0px;
    object-fit: cover;
}

.mini-post h5 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 4px;
}

.mini-post span {
    font-size: 12px;
    color: #777;
}

/* POLL */

.poll-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 12px;
}

.poll-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #222222ce;
    margin-bottom: 18px;
}

.poll-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.poll-options label {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
}

.poll-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.vote-btn {
    background: #d10000;
    color: #fff;
    border: none;
    padding: 5px 14px;
    border-radius: 5px;
    font-weight: 700;
}

.poll-buttons a {
    color: #0c4da2;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 576px) {
    .poll-box {
        width: 100%;
        margin: 0;
        padding: 15px;
        border-radius: 0;
    }

    .poll-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .vote-btn {
        width: 100%;
        padding: 10px;
    }

    .poll-buttons a {
        display: block;
        text-align: center;
    }
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .category-content h4 {
        font-size: 18px;
    }

}

@media(max-width:991px) {

    .poll-box {
        margin-top: 25px;
    }

}

@media(max-width:767px) {

    .category-image img {
        height: 200px;
    }

    .category-content h4 {
        font-size: 20px;
    }

    .poll-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}







/*=========================================FOOTER Part =========================================*/

.news-footer {
    background: #021B4E;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}



.footer-top {
    padding: 70px 0 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-logo {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.footer-logo span {
    color: #ff2b2b;
}



.footer-about {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}



.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d10000;
    transform: translateY(-3px);
}



.footer-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: #d10000;
}



.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: 0.3s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 6px;
}



.footer-contact {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-item i {
    color: #ff2b2b;
    font-size: 18px;
    margin-top: 3px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}



.footer-newsletter {
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.footer-newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
}

.footer-newsletter button {
    border: none;
    background: #d10000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 22px;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #a90000;
}


.footer-bottom {
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.archive-widget h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
}

.archive-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-table a {
    color: #bbbaba;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.archive-table a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.archive-table tr:last-child td {
    border-bottom: none;
}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .footer-widget {
        margin-bottom: 35px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }

}

@media(max-width:767px) {

    .footer-top {
        padding: 55px 0 35px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-widget h4 {
        font-size: 17px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter input {
        height: 48px;
    }

    .footer-newsletter button {
        height: 48px;
    }

}























.mega-footer {
    background: #020d26;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* BACKGROUND EFFECT */

.mega-footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.mega-footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(12, 77, 162, 0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -120px;
}



.footer-main {
    padding: 50px 0 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-logo span {
    color: #ff2d2d;
}



.footer-desc {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 30px;
}


.footer-live {
    display: flex;
    gap: 11px;
    margin-bottom: 35px;
}

.live-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.live-box h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.live-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d10000;
    transform: translateY(-4px);
}

/* WIDGET */

.footer-widget h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #d10000;
    border-radius: 50px;
}

/* LINKS */

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    transition: 0.3s;
    position: relative;
    padding-left: 18px;
}

.footer-widget ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ff2d2d;
    font-size: 18px;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 24px;
}

/* FOOTER POSTS */

.footer-post {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-post img {
    width: 95px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
}

.footer-post h4 {
    font-size: 14px;
    line-height: 1.6;
    color: #bebebe;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-post span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}



.footer-newsletter-bar {
    background: linear-gradient(90deg, #d10000, #ff2d2d);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 15px;
}

/* FORM */

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-width: 500px;
}

.newsletter-form input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 14px;
}

.newsletter-form button {
    background: #021b4e;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 700;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #000;
}

/* BOTTOM */

.footer-bottom {
    padding: 14px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .newsletter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        min-width: 100%;
    }

    .bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 15px;
    }

}

@media(max-width:767px) {

    .footer-main {
        padding: 60px 0 45px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-live {
        flex-wrap: wrap;
    }

    .newsletter-text h3 {
        font-size: 22px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        height: 52px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

}











/*=========================================
VIEWER FEEDBACK FORM
=========================================*/

.feedback-widget {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.feedback-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #ff2d2d;
    background: rgba(255, 255, 255, 0.09);
}

.feedback-form textarea {
    resize: none;
    min-height: 100px;
}

.feedback-form button {
    height: 50px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #d10000, #ff2d2d);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.feedback-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #b80000, #ff0000);
}

/* MOBILE */

@media(max-width:767px) {

    .feedback-widget {
        padding: 20px;
    }

    .feedback-form input,
    .feedback-form textarea {
        font-size: 13px;
    }

    .feedback-form button {
        width: 100%;
    }

}













/* -------------------------------------------------------------------------------------------------- */

/* ---------------------------------------   news page  ----------------------------------------------- */

/*=========================================
TRIPURA NEWS SECTION
=========================================*/

.tripura-news-area {
    background: #f4f7fc;
}

/* WRAPPER */

.tripura-news-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* HEADER */

.tripura-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
}

.tripura-news-header h3 {
    font-size: 24px;
    font-weight: 500;
    color: #021b4e;
    margin: 0;
    position: relative;
}

.tripura-news-header h3::after {
    content: '';
    width: 55px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -16px;
    border-radius: 0px;
}

.tripura-news-header a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: 0.3s;
}

.tripura-news-header a:hover {
    color: #021b4e;
}

.comment-trigger {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}

.comment-trigger i {
    font-size: 25px;
    color: #666565;
}

.comment-trigger:hover {
    transform: translateY(-2px);
}

.comment-trigger:hover i {
    color: #012150;
}

.comment-count {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-left: 6px;
}

/* FEATURED NEWS */

.tripura-featured-news {
    transition: 0.4s;
}

.tripura-featured-news:hover {
    transform: translateY(-5px);
}

.tripura-featured-image {
    overflow: hidden;
    border-radius: 2px;
}

.tripura-featured-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: 0.5s;
}

.tripura-featured-news:hover img {
    transform: scale(1.05);
}

.tripura-featured-content {
    padding-top: 20px;
}

.tripura-featured-content h2 {
    font-size: 35px;
    line-height: 1.4;
    color: #021b4e;
    font-weight: 500;
    margin-bottom: 12px;
}

.tripura-featured-content span {
    display: inline-block;
    color: #777;
    font-size: 14px;
    margin-bottom: 12px;
}

.tripura-featured-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* SIDE NEWS */

.tripura-side-news {
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 22px;
    border-bottom: 1px solid #ececec;
    transition: 0.3s;
}

.tripura-side-news:hover {
    transform: translateX(5px);
}

.tripura-side-news img {
    width: 120px;
    height: 95px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.tripura-side-news h5 {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    color: #021b4e;
    margin-bottom: 8px;
}

.tripura-side-news span {
    font-size: 13px;
    color: #777;
}

.tripura-side-news-last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .tripura-featured-content h2 {
        font-size: 22px;
    }

    .tripura-side-news img {
        width: 100px;
        height: 85px;
    }

}

@media (max-width: 767px) {

    .tripura-news-wrapper {
        padding: 20px;
    }

    .tripura-news-header h3 {
        font-size: 20px;
    }

    .tripura-featured-image img {
        height: 240px;
    }

    .tripura-featured-content h2 {
        font-size: 20px;
    }

    .tripura-side-news h5 {
        font-size: 15px;
    }

}

.article-body {
    margin-top: 5px;
    border-top: 1px solid #ececec;
    padding-top: 5px;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* -------------------------------   single news     ----------------------------------- */


/*=========================================
MODERN HERO SECTION
=========================================*/

.modern-hero-news-section {
    background: #f4f7fc;
    overflow: hidden;
}

/*=========================================
SLIDER
=========================================*/

.modern-hero-slider {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.modern-slide-image {
    position: relative;
    height: 520px;
}

.modern-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.modern-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.15));
}

/* CONTENT */

.modern-slide-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    max-width: 700px;
    z-index: 2;
}


.modern-slide-content h2 {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.modern-slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */

.modern-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #021b4e;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.modern-read-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/*=========================================
SLIDER CONTROLS
=========================================*/

.modern-slider-control {
    width: 40px;
    opacity: 1;
}

.modern-slider-control span {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.082);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

/* INDICATORS */

.modern-slider-indicators {
    margin-bottom: 25px;
}

.modern-slider-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: none;
    margin: 0 6px !important;
}

/*=========================================
ADVERTISEMENT
=========================================*/

.modern-advertisement-box {
    background: #ffffff;
    border-radius: 2px;
    padding: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* HEADER */

.modern-ad-header {
    font-size: 22px;
    font-weight: 700;
    color: #021b4e;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ececec;
    position: relative;
}

.modern-ad-header::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 50px;
}

/* AD CARD */

.modern-ad-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
    transition: 0.4s;
    border: 1px solid #f0f0f0;
}

.modern-ad-card:last-child {
    margin-bottom: 0;
}

.modern-ad-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.modern-ad-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.modern-ad-content {
    padding: 8px;
}

.modern-ad-content h5 {
    font-size: 18px;
    line-height: 1.5;
    color: #021b4e;
    margin-bottom: 2px;
    font-weight: 600;
}

.modern-ad-content a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: 0.3s;
}

.modern-ad-content a:hover {
    color: #021b4e;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 1400px) {

    .modern-slide-content h2 {
        font-size: 34px;
    }

}

@media (max-width: 1199px) {

    .modern-slide-image {
        height: 540px;
    }

}

@media (max-width: 991px) {

    .modern-slide-image {
        height: 480px;
    }

    .modern-slide-content {
        left: 30px;
        bottom: 30px;
    }

    .modern-slide-content h2 {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .modern-slide-image {
        height: 400px;
    }

    .modern-slide-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .modern-slide-content h2 {
        font-size: 22px;
    }

    .modern-slide-content p {
        font-size: 14px;
    }

    .modern-read-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .modern-advertisement-box {
        padding: 18px;
    }

}







/*=========================================
VERTICAL NEWS SECTION
=========================================*/

.vertical-news-wrapper {
    background: #ffffff;
    padding: 14px;
    border: 1px solid #dddcdc;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

/* HEADER */

.vertical-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ececec;
}

.vertical-news-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #021b4e;
    margin: 0;
    position: relative;
}

.vertical-news-header h3::after {
    content: '';
    width: 45px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -15px;
    border-radius: 50px;
}

.vertical-news-header a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: 0.3s;
}

.vertical-news-header a:hover {
    color: #021b4e;
}

/* NEWS CARD */

.vertical-news-card {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
    transition: 0.3s;
}

.vertical-news-card:hover {
    transform: translateX(6px);
}

.vertical-news-card img {
    width: 120px;
    height: 95px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.vertical-news-card h4 {
    font-size: 17px;
    line-height: 1.6;
    color: #021b4e;
    font-weight: 600;
    margin-bottom: 8px;
}

.vertical-news-card span {
    font-size: 13px;
    color: #777;
}

.vertical-news-card-last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .vertical-news-wrapper {
        padding: 20px;
    }

    .vertical-news-card img {
        width: 100px;
        height: 85px;
    }

}

@media (max-width: 767px) {

    .vertical-news-header h3 {
        font-size: 20px;
    }

    .vertical-news-card {
        gap: 14px;
    }

    .vertical-news-card img {
        width: 90px;
        height: 80px;
    }

    .vertical-news-card h4 {
        font-size: 15px;
    }

}

/* ----------------------------------------home last section ------------------------------------------------- */
/*=========================================
NEWS SLIDER
=========================================*/

/*=========================================
NEWS SLIDER SECTION
=========================================*/

.news-slider-wrapper {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

/*=========================================
HEADER FIX
=========================================*/

.vertical-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 12px;
    border-bottom: 1px solid #eaeaea;
    background: #ffffff;
}

.vertical-news-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #021B4E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vertical-news-header a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #021B4E;
    white-space: nowrap;
    transition: 0.3s ease;
}

.vertical-news-header a:hover {
    color: #0f3e9b;
}

/*=========================================
SLIDER
=========================================*/

.news-slider {
    position: relative;
    height: 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.news-slider img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/*=========================================
OVERLAY CONTENT
=========================================*/

.news-slider-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.1));
    color: #ffffff;
}

.news-slider-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-slider-overlay span {
    font-size: 14px;
    opacity: 0.9;
}

/*=========================================
SLIDER BUTTONS
=========================================*/

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 55%;
    background-color: rgba(0, 0, 0, 0.5);
}


/*=========================================
TABLET RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .news-slider img {
        height: 380px;
    }

    .news-slider-overlay {
        padding: 22px;
    }

    .news-slider-overlay h3 {
        font-size: 22px;
    }

    .vertical-news-header h3 {
        font-size: 20px;
    }

}

/*=========================================
MOBILE RESPONSIVE
=========================================*/

@media (max-width: 576px) {

    .vertical-news-header {
        padding: 14px 16px;
    }

    .vertical-news-header h3 {
        font-size: 18px;
    }

    .vertical-news-header a {
        font-size: 13px;
    }

    .news-slider img {
        height: 260px;
    }

    .news-slider-overlay {
        padding: 18px;
    }

    .news-slider-overlay h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .poll-box {
        padding: 20px;
    }

}



/* ----------------------------------------about uss-------------------------------------- */
/*=========================================
ABOUT PAGE
=========================================*/

.about-page-section {
    background: #f4f7fc;
}

/* WRAPPER */

.about-page-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* HEADER */

.about-page-header {
    text-align: center;
    margin-bottom: 35px;
}

.about-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #021B4E;
    margin-bottom: 15px;
}

.about-page-header p {
    font-size: 17px;
    color: #666;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* IMAGE */

.about-page-image {
    margin-bottom: 35px;
}

.about-page-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* CONTENT */

.about-page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #021B4E;
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.about-page-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.about-page-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .about-page-wrapper {
        padding: 30px;
    }

    .about-page-header h1 {
        font-size: 34px;
    }

    .about-page-image img {
        height: 320px;
    }

}

@media (max-width: 767px) {

    .about-page-wrapper {
        padding: 20px;
    }

    .about-page-header h1 {
        font-size: 28px;
    }

    .about-page-header p {
        font-size: 15px;
    }

    .about-page-image img {
        height: 240px;
    }

    .about-page-content h2 {
        font-size: 22px;
    }

    .about-page-content p,
    .about-page-content ul li {
        font-size: 15px;
    }

}

/* ---------------------------------photo news ------------------------------------------- */

/*=========================================
MULTI PHOTO NEWS SECTION
=========================================*/

.multi-photo-news-section {
    background: #f4f7fc;
}

/* HEADER */

.multi-photo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.multi-photo-header h2 {
    font-size: 2px;
    font-weight: 700;
    color: #021B4E;
    margin: 0;
    position: relative;
}

.multi-photo-header h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.multi-photo-header a {
    text-decoration: none;
    color: #021B4E;
    font-weight: 600;
    transition: 0.3s;
}

.multi-photo-header a:hover {
    color: #0d6efd;
}

/* NEWS CARD */

.photo-news-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 280px;
    cursor: pointer;
}

.photo-news-large {
    height: 584px;
}

/* IMAGE */

.photo-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.photo-news-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.photo-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.767),
            rgba(0, 0, 0, 0.062));
}

/* CONTENT */

.photo-news-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.photo-news-content span {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    border-radius: 30px;
}

.photo-news-content h3 {
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

/* SMALL CARDS */

.col-md-6 .photo-news-content h3 {
    font-size: 18px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 1199px) {

    .photo-news-large {
        height: 500px;
    }

}

@media (max-width: 991px) {

    .photo-news-large {
        height: 420px;
    }

}

@media (max-width: 767px) {

    .multi-photo-header h2 {
        font-size: 26px;
    }

    .photo-news-card,
    .photo-news-large {
        height: 300px;
    }

    .photo-news-content h3 {
        font-size: 18px;
    }

    .col-md-6 .photo-news-content h3 {
        font-size: 16px;
    }

}

/* --------------------------------sponcer slider ---------------------------------- */
/*=========================================
BRAND SPONSOR SECTION
=========================================*/

.brand-sponsor-section {
    background: #f5f7fb;
    overflow: hidden;
}

/* HEADER */

.brand-sponsor-header {
    margin-bottom: 60px;
}

.brand-sponsor-header span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 1px;
    margin-bottom: 5px;
    position: relative;
}

.brand-sponsor-header span::before,
.brand-sponsor-header span::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #d8e3f8;
    position: absolute;
    top: 50%;
}

.brand-sponsor-header span::before {
    right: 115%;
}

.brand-sponsor-header span::after {
    left: 115%;
}

.brand-sponsor-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #021B4E;
    margin-bottom: 8px;
}

.brand-sponsor-header p {
    max-width: 650px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

/*=========================================
AUTO BRAND SLIDER SECTION
=========================================*/

.auto-brand-slider-section {
    background: #f5f7fb;
    overflow: hidden;
}

/*=========================================
SLIDER
=========================================*/

.auto-brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TRACK */

.auto-brand-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: infiniteBrandSlider 35s linear infinite;
}

/* PAUSE ON HOVER */

.auto-brand-slider:hover .auto-brand-track {
    animation-play-state: paused;
}

/*=========================================
CARD
=========================================*/

.auto-brand-card {
    width: 160px;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    flex-shrink: 0;

    border: 1px solid #edf1f7;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: 0.4s ease;
}

/* HOVER */

.auto-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* IMAGE */

.auto-brand-card img {
    width: 95px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: 0.4s;
}

.auto-brand-card:hover img {
    transform: scale(1.05);
}

/* TITLE */

.auto-brand-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #021B4E;
    margin-bottom: 10px;
}

/* TEXT */

.auto-brand-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/*=========================================
INFINITE ANIMATION
=========================================*/

@keyframes infiniteBrandSlider {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/*=========================================
DARK MODE
=========================================*/

body.dark-mode .auto-brand-slider-section {

    background:
        linear-gradient(180deg,
            #06070b 0%,
            #09090f 100%);
}

body.dark-mode .auto-brand-card {

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.45);
}

body.dark-mode .auto-brand-card h4 {
    color: #ffffff;
}

body.dark-mode .auto-brand-card p {
    color: #b7bdd1;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .auto-brand-card {
        width: 190px;
    }

}

@media (max-width: 767px) {

    .auto-brand-track {
        gap: 16px;
        animation-duration: 24s;
    }

    .auto-brand-card {
        width: 160px;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .auto-brand-card img {
        width: 70px;
        height: 35px;
        margin-bottom: 14px;
    }

    .auto-brand-card h4 {
        font-size: 14px;
    }

    .auto-brand-card p {
        font-size: 12px;
        line-height: 1.6;
    }

}

/* --------------------------------add box --------------------------------------- */
/*=========================================
SIDE IMAGE AD BOX
=========================================*/

.side-image-ad-box {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

/* HOVER */

.side-image-ad-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

/* IMAGE */

.side-image-ad-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */

.side-image-ad-content {
    padding: 16px;
}

.side-image-ad-content h5 {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    color: #021B4E;
    margin-bottom: 10px;
}

.side-image-ad-content a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    transition: 0.3s;
}

.side-image-ad-content a:hover {
    color: #021B4E;
}

/*=========================================
DARK MODE
=========================================*/

body.dark-mode .side-image-ad-box {

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.45);
}

body.dark-mode .side-image-ad-content h5 {
    color: #ffffff;
}

body.dark-mode .side-image-ad-content a {
    color: #d7c8ff;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .side-image-ad-box img {
        height: 220px;
    }

}

@media (max-width: 767px) {

    .side-image-ad-box img {
        height: 180px;
    }

    .side-image-ad-content {
        padding: 14px;
    }

    .side-image-ad-content h5 {
        font-size: 15px;
    }

}

/* ------------------------------flotting button ------------------------------------ */
.floating-dock {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 1055;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 8px 18px;

    background: rgba(255, 255, 255, .95);

    border-radius: 60px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.205);
}

.floating-dock a,
.floating-dock button {
    border: none;
    background: none;
    color: #021B4E;
    font-size: 22px;
    position: relative;
}

.floating-dock a:hover,
.floating-dock button:hover {
    color: #021B4E;

}

.divider {
    width: 1px;
    height: 25px;
    background: #ddd;
}

.count {
    position: absolute;
    top: -8px;
    right: -10px;

    background: #D40303;
    color: #fff;

    font-size: 10px;
    padding: 3px 6px;
    border-radius: 20px;
}



/* home news card share buttin  */
.category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eee;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-actions-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-card-like {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.category-card-like i {
    color: #0d6efd;
}

.category-card-share {
    position: relative;
}

.category-share-btn {
    border: none;
    background: none;
    font-size: 17px;
    cursor: pointer;
    padding: 0;
}

.category-share-menu {
    position: absolute;
    bottom: 35px;
    left: 0;
    display: none;
    gap: 8px;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    z-index: 99;
}

.category-share-menu {
    display: none;
}

.category-share-menu.show {
    display: flex;
    /* or block, depending on your layout */
}

.category-card-share:hover .category-share-menu {
    display: flex;
}

.category-share-menu a {
    color: #ffffff;
    text-decoration: none;
}

.view-all-link {
    text-decoration: none;
    font-weight: 600;
    color: #021B4E;
}

.category-card-like {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1;
}

.category-card-like i {
    font-size: 15px;
    color: #0d6efd;
}

.category-card-like span {
    display: inline-block;
}


/* -------------- COLLEGE AND UNIVERSITY SLIDER -------------------- */

.slider-book-img {
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-main-content {
    padding: 15px 5px 10px;
}

.slider-main-content h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slider-main-content span {
    display: block;
    color: #777;
    margin-bottom: 10px;
    font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    padding: 15px;
}

@media(max-width:768px) {

    .slider-book-img {
        height: 220px;
    }

    .slider-main-content h5 {
        font-size: 18px;
    }

}


/* ==================================  Tripura Webpage ===================================== */

.tripura-hero-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.tripura-hero-slide {
    position: relative;
    height: 600px;
    background: url('your-image.jpg') center center/cover no-repeat;
}

.tripura-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.13);
}

.tripura-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 950px;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

.tripura-main-title {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.tripura-sub-title {
    font-size: 19px;
    margin-bottom: 35px;
    font-weight: 400;
}

.tripura-search-box {
    background: #ffffffc7;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 760px;
    margin: auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.tripura-search-input {
    background: #ffffff2f;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    flex: 1;
    outline: none;
}

.tripura-search-icon {
    color: #777;
    font-size: 25px;
    padding-right: 15px;
}

.tripura-search-btn {
    background: #e52323;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.tripura-search-btn:hover {
    background: #c81616;
}


.tripura-category-wrap {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tripura-category-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #222;
    border: none;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.tripura-category-btn:hover {
    background: #e52323;
    color: #fff;
}


.tripura-carousel-btn {
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}



/* Responsive */
@media (max-width: 768px) {

    .tripura-main-title {
        font-size: 38px;
    }

    .tripura-sub-title {
        font-size: 18px;
    }

    .tripura-search-box {
        flex-direction: column;
    }

    .tripura-search-input {
        width: 100%;
    }

    .tripura-search-btn {
        width: 100%;
    }

    .tripura-hero-wrapper,
    .tripura-hero-slide {
        height: 650px;
    }
}


/* ============================
   TRIPURA FEATURE SECTION
   Unique Class Names
============================ */

.tpftr-section {
    position: relative;
    margin-top: -60px;
    /* overlap hero section */
    z-index: 10;
    padding: 0 px;
}

.tpftr-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
    padding: 8px 8px;
}

.tpftr-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.tpftr-item {
    text-decoration: none;
    text-align: center;
    color: #222;
    transition: .3s;
    padding: 10px;
    border-radius: 12px;
}

.tpftr-item:hover {
    transform: translateY(-5px);
}

.tpftr-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpftr-icon i {
    font-size: 22px;
}

.tpftr-item h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Colors */
.tpftr-red {
    background: #ffe8e8;
    color: #ff4d4f;
}

.tpftr-purple {
    background: #f1e9ff;
    color: #8b5cf6;
}

.tpftr-green {
    background: #e7fff1;
    color: #22c55e;
}

.tpftr-orange {
    background: #fff1df;
    color: #f59e0b;
}

.tpftr-violet {
    background: #f4eaff;
    color: #a855f7;
}

.tpftr-blue {
    background: #e9f4ff;
    color: #3b82f6;
}

.tpftr-teal {
    background: #e7fff4;
    color: #10b981;
}

/* Tablet */
@media (max-width: 991px) {

    .tpftr-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tpftr-section {
        margin-top: -40px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .tpftr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tpftr-card {
        padding: 22px 15px;
        border-radius: 18px;
    }

    .tpftr-icon {
        width: 52px;
        height: 52px;
    }

    .tpftr-item h6 {
        font-size: 13px;
    }

    .tpftr-section {
        margin-top: -25px;
    }
}




/* ===========================
   REPRESENTATIVE SECTION
   UNIQUE PREFIX : repx-
=========================== */

.repx-section {
    padding: 20px 0;
    background: #f8fafc;
}

.repx-header {
    margin-bottom: 5px;
}

.repx-subtitle {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.repx-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-top: 8px;
}

/* Tabs */
.repx-tabs .nav-link {
    border: none;
    background: #fff;
    color: #374151;
    padding: 10px 22px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.repx-tabs .nav-link.active {
    background: #021B4E;
    color: #fff;
}

/* Cards */
.repx-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: .3s;
    height: 100%;
}

.repx-card:hover {
    transform: translateY(-5px);
}

.repx-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.repx-body {
    padding: 20px;
    text-align: center;
}

.repx-body h5 {
    font-size: 18px;
    font-weight: 700;

    color: #111827;
}

.repx-body p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Button */
.repx-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #021b4e7e;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.repx-btn:hover {
    background: #b91c1c;
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {
    .repx-title {
        font-size: 28px;
    }

    .repx-tabs .nav-link {
        width: 100%;
    }

    .repx-img {
        height: 220px;
    }
}

.leader-slider-section {
    padding: 70px 0;
    background: #f8fafc;
}

.leader-slider-header {
    margin-bottom: 0px;
}

.leader-mini-title {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leader-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-top: 8px;
}

.leader-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: .3s;
}

.leader-card:hover {
    transform: translateY(-6px);
}

.leader-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.leader-card-body {
    padding: 20px;
    text-align: center;
}

.leader-card-body h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.leader-card-body p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.leader-slider-btn {
    width: auto;
    opacity: 1;
}

.leader-arrow {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: #111;
    font-size: 20px;
}

/* ===================================================
   MOBILE SLIDER FIX
=================================================== */
/* Mobile View */
@media (max-width:768px) {

    .repx-section {
        overflow: hidden;
    }

    .carousel-item .row {
        flex-wrap: nowrap;
        margin: 0;
    }

    .carousel-item .col-lg-6,
    .carousel-item .col-md-6,
    .carousel-item .col-md-4,
    .carousel-item .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .repx-card {
        margin: 0;
        border-radius: 12px;
    }

    .repx-img {
        height: 240px;
    }

    .repx-slider-btn {
        display: none;
    }
}

/* --------------------------------Where to staty -----------------------*/
/* ========================= */
/* COMMON SECTION STYLES */
/* ========================= */

.travel-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.travel-mini-title {
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.travel-section-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
}

/* ========================= */
/* WHERE TO VISIT */
/* ========================= */

.travel-place-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    height: 100%;
}

.travel-place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.travel-place-image {
    position: relative;
    overflow: hidden;
}

.travel-place-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s ease;
}

.travel-place-card:hover img {
    transform: scale(1.08);
}

.travel-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.travel-place-content {
    padding: 12px;
}

.travel-place-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.travel-place-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.5;
}

.travel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.travel-meta span {
    color: #666;
    font-size: 14px;
}

.travel-meta a {
    text-decoration: none;
    color: #dc3545;
    font-weight: 600;
}

/* ========================= */
/* WHERE TO STAY */
/* ========================= */

.stay-hotel-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    height: 100%;
}

.stay-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.stay-hotel-img img {
    width: 250px;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.stay-category {
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.stay-hotel-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.stay-hotel-content p {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stay-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stay-location {
    color: #666;
    font-size: 14px;
}

.stay-btn {
    text-decoration: none;
    background: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.stay-btn:hover {
    background: #bb2d3b;
    color: #fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px) {

    .travel-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stay-hotel-card {
        flex-direction: column;
    }

    .stay-hotel-img img {
        width: 100%;
        height: 240px;
    }

}

/* ========================= */
/* HOTEL SLIDER SECTION */
/* ========================= */

.hotel-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.hotel-slider-mini-title {
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotel-slider-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 5px;
}

.hotel-slider-nav {
    display: flex;
    gap: 10px;
}

.hotel-slide-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    transition: 0.3s ease;
}

.hotel-slide-btn:hover {
    background: #dc3545;
    color: #fff;
}

.hotel-slider-wrapper {
    overflow: hidden;
}

.hotel-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.hotel-slide-item {
    min-width: calc(50% - 13px);
}

/* ========================= */
/* HOTEL CARD */
/* ========================= */

.hotel-card-new {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.hotel-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.hotel-card-image {
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s ease;
}

.hotel-card-new:hover .hotel-card-image img {
    transform: scale(1.08);
}

.hotel-card-content {
    padding: 10px;
}

.hotel-card-category {
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotel-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0;
}

.hotel-card-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-card-location {
    color: #666;
    font-size: 14px;
}

.hotel-book-btn {
    text-decoration: none;
    background: #dc3545;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hotel-book-btn:hover {
    background: #bb2d3b;
    color: #fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px) {

    .hotel-slide-item {
        min-width: 100%;
    }

}

@media(max-width:768px) {

    .hotel-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hotel-card-image img {
        height: 240px;
    }

    .hotel-card-content h3 {
        font-size: 24px;
    }

}


/*======================= Tripura map =========================*/
.mini-tripura-section {
    background: #e6edfa;
}

/* WEATHER CARD */
.mini-weather-card {
    background: linear-gradient(135deg, #2b7cff, #5ca6ff);
    border-radius: 6px;
    padding: 20px;
    color: #fff;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.weather-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather-head h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.weather-head span {
    font-size: 12px;
    opacity: .85;
}

.weather-icon i {
    font-size: 34px;
}

.temp-area {
    margin-top: 18px;
}

.temp-area h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}

.temp-area p {
    margin: 0;
    font-size: 15px;
}

.weather-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    text-align: center;
}

.weather-info small {
    font-size: 11px;
    opacity: .8;
}

.weather-info h6 {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
}

.weather-days {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-days div {
    text-align: center;
}

.weather-days span {
    display: block;
    font-size: 11px;
}

.weather-days i {
    display: block;
    margin: 6px 0;
    font-size: 18px;
}

.weather-days small {
    font-size: 11px;
}

/* MAP CARD */
.mini-map-card {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.map-title h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.mini-map-img {
    max-height: 300px;
    object-fit: contain;
}

.district-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.district-mini-list a {
    text-decoration: none;
    background: #f8f9fc;
    border-radius: 10px;
    padding: 10px 14px;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.district-mini-list a:hover {
    background: #edf4ff;
    transform: translateX(4px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.d1 {
    background: #dcb4ff;
}

.d2 {
    background: #a9d2ff;
}

.d3 {
    background: #ffc8b2;
}

.d4 {
    background: #ffd6a8;
}

.d5 {
    background: #b7f0d0;
}

.district-mini-list i {
    font-size: 12px;
}

@media(max-width:768px) {

    .temp-area h2 {
        font-size: 38px;
    }

    .mini-map-img {
        margin-bottom: 20px;
    }
}

/* -------------------------- visit.php ----------------------*/
.news-feature-section {
    padding: 30px 0;
    background: #f8fafc;
}

.feature-news-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.feature-news-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.feature-news-content {
    padding: 24px;
}

.feature-news-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.feature-news-content p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.news-ad-box {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.ad-tag {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news-ad-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

@media(max-width:768px) {
    .feature-news-img {
        height: 260px;
    }

    .feature-news-content h2 {
        font-size: 24px;
    }

    .news-ad-img {
        min-height: 300px;
    }
}

/*--------------- all- tourist spot .php --------------------*/

.tripura-tourism-alt {
    padding: 50px 0;
    background: #ffffff;
    background-size: cover;
}

/* Heading */
.tourism-head span {
    color: #dc2626;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.tourism-head h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 10px 0;
}

.tourism-head p {
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}

/* Tour Item */
.tour-item {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: .3s;
}

.tour-item:hover {
    transform: translateY(-4px);
}


.tour-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 4px;
}


.tour-text h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.tour-text p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Advertisement */
.tour-ad {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.tour-ad h5 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    font-size: 13px;
}

.tour-ad img {
    width: 100%;
    border-radius: 12px;
    height: 500px;
    object-fit: cover;
}

/* Responsive */
@media(max-width:768px) {
    .tourism-head h2 {
        font-size: 28px;
    }

    .tour-img {
        height: 200px;
    }

    .tour-ad img {
        height: 300px;
    }
}

.district-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.district-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.district-content {
    display: none;
    padding: 15px 18px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    color: #666;
}

.district-item.active .district-content {
    display: block;
}

.district-item.active .bi-chevron-right {
    transform: rotate(90deg);
}

.bi-chevron-right {
    transition: 0.3s;
}


/* button  */
.blink-btn {
    display: inline-block;
    padding: 6px 20px;
    background: #b20000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    animation: glowing 1.5s infinite;
    transition: all .3s ease;
}

.blink-btn:hover {
    color: #fff;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0;
}

@keyframes glowing {
    0% {
        background-color: #b20000;
        box-shadow: 0 0 2px #b20000;
    }

    50% {
        background-color: #ff0000;
        box-shadow: 0 0 15px #ff0000,
            0 0 30px #ff0000;
    }

    100% {
        background-color: #b20000;
        box-shadow: 0 0 5px #b20000;
    }
}





.tripura-360-card:hover .tripura-arrow {
    transform: translateX(8px);
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 15px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}









.share-wrapper {
    position: relative;
}

.share-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
}

.share-menu {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    background: #fff;
    padding: 6px 8px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 100;
}

.share-wrapper:hover .share-menu {
    opacity: 1;
    visibility: visible;
    left: 40px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.facebook {
    background: #1877f2;
}

.whatsapp {
    background: #25d366;
}

.twitter {
    background: #000;
}

.telegram {
    background: #0088cc;
}

.linkedin {
    background: #0a66c2;
}

.copy-link {
    background: #dc3545;
}


/* --------------- all-notice section ----------------- */

.documents-section {
    background: #f8f9fa;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1633;
    border-left: 5px solid #0a1633;
    padding-left: 5px;
}

.documents-table {
    background: #fff;
    border: 1px solid #ddd;
}

.documents-table thead th {
    background: #071633;
    color: #fff;
    padding: 9px;
    font-size: 15px;
    font-weight: 600;
}

.documents-table tbody td {
    padding: 4px;
    border-color: #d8d8d8;
}

.documents-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.documents-table td:first-child {
    font-weight: 700;
}

.documents-table td a {
    text-decoration: none;
    color: #1f2d3d;
    font-weight: 500;
}

.advertisement-box {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #ddd;
    position: sticky;
    top: 20px;
}

.advertisement-box h4 {
    font-size: 22px;
    font-weight: 500;
    color: #071633;
}

/* new share icon */

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.share-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
}

.social:hover {
    transform: translateY(-3px);
    color: #fff;
}

.facebook {
    background: #1877F2;
}

.twitter {
    background: #000;
}

.linkedin {
    background: #0A66C2;
}

.whatsapp {
    background: #25D366;
}

.telegram {
    background: #0088cc;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
    background: #FF0000;
}

.pinterest {
    background: #E60023;
}

.reddit {
    background: #FF4500;
}

.link {
    background: #6c757d;
}

/* comment new updated version */
/* =========================
   COMMENT SECTION
========================= */


.comment-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-top: 15px;
}

.comment-wrapper {
    width: 100%;
}

/* ==========================
   COMMENT FORM
========================== */

.comment-form-box {
    margin-bottom: 30px;
}

.comment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-input-area {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-form-content {
    flex: 1;
}

.comment-name {
    margin-bottom: 10px;
    border-radius: 12px;
}

.comment-textarea {
    border-radius: 15px;
    resize: none;
}

.comment-post-btn {
    background: #1877f2;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 500;
}

/* ==========================
   COMMENTS
========================== */

.comment-card {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.comment-content {
    flex: 1;
}

.comment-bubble {
    background: #f0f2f5;
    padding: 12px 16px;
    border-radius: 15px;
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.comment-header span {
    font-size: 12px;
    color: #65676b;
}

.comment-bubble p {
    margin: 5px 0 0;
    color: #222;
    line-height: 1.5;
}

/* ==========================
   ACTIONS
========================== */

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 6px;
    margin-left: 10px;
}

.comment-actions a {
    text-decoration: none;
    color: #65676b;
    font-size: 13px;
    font-weight: 600;
}

.comment-actions a:hover {
    color: #1877f2;
}

/* ==========================
   REPLY BOX
========================== */

.reply-form {
    display: none;
    margin-top: 10px;
    margin-left: 10px;
}

.reply-form input {
    border-radius: 20px;
    margin-bottom: 10px;
}

.reply-btn {
    background: #1877f2;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 3px 10px;
}

/* ==========================
   REPLIES
========================== */

.reply-card {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    margin-left: 40px;
}

.reply-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.reply-bubble {
    background: #f0f2f5;
    padding: 10px 14px;
    border-radius: 16px;
}

.reply-bubble p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .comment-input-area {
        flex-direction: column;
    }

    .reply-card {
        margin-left: 15px;
    }

}

.facebook-widget {
    position: sticky;
    top: 100px;
}

.facebook-widget-header {
    background: #1877f2;
    color: #fff;
    padding: 10px 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(24, 119, 242, .2);
}

.facebook-widget-header i {
    font-size: 16px;
}

.facebook-widget-header h5 {
    margin: 0;
    font-weight: 700;
}

.fb-post-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.fb-post-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.fb-post-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-post-top h6 {
    margin: 0;
    font-weight: 700;
}

.fb-post-top span {
    color: #777;
    font-size: 13px;
}

.fb-post-card p {
    color: #555;
    line-height: 1.7;
}

.fb-post-image {
    border-radius: 15px;
    margin-top: 10px;
}

.fb-post-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
}

.facebook-embed {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

    .facebook-widget {
        position: relative;
        top: auto;
    }

}

.facebook-widget {
    position: sticky;
    top: 100px;
}

.facebook-embed {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

/*  ----------- Interview  Next page ---------------  */
body {
    background: #f5f5f5;
}

.interview-section-title {
    background: #2B2A2A;
    color: #fff;
    padding: 8px 15px;
    border-radius: px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.interview-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.interview-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interview-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 2px;
}

.interview-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.interview-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.interview-desc {
    color: #555;
    line-height: 1.7;
}



@media (max-width:768px) {
    .interview-img {
        height: 180px;
        margin-bottom: 15px;
    }

    .advertisement-box {
        min-height: 200px;
        margin-top: 20px;
    }
}

/* all article section */

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.news-page {
    min-height: 100vh;
}

.main-wrapper {
    display: flex;
    min-height: 100vh;
}

/* 70% */
.news-area {
    width: 70%;
    background: #fff;
    padding: 25px;
}

/* 30% */
.advertisement-area {
    width: 30%;
    background: #f7f7f7;
    border-left: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 700;
}



/* Mobile */
@media (max-width: 991px) {

    .main-wrapper {
        flex-direction: column;
    }

    .news-area,
    .advertisement-area {
        width: 100%;
    }

    .advertisement-area {
        min-height: 250px;
    }

    .news-col:nth-child(odd) {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .news-card {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .news-image {
        width: 100%;
    }

    .news-image img {
        height: 220px;
    }
}



/* All Notice list  */

.notice-section {
    background: #f8f9fa;
}

.notice-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notice-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1c2d41;
    margin: 0;
    position: relative;
    padding-left: 18px;
}

.notice-heading h3::before {
    content: "";
    width: 6px;
    height: 30px;
    background: #071633;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 10px;
}

.notice-table {
    background: #fff;
    border: 1px solid #dee2e6;
}

.notice-table thead {
    background: #1c2d41;
    color: #fff;
}

.notice-table th,
.notice-table td {
    padding: 15px 20px;
    vertical-align: middle;
}

.notice-table tbody tr:hover {
    background: #f5f8fc;
}

.pdf-link {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pdf-link i {
    color: #dc3545;
    font-size: 20px;
}

.pdf-link:hover {
    color: #B30000;
}

.notice-table td:first-child {
    font-weight: 600;
    color: #495057;
}

@media (max-width: 576px) {
    .notice-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .notice-heading h3 {
        font-size: 24px;
    }

    .notice-table th,
    .notice-table td {
        padding: 12px;
    }
}




/* where to shop list */
.ann-card {
    width: 100%;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* HEADER */
.ann-header {
    background: #DB7C14;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

/* SCROLL AREA */
.ann-scroll {
    height: 450px;
    overflow-y: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

/* ITEM */
.ann-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

/* ICON */
.ann-item i {
    color: #d9480f;
    font-size: 18px;
    margin-top: 2px;
}

/* SCROLLBAR STYLE */
.ann-scroll::-webkit-scrollbar {
    width: 6px;
}

.ann-scroll::-webkit-scrollbar-thumb {
    background: #163a8a;
    border-radius: 10px;
}

.ann-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}




/* tripura information list  */

.info-card {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;

}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.info-header {
    text-align: center;

}

.info-header h4 {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #DB7C14, #f39c12);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(219, 124, 20, 0.3);
}

.info-header p {
    color: #777;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.info-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    margin-bottom: 10px;
}

.info-btn {
    border: none;
    background: #f5f7fb;
    color: #555;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-btn:hover {
    background: linear-gradient(135deg, #163a8a, #2456c7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 58, 138, 0.25);
}

.info-btn.active {
    background: linear-gradient(135deg, #163a8a, #2456c7);
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 58, 138, 0.25);
}

.info-content {
    background: linear-gradient(180deg, #ffffff, #f8faff);
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 35px;
    min-height: 320px;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

@media (max-width:768px) {
    .info-card {
        padding: 20px;
        border-radius: 18px;
    }

    .info-header h4 {
        font-size: 17px;
        padding: 10px 24px;
    }

    .info-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .info-content {
        padding: 22px;
        font-size: 15px;
    }
}


/* photo pop up */
.about-modern {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}


.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}


.about-image {
    position: relative;
    flex: 1 1 100%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.about-image img {
    height: 450px;
    /* increase/decrease as you want */
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    /* optional */
}


.about-content {
    flex: 1 1 100%;
    text-align: center;
}

.about-content h5 {
    color: #ff2d2d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 24px;
    margin: 10px 0;
}

.about-content p {
    color: #555;
    font-size: 16px;
}


.about-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1 1 30%;
    min-width: 350px;
    background: #fff;
    padding: 12px;
    border-radius: 2px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 18px;
    color: #ff2d2d;
    margin-bottom: 8px;
}

.feature-card h4 {
    font-size: 14px;
}

.feature-card:hover {
    transform: translateY(-5px);
}


.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff2d2d, #ff6b6b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


/*  TABLET  */

@media (min-width: 768px) {

    .about-wrapper {
        flex-wrap: nowrap;
    }

    .about-image {
        flex: 1;
    }

    .about-content {
        flex: 1;
        text-align: left;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-features {
        justify-content: flex-start;
    }

    .feature-card {
        flex: 1;
    }
}


/*  DESKTOP  */

@media (min-width: 992px) {

    .about-modern {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

}


/* single interview */
body {
    background: #f5f6fa;
}

/* TITLE */
/* .news-intro-title {
    
    color: #D40000;
    padding: 10px 16px;
    border-radius: 0px;
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 700;
} */

/* CARD */
.news-item-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 0px;
    padding: 18px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.news-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.news-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
}

/* TITLE */
.news-item-title {
    font-size: 25px;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
}

/* DATE */
.news-item-date {
    font-size: 14px;
    color: #777;
}

/* DESCRIPTION */
.news-item-text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .news-item-img {
        height: 200px;
    }
}

/* all video */

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* MAIN VIDEO */
.main-video-box {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-video-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.video-info p {
    color: #666;
    line-height: 1.5;
}


.side-video-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.video-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 12px;
    border-radius: 2px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.video-item:hover {
    transform: translateY(-4px);
}

.video-item iframe {
    width: 100px;
    height: 90px;
    border-radius: 8px;
    border: 0;
    flex-shrink: 0;
}

.video-text h6 {
    margin-bottom: 6px;
    font-weight: 600;
    color: #111;
}

.video-text span {
    font-size: 14px;
    color: #777;
}

/* TABLET */
@media (max-width: 991px) {

    .main-video-box iframe {
        height: 350px;
    }

    .side-video-box {
        margin-top: 25px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 1.9rem;
    }

    .main-video-box iframe {
        height: 230px;
    }

    .video-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-item iframe {
        width: 100%;
        height: 200px;
    }
}

/* --------------- disclaimer  ------------------*/

.disclaimer-section {
    background: #f8fafc;
}

.disclaimer-box {
    border: 1px solid #e5e7eb;
    line-height: 1.8;
    font-size: 15px;
    color: #4b5563;
}

.disclaimer-box p {
    margin-bottom: 15px;
}

.disclaimer-section h2 {
    font-size: 32px;
}

@media (max-width:768px) {
    .disclaimer-section h2 {
        font-size: 26px;
    }

    .disclaimer-box {
        padding: 20px !important;
    }
}


/*--------------- contect page ----------------------*/
.official-contact {
    background: #f9fafb;
}


.contact-info-box,
.contact-form-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
}


.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}


.info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.info-row i {
    font-size: 18px;
    color: #374151;
    margin-top: 3px;
}

.info-row strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

.info-row p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #6b7280;
}


.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 10px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: none;
}


.btn-submit {
    background: #111827;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1f2937;
}

.btn-submit:hover {
    background: #1f2937;
}


@media(max-width:768px) {

    .contact-info-box,
    .contact-form-box {
        padding: 20px;
    }
}