/* =========================
   GLOBAL
========================= */
body {
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    color: #111827;
    overflow-x: hidden;
    max-width: 100%;
}

.tiro-bangla-regular-italic {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 !important;
}
a {
    text-decoration: none;
}
.page-title {
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #23002C;
}

/* =========================
   HEADER
========================= */
.top-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.header-top {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.web-date {
    font-size: 15px;
    font-weight: 700;
    color: #4b5563;
}

.header-middle {
    text-align: center;
}

.main-logo {
    max-height: 78px;
    object-fit: contain;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.social-icons a {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    overflow: hidden;
    transition: .3s ease;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, .96),
            rgba(248, 250, 252, .92));
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: -120%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, .45) 50%,
            transparent 70%);
    transform: rotate(25deg);
    transition: .7s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 14px 30px rgba(79, 70, 229, .22),
        0 6px 14px rgba(0, 0, 0, .08);
}

.social-icons a:hover::before {
    top: 120%;
    left: 120%;
}

.social-icons a:nth-child(1):hover {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.social-icons a:nth-child(2):hover {
    background: linear-gradient(135deg, #1877f2, #0f4fb3);
}

.social-icons a:nth-child(3):hover {
    background: linear-gradient(135deg, #2867b2, #0a66c2);
}

.social-icons a:nth-child(4):hover {
    background: linear-gradient(135deg, #111827, #000);
}

.social-icons a:nth-child(5):hover {
    background: linear-gradient(135deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4);
}

.social-icons a:nth-child(6):hover {
    background: linear-gradient(135deg, #ff0000, #b91c1c);
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
    background: linear-gradient(90deg,
            #1a0022 0%,
            #2a0035 35%,
            #22002b 100%);
}

.nav-wrapper {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   MENU
========================= */
.nav-menu,
.sub-menu,
.side-sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li {
    position: relative;
}

/* =========================
   MENU LINKS
========================= */
.nav-menu li>a,
.sub-menu li>a,
.side-sub-menu li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    text-decoration: none;
    transition: .25s ease;
}

/* MAIN MENU */
.nav-menu>li>a {
    padding: 5px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

/* ACTIVE + HOVER */
.nav-menu>li:hover>a,
.nav-menu>li.active>a {
    background: #fff;
    color: #24002E;
}

/* =========================
   DROPDOWN
========================= */
.has-dropdown {
    position: relative;
}

.nav-arrow,
.side-arrow {
    font-size: 11px;
    transition: .25s ease;
}

.has-dropdown:hover>a .nav-arrow {
    transform: rotate(180deg);
}

/* =========================
   SUB MENU
========================= */
.sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 190px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 999;
}

.sub-menu li {
    width: 100%;
}

.sub-menu li a {
    width: 100%;
    padding: 5px 8px;
    border-radius: 10px;
    color: #23002cab;
    font-size: 18px;
    font-weight: 600;
}

/* SUBMENU HOVER + ACTIVE */
.sub-menu li:hover>a,
.sub-menu li.active>a {
    background: #23002C;
    color: #fff !important;
    transform: translateX(4px);
}

/* SHOW SUBMENU */
.nav-menu>.has-dropdown:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   SIDE CATEGORY
========================= */
.side-category {
    position: relative;
}

.side-sub-menu {
    position: absolute;
    top: -8px;
    left: calc(100% + 8px);
    min-width: 190px;
    background: #fff;
    padding: 5px 8px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .10),
        0 4px 10px rgba(0, 0, 0, .06);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: .25s ease;
    z-index: 9999;
}

.side-category.open-left>.side-sub-menu {
    left: auto;
    right: calc(100% + 8px);
}

/* SHOW SIDE MENU */
.side-category:hover>.side-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.side-category:hover>a .side-arrow {
    transform: translateX(2px);
}

/* SIDE LINKS */
.side-sub-menu li a {
    width: 100%;
    padding: 5px 8px;
    border-radius: 10px;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* SIDE HOVER + ACTIVE */
.side-sub-menu li:hover>a,
.side-sub-menu li.active>a {
    background: #23002C;
    color: #fff !important;
    transform: translateX(4px);
}

/* =========================
   NAV RIGHT
========================= */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-btn,
.login-btn,
.nav-toggle {
    width: 28px;
    height: 28px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transition: .25s ease;
}

.search-btn:hover,
.login-btn:hover,
.nav-toggle:hover {
    background: #fff;
    color: #24002E;
}

/* =========================
   MOBILE SOCIAL
========================= */
.mobile-social {
    display: none;
}

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

    .nav-wrapper {
        padding: 0 10px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 290px;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        background: #fff;
        transition: .35s ease;
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        padding: 10px 14px;
        color: #111827;
        border-radius: 10px;
    }

    /* ACTIVE */
    .nav-menu>li.active>a {
        background: #23002C;
        color: #fff;
    }

    /* HOVER */
    .nav-menu>li:hover>a {
        background: #f3f4f6;
        color: #23002C;
    }

    /* MOBILE SUBMENU */
    .sub-menu,
    .side-sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        min-width: 100%;
        margin-top: 6px;
        padding-left: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    /* OPEN */
    .has-dropdown.active>.sub-menu,
    .side-category.active>.side-sub-menu {
        display: block;
    }

    .sub-menu li a,
    .side-sub-menu li a {
        padding: 10px 10px;
        font-size: 14px;
        border-radius: 8px;
    }

    .sub-menu li.active>a,
    .side-sub-menu li.active>a {
        background: #23002C;
        color: #fff !important;
    }

    .mobile-social {
        display: block;
        margin-top: 20px;
    }

    .desktop-social {
        display: none;
    }
}

/* =========================
   OVERLAY
========================= */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   SEARCH OVERLAY
========================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

/* ACTIVE STATE */
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   SEARCH WRAPPER
========================= */
.search-form-wrapper {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

/* ACTIVE STATE */
.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =========================
   SEARCH BOX
========================= */
.search-form {
    width: 100%;
    max-width: 520px;
    padding: 18px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

    /* smoother entry */
    transform: scale(0.95);
    animation: searchPop 0.25s ease forwards;
}



/* =========================
   FORM LAYOUT
========================= */
.search-form form {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* input */
.search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
}

.search-form input:focus {
    border-color: #23002C;
    box-shadow: 0 0 0 3px rgba(35, 0, 44, 0.1);
}

/* button */
.search-form button {
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: #23002C;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.search-form button:hover {
    background: #3a004a;
}


/* ============= Notice Board ================= */
.notice-board {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #991b1b 100%);
    overflow: hidden;
}

/* Background Glow */
.notice-board::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.244);
    top: -120px;
    left: -120px;
}

.notice-board::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.244);
    bottom: -120px;
    right: -120px;
}

/* Wrapper */
.notice-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 10px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Top */
.notice-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* Badge */
.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #b91c1c;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    font-size: 14px;
}

/* Status */
.notice-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title */
.notice-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

/* Content */
.notice-short,
.notice-full {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.notice-short p,
.notice-full p {
    margin-bottom: 10px;
}

/* Full Content */
.notice-full {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Button Area */
.notice-action {
    text-align: center;
    margin-top: 10px;
}

.notice-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #b91c1c;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    z-index: 10;
}

.notice-close-btn:hover {
    background: #d1d1d1;
    color: #b91c1c;
    transform: rotate(90deg);
}

/* Button */
.notice-btn {
    border: none;
    outline: none;
    background: #fff;
    color: #b91c1c;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.notice-btn:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-3px);
}

.notice-date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.notice-date .date-box {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.notice-date .date-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 700;
}

/* Links */
.notice-short a,
.notice-full a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.notice-short a:hover,
.notice-full a:hover {
    color: #fde68a;
}
/* ============ NOTICE END ============ */

.lead-heading {
    color: #111827;
    margin: 0;
    padding: 10px 0;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub-heading {
    color: #111827;
    font-size: 18px;
    padding: 8px 0;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.deafult-heading {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.list-heading {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deafult-heading:hover,
.lead-heading:hover,
.sub-heading:hover,
list-heading:hover {
    color: #5d0068;
}

/* ============ Heading End ============ */

.news-section {
    padding: 16px 0;
    background: #f3f4f6;
}

/* Common */
a {
    text-decoration: none !important;
}

/* Left Side */
.news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-image {
    overflow: hidden;
}

.news-image img {
    width: 100%;
    object-fit: cover;
    transition: .4s;
}

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

.news-content {
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paragraph {
    padding: 0 8px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.main-category {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* =========================
   LATEST NEWS BOX
========================= */
.news-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    height: auto;
    border: 1px solid #f1f1f1;
}

.sticky-sidebar {
    position: sticky;
    top: 30px;
}

.news-header {
    background: linear-gradient(90deg, #4b0055, #65006f);
    color: #fff;
    padding: 10px 16px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

/* LIVE DOT */
.latest-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d9d9d9;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

/* NEWS ITEM */
.news-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    text-decoration: none !important;
    border-bottom: 1px solid #ececec;
    transition: all .3s ease;
    background: #fff;
}

.news-item:last-child {
    border-bottom: none;
}

/* HOVER */
.news-item:hover {
    background: #faf7fb;
    transform: translateX(4px);
}

/* THUMB */
.latest-thumb {
    width: 85px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-item:hover .latest-thumb img {
    transform: scale(1.08);
}


/* ============ Top END ============ */
.page-hero {
    padding: 30px 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #23002C, #3b0a47);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 14px 40px rgba(35, 0, 44, 0.28);
}

/* Decorative Glow */
.breadcrumb-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 20%;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #f5d0fe;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.hero-title {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 800;
    color: #22002B;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 22px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ad0404;
}

.hero-breadcrumb .active {
    color: #b50101;
    font-weight: 700;
}

/* News Card */
.news-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;

}


/* Home Category Title */
.section-title {
    background: #23002C;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 20px;
}
.category-icon{
    width: 10px;
    height: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-link{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #fff;
    transition: .3s;
}
.category-link:hover{
    color: #f2f2f2;
}
/* Home Category Title End */

/* Common Card */
.lead-card,
.small-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none !important;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}
.lead-card:hover,
.small-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
/* Images */
.news-thumb,
.small-thumb {
    overflow: hidden;
}
.news-thumb img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .4s;
}
.small-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: .4s;
}
.lead-card:hover img,
.small-card:hover img {
    transform: scale(1.05);
}
.br-12 {
    border-radius: 10px;
}
/* ==========================
PRICE SENSITIVE SECTION
========================== */
.price-sensitive-section {
    position: relative;
    padding: 20px 15px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #b8b7b7 0%,
        #8d8d8d 50%,
        #b8b7b7 100%
    );
}

/* Glow Effects */
.price-sensitive-section::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    top: -100px;
    left: -100px;
}

.price-sensitive-section::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    bottom: -100px;
    right: -100px;
}

/* Content */
.price-sensitive-section .row,
.price-sensitive-section .section-title{
    position: relative;
    z-index: 2;
}

/* Title */
.price-sensitive-section .section-title{
    margin-bottom:15px;
}

section-title span{
    display:inline-block;
    background: rgba(255,255,255,.12);
    color:#fff;
    font-weight:700;
    border:1px solid rgba(255,255,255,.15);
}


/* Image Card */
.price-news-card{
    display:block;
    overflow:hidden;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    transition:.3s;
}

.price-news-card:hover{
    transform:translateY(-3px);
}

.price-news-thumb{
    width:100%;
    height:60px;
    object-fit:cover;
    display:block;
}
/* =========== Price Sensitive Section =========== */

.english-news-section {
        background: linear-gradient(90deg, #35567c, #4d4b88);
        padding: 40px 0;
        color: #fff;
    }

    .english-section-title {
        background: #23002C;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        border-radius: 10px;
        padding: 10px 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .english-category-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        position: relative;
        padding-left: 18px;
    }

    .english-category-title::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 18px;
    }

    .more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ff1e56;
        color: #fff;
        text-decoration: none;
        padding: 0 22px;
        border-radius: 50px;
        font-weight: 600;
    }

    .more-btn:hover {
        color: #fff;
    }

    .english-news{
        background-color: #f6f6f6;
        padding: 10px 5px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .english-content {
        padding-left: 20px;
    }

    .english-content h1 {
        color: #111827;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .english-content p {
        font-size: 16px;
        line-height: 1.4;
        color: #4b5563;
    }
    @media (max-width: 991px) {
        .english-content {
            padding-left: 0;
            padding-top: 20px;
        }
        .english-content h1 {
            font-size: 32px;
        }
        .english-content p {
            font-size: 18px;
        }
    }

    @media (max-width: 767px) {
        .english-content h2 {
            font-size: 20px;
        }
    }
/* =========== English News Section =========== */

/* ========================== FOOTER SECTION ========================== */
.footer-section{
    background:#23002C;
    color:#fff;
}

/* Newsletter */
.newsletter-area{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.25);
}
.newsletter-info{
    display:flex;
    align-items:center;
    gap:10px;
}
.newsletter-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
}
.newsletter-icon i{
    font-size:25px;
    color:#23002C;
}
.newsletter-info h2{
    font-size:18px;
    margin-bottom:8px;
    font-weight:600;
}
.newsletter-info p{
    margin:0;
    font-size:10px;
}
/* Newsletter Form */
.newsletter-form{
    display:flex;
}
.newsletter-form input{
    flex:1;
    border:none;
    height:50px;
    border-radius:30px 0 0 30px;
    padding:0 25px;
    font-size:16px;
}
.newsletter-form input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none !important;
}
.newsletter-form button{
    border:none;
    height:50px;
    padding:0 25px;
    border-radius:0 30px 30px 0;
    background:#fff;
    cursor:pointer;
    border-left:1px solid #23002C;
    color:#23002C;
    font-size:16px;
    font-weight:600;
    transition:.5s;
}

.web-authors{
    margin-bottom: 10px;
    text-align:center;
    color: rgba(255, 255, 255, 0.75);
    font-size:18px;
    font-weight:700;
}

/* Footer Main */
.footer-main{
    padding-top:20px;
}
.social-links{
    display:flex;
    gap:10px;
}
.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
.social-links a:hover{
    background:#fff;
    color: #23002C;
}

.col-title{
    text-align: left;
}
/* Footer Menu */
.footer-main h4{
    position: relative;
    padding-bottom: 10px;
}
.footer-main h4::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}
.footer-main ul{
    margin:0;
    padding:0;
    list-style:none;
}
.footer-main ul li{
    margin-bottom:15px;
}
.footer-main ul li a{
    font-size:16px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
.footer-main ul li a:hover{
    opacity:.8;
}

.app-box{
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #23002C 0%,
        #4A005D 50%,
        #6A0080 100%
    );
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
        0 10px 30px rgba(0,0,0,.20),
        0 4px 10px rgba(90,0,111,.25);
    transition: all .35s ease;
}
/* Decorative Glow */
.app-box::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:100%;
    height:100px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    filter:blur(10px);
}
/* Hover Effect */
.app-box:hover{
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.25),
        0 8px 20px rgba(90,0,111,.35);
}
.app-box h5{
    font-size:22px;
    margin-bottom:10px;
}
.app-box p{
    font-size:14px;
    margin-bottom:16px;
}
.app-box img{
    max-width:200px;
}

/* Copyright */
.copyright-area{
    padding:10px 0;
    background:#381541;
    color:#fff;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
}
.copyright-area .container{
    align-items:center;
    justify-content:space-between;
}

/* Copyright */
.copyright-area {
    margin:0;
    font-size:16px;
}
/* ================ Details Body ================== */
.details-body {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e3dfe4, #cfcccf);
    border-radius: 10px;
    padding: 8px;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 14px 40px rgba(35, 0, 44, 0.28);
}
.details-body::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.details-body::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

/* content-body */
.content-body{
    width: fit-content;
    margin: 25px auto;
    color: #23002C;
    font-size: 16px;
    font-family: sans-serif;
}
/* ================ Details Body End ================== */