:root {
    --primary: #e21b2d;
    --primary-dark: #b91423;
    --secondary: #0f6bff;
    --accent: #ffb703;
    --green: #0bb56b;
    --dark: #111827;
    --text: #1f2937;
    --muted: #6b7280;
    --light: #f6f7fb;
    --card: #ffffff;
    --border: #e6e8ef;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.09);
    --shadow-hover: 0 24px 60px rgba(226, 27, 45, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(226, 27, 45, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 107, 255, 0.08), transparent 30%),
        #f5f6fb;
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* Top Strip */
.top-strip {
    background: linear-gradient(90deg, var(--primary), #ff4d5d, var(--secondary));
    color: #fff;
    font-size: 14px;
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.25);
    animation: pulse 1.3s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.15); }
    100% { transform: scale(0.9); }
}

.top-right a {
    color: #fff;
    font-size: 16px;
}

#google_translate_element {
    min-width: 135px;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    border: 0;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    outline: none;
}

/* Header */
.site-header {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230,232,239,0.9);
}

.header-main {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
}

.brand-box img {
    max-height: 76px;
    object-fit: contain;
}

.brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 26px;
    box-shadow: 0 18px 40px rgba(226, 27, 45, 0.32);
}

.brand-text h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.8px;
}

.brand-text p {
    margin: 2px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.header-ad-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ad-placeholder {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    border: 2px dashed rgba(226, 27, 45, 0.35);
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7f8, #eef5ff);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ad-placeholder strong {
    color: var(--primary);
    font-size: 22px;
}

.ad-placeholder.square {
    min-height: 250px;
    max-width: 100%;
}

/* Navbar */
.news-navbar {
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.news-navbar .nav-link {
    color: var(--dark);
    font-weight: 800;
    padding: 18px 13px !important;
    position: relative;
    font-size: 15px;
}

.news-navbar .nav-link:hover,
.news-navbar .nav-link.active {
    color: var(--primary);
}

.news-navbar .nav-link.active::after,
.news-navbar .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 8px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mobile-brand {
    display: none;
    font-weight: 900;
    color: var(--primary) !important;
}

.custom-toggler {
    border: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 8px 12px;
}

.nav-search {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 999px;
    padding: 5px;
    border: 1px solid var(--border);
}

.nav-search input {
    border: 0;
    background: transparent;
    outline: none;
    padding: 8px 10px;
    width: 180px;
    font-size: 14px;
}

.nav-search button {
    border: 0;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

/* Breaking */
.breaking-section {
    padding: 22px 0 0;
}

.breaking-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.breaking-label {
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    padding: 16px 22px;
    font-weight: 900;
    white-space: nowrap;
}

.breaking-marquee {
    flex: 1;
    overflow: hidden;
}

.breaking-track {
    display: flex;
    gap: 35px;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    padding-left: 100%;
}

.breaking-track a {
    color: var(--dark);
    font-weight: 800;
}

.breaking-track a:hover {
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hero */
.hero-section {
    padding: 34px 0 24px;
}

.hero-card,
.side-headline-card,
.news-card,
.sidebar-widget,
.article-card,
.empty-front-card,
.page-hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 28px;
}

.hero-card {
    overflow: hidden;
}

.hero-image {
    position: relative;
    display: block;
    height: 405px;
    overflow: hidden;
}

.hero-image img,
.news-card-image img,
.headline-thumb img,
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image img,
.news-card-image img {
    transition: transform 0.35s ease;
}

.hero-card:hover .hero-image img,
.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.hero-badge {
    position: absolute;
    left: 22px;
    top: 22px;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(226, 27, 45, 0.34);
}

.hero-content {
    padding: 28px;
}

.hero-content h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--dark);
}

.hero-content h2 a:hover {
    color: var(--primary);
}

.hero-content p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.news-meta,
.card-meta,
.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    margin-top: 17px;
}

.news-meta i,
.card-meta i,
.article-meta i {
    color: var(--primary);
}

/* Headline */
.side-headline-card {
    padding: 24px;
    height: 100%;
}

.section-title {
    margin-bottom: 22px;
}

.section-title span {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.7px;
}

.section-title h3 {
    margin: 4px 0 0;
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
}

.section-title.compact h3 {
    font-size: 22px;
}

.section-title.with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.section-title.with-link a {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 15px;
    color: var(--primary);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.headline-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.headline-item:last-child {
    border-bottom: 0;
}

.headline-thumb {
    width: 120px;
    height: 86px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
}

.headline-item span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.headline-item h4 {
    font-size: 16px;
    line-height: 1.45;
    margin: 5px 0 0;
    font-weight: 900;
}

.headline-item h4 a:hover {
    color: var(--primary);
}

/* News Cards */
.main-news-section,
.category-strip-section,
.post-page-section {
    padding: 36px 0;
}

.news-card {
    overflow: hidden;
    height: 100%;
    transition: 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.news-card-image {
    display: block;
    height: 190px;
    overflow: hidden;
}

.news-card-body {
    padding: 20px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(226,27,45,0.10), rgba(255,183,3,0.20));
    color: var(--primary);
    border: 1px solid rgba(226,27,45,0.12);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.news-card h4 {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    margin: 0;
}

.news-card h4 a:hover {
    color: var(--primary);
}

.news-card p {
    color: var(--muted);
    margin: 10px 0 0;
    line-height: 1.65;
    font-size: 14px;
}

.mini-card .news-card-image {
    height: 165px;
}

.mini-card h4 {
    font-size: 16px;
}

.horizontal-card .news-card-image {
    height: 220px;
}

/* Sidebar */
.news-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 18px;
}

.sidebar-widget h4 i {
    color: var(--primary);
}

.premium-widget {
    background:
        linear-gradient(180deg, #fff, #fff7f8);
}

.popular-item {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.popular-item:last-child {
    border-bottom: 0;
}

.popular-number {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.popular-item h5 {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
}

.popular-item h5 a:hover {
    color: var(--primary);
}

.popular-item span {
    color: var(--muted);
    font-size: 12px;
    display: inline-block;
    margin-top: 6px;
}

/* Page Hero */
.page-hero {
    padding: 36px 0 10px;
}

.page-hero-card {
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(226,27,45,0.95), rgba(15,107,255,0.88)),
        #fff;
    color: #fff;
    overflow: hidden;
    position: relative;
}

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

.page-hero-card span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.page-hero-card h1 {
    margin: 8px 0;
    font-size: 40px;
    font-weight: 900;
}

.page-hero-card p {
    margin: 0;
    max-width: 700px;
    line-height: 1.7;
}

/* Article */
.article-card {
    padding: 34px;
}

.article-category-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.breaking-chip {
    background: #fff0f0;
    color: var(--primary);
    border: 1px solid rgba(226,27,45,0.18);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.article-card h1 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

.article-lead {
    margin: 16px 0 0;
    font-size: 19px;
    line-height: 1.7;
    color: #4b5563;
    font-weight: 600;
}

.article-image {
    margin: 26px 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
}

.article-image img {
    max-height: 520px;
}

.article-image figcaption {
    padding: 12px 16px;
    color: var(--muted);
    font-size: 13px;
    background: #fafafa;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #f8f9fd;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.share-box strong {
    color: var(--dark);
}

.share-box a {
    padding: 9px 13px;
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.share-box .whatsapp {
    background: #20b15a;
}

.share-box .facebook {
    background: #1877f2;
}

.share-box .twitter {
    background: #111827;
}

.article-content {
    font-size: 18px;
    line-height: 1.95;
    color: #1f2937;
}

.source-box,
.tag-box {
    margin-top: 26px;
    background: #fff7f8;
    border: 1px solid rgba(226,27,45,0.14);
    border-radius: 18px;
    padding: 16px;
}

.source-box a {
    color: var(--primary);
    font-weight: 800;
}

.tag-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tag-box span {
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 800;
}

.article-ad-box {
    margin: 24px 0;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.related-section {
    margin-top: 32px;
}

/* Search */
.big-search-form {
    margin-top: 22px;
    display: flex;
    max-width: 620px;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.16);
}

.big-search-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 18px;
    border-radius: 999px;
}

.big-search-form button {
    border: 0;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
}

/* Empty / Placeholder */
.empty-front-card {
    padding: 38px;
    text-align: center;
}

.empty-front-card h3 {
    font-weight: 900;
    color: var(--dark);
}

.empty-front-card p {
    color: var(--muted);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(226,27,45,0.95), rgba(15,107,255,0.85));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-align: center;
}

.image-placeholder.large {
    height: 405px;
    font-size: 32px;
}

.image-placeholder.medium {
    height: 190px;
}

.image-placeholder.small {
    height: 86px;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    background:
        linear-gradient(135deg, #111827, #23112f 45%, #3b0a16);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 70px 0 0;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: -10%;
    width: 120%;
    height: 120px;
    background: #f5f6fb;
    border-radius: 0 0 50% 50%;
}

.footer-card {
    position: relative;
    z-index: 2;
}

.footer-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.footer-card h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
}

.footer-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-social a:hover {
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
}

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

.footer-links.two-col {
    columns: 2;
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    box-shadow: 0 16px 35px rgba(226,27,45,0.35);
    display: none;
    z-index: 1000;
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
    .header-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 0;
    }

    .header-ad-box {
        width: 100%;
    }

    .mobile-brand {
        display: block;
    }

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

    .news-navbar .nav-link.active::after,
    .news-navbar .nav-link:hover::after {
        display: none;
    }

    .nav-search {
        margin-top: 12px;
        width: 100%;
    }

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

    .hero-image {
        height: 330px;
    }

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

    .news-sidebar {
        position: static;
    }

    .article-card h1 {
        font-size: 32px;
    }

    .page-hero-card h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
    }

    .top-right {
        flex-wrap: wrap;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 21px;
    }

    .brand-text h1 {
        font-size: 24px;
    }

    .ad-placeholder {
        min-height: 76px;
    }

    .breaking-box {
        flex-direction: column;
        align-items: stretch;
    }

    .breaking-label {
        text-align: center;
    }

    .hero-image {
        height: 250px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h2 {
        font-size: 23px;
    }

    .section-title h3 {
        font-size: 24px;
    }

    .section-title.with-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card-image {
        height: 175px;
    }

    .headline-thumb {
        width: 92px;
        height: 74px;
    }

    .headline-item h4 {
        font-size: 14px;
    }

    .article-card {
        padding: 22px;
        border-radius: 22px;
    }

    .article-card h1 {
        font-size: 26px;
    }

    .article-lead {
        font-size: 16px;
    }

    .article-content {
        font-size: 16px;
    }

    .share-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .big-search-form {
        border-radius: 22px;
        flex-direction: column;
    }

    .big-search-form button {
        width: 100%;
    }

    .page-hero-card {
        padding: 28px;
    }

    .page-hero-card h1 {
        font-size: 28px;
    }

    .footer-links.two-col {
        columns: 1;
    }
}
/* Static Pages + Contact Page */
.static-page-section,
.contact-section {
    padding: 38px 0;
}

.static-page-card,
.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 28px;
}

.static-page-card {
    padding: 38px;
}

.static-content {
    font-size: 18px;
    line-height: 1.95;
    color: #1f2937;
    white-space: normal;
}

.static-content h1,
.static-content h2,
.static-content h3 {
    color: var(--dark);
    font-weight: 900;
}

.contact-info-card {
    padding: 34px;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(226, 27, 45, 0.96), rgba(15, 107, 255, 0.88)),
        #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
}

.contact-mini-title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.contact-info-card h3 {
    margin: 8px 0 12px;
    font-size: 30px;
    font-weight: 900;
}

.contact-info-card p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.contact-info-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 18px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.contact-form-card {
    padding: 34px;
}

.front-input {
    min-height: 52px;
    border-radius: 15px;
    border: 1px solid var(--border);
    background: #fafbff;
}

.front-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.18rem rgba(226, 27, 45, 0.12);
}

.front-textarea {
    min-height: 180px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fafbff;
    resize: vertical;
}

.front-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.18rem rgba(226, 27, 45, 0.12);
}

.front-submit-btn {
    border: 0;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(226, 27, 45, 0.30);
}

.front-submit-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .static-page-card,
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .static-content {
        font-size: 16px;
    }

    .contact-info-card h3 {
        font-size: 25px;
    }
}
/* SEO Breadcrumb */
.breadcrumb-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff7f8;
    border: 1px solid rgba(226, 27, 45, 0.14);
    border-radius: 18px;
    padding: 12px 15px;
    margin-bottom: 18px;
    font-size: 14px;
}

.breadcrumb-box a {
    color: var(--primary);
    font-weight: 800;
}

.breadcrumb-box span {
    color: #9ca3af;
}

.breadcrumb-box strong {
    color: var(--dark);
    font-weight: 800;
}

@media (max-width: 575px) {
    .breadcrumb-box {
        font-size: 13px;
        border-radius: 15px;
    }
}

/* Front Pagination */
.pagination-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.pagination-box {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.page-link-btn,
.page-dots {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.page-link-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.page-link-btn.active {
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    border-color: transparent;
}

.page-link-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.page-dots {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

@media (max-width: 575px) {
    .pagination-box {
        justify-content: flex-start;
    }

    .page-link-btn,
    .page-dots {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 13px;
    }
}

/* Premium Homepage Section Layout */
.premium-home-block {
    position: relative;
}

.home-section-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 232, 239, 0.95);
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
    position: relative;
    overflow: hidden;
}

.home-section-panel::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(226, 27, 45, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-section-panel::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(15, 107, 255, 0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-section-panel > * {
    position: relative;
    z-index: 2;
}

.home-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.home-panel-header span {
    color: var(--primary);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-panel-header h2 {
    margin: 4px 0 0;
    color: var(--dark);
    font-size: 30px;
    font-weight: 900;
}

.home-panel-header a {
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(226, 27, 45, 0.25);
}

.home-inner-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.06);
}

.premium-breaking-card {
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(226, 27, 45, 0.12);
}

.premium-feature-card {
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
}

.premium-side-card {
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.premium-news-card {
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.premium-news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(226, 27, 45, 0.17);
}

.premium-sidebar-area .sidebar-widget {
    border-radius: 26px;
}

.category-home-panel {
    padding: 24px;
}

.latest-home-panel {
    padding: 24px;
}

/* Better Section Title Button */
.section-title.with-link {
    background: linear-gradient(135deg, #fff, #fff7f8);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px 20px;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.section-title.with-link a {
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
    border: 0;
    box-shadow: 0 14px 30px rgba(226, 27, 45, 0.24);
}

.section-title.with-link a:hover,
.home-panel-header a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Homepage Card Spacing Fix */
.hero-section {
    padding-top: 34px;
}

.main-news-section {
    padding-top: 28px;
}

.category-strip-section {
    padding-top: 22px;
    padding-bottom: 22px;
}

@media (max-width: 991px) {
    .home-section-panel {
        padding: 20px;
        border-radius: 26px;
    }

    .home-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-panel-header a {
        width: 100%;
        text-align: center;
    }

    .home-inner-card {
        padding: 18px;
        border-radius: 22px;
    }
}

@media (max-width: 575px) {
    .home-section-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .home-panel-header h2 {
        font-size: 24px;
    }

    .section-title.with-link {
        padding: 15px;
        border-radius: 18px;
    }

    .section-title.with-link a {
        width: 100%;
        text-align: center;
    }

    .home-inner-card {
        padding: 14px;
        border-radius: 18px;
    }
}
/* Image Loading Enhancement */
.news-card-image,
.hero-image,
.headline-thumb,
.article-image {
    background: linear-gradient(135deg, #fff7f8, #eef5ff);
}

.news-card-image img,
.hero-image img,
.headline-thumb img,
.article-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* Footer Newsletter */
.newsletter-footer-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: 18px;
}

.newsletter-footer-box h4 {
    margin-bottom: 8px;
}

.newsletter-footer-box p {
    font-size: 14px;
    opacity: 0.82;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    background: #fff;
    border-radius: 999px;
    padding: 6px;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
}

.newsletter-form button {
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff6a00);
    color: #fff;
}

.subscribe-message {
    margin-top: 10px;
    border-radius: 12px;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 800;
}

.subscribe-message.success {
    background: #eafaf0;
    color: #087c39;
}

.subscribe-message.warning {
    background: #fff7df;
    color: #8a5a00;
}

.subscribe-message.danger {
    background: #ffe8e8;
    color: #b42318;
}

/* Premium Bootstrap Footer */
.premium-site-footer {
    position: relative;
    margin-top: 70px;
    padding: 60px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(226, 27, 45, 0.26), transparent 30%),
        radial-gradient(circle at bottom right, rgba(15, 107, 255, 0.20), transparent 28%),
        linear-gradient(135deg, #10131d 0%, #171b2a 45%, #0c0f17 100%);
    overflow: hidden;
}

.footer-top-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 280px;
    background: rgba(226, 27, 45, 0.28);
    filter: blur(95px);
    pointer-events: none;
}

.footer-main-card {
    position: relative;
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 34px;
    padding: 26px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.34);
    backdrop-filter: blur(18px);
}

.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 10px 8px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.11);
}

.footer-brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-box {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary, #e21b2d), #ff6a00);
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(226,27,45,0.34);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-box span {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.footer-brand-box h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.footer-brand-box p {
    margin: 4px 0 0;
    color: rgba(255,255,255,0.68);
    font-weight: 700;
}

.footer-social-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-premium a {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.13);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.25s ease;
}

.footer-social-premium a:hover {
    background: linear-gradient(135deg, var(--primary, #e21b2d), #ff6a00);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(226,27,45,0.24);
}

.footer-premium-card {
    height: 100%;
    background: rgba(255,255,255,0.085);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
    padding: 22px;
    transition: 0.25s ease;
}

.footer-premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.105);
    box-shadow: 0 20px 45px rgba(0,0,0,0.20);
}

.footer-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary, #e21b2d), #ff6a00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-premium-card h4 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.footer-about-card p,
.footer-muted-text {
    color: rgba(255,255,255,0.70);
    line-height: 1.75;
    margin-bottom: 0;
    font-size: 14px;
}

.footer-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-mini-info span {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.82);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 800;
}

.footer-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-card-heading span {
    width: 5px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary, #e21b2d), #ff6a00);
}

.footer-card-heading h4 {
    margin: 0;
}

.footer-premium-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium-links li {
    margin-bottom: 10px;
}

.footer-premium-links a {
    color: rgba(255,255,255,0.76);
    font-weight: 750;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
}

.footer-premium-links a i {
    color: var(--primary, #e21b2d);
    font-size: 12px;
}

.footer-premium-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-category-grid a {
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 850;
    transition: 0.2s ease;
}

.footer-category-grid a:hover {
    background: #fff;
    color: var(--primary, #e21b2d);
    transform: translateY(-2px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-contact-list a,
.footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.5;
}

.footer-contact-list a i,
.footer-address-item i {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-newsletter-card {
    margin-top: 26px;
    background:
        linear-gradient(135deg, rgba(226,27,45,0.94), rgba(255,106,0,0.90));
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(226,27,45,0.24);
}

.newsletter-title-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter-title-box > span {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.newsletter-title-box h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.newsletter-title-box p {
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-weight: 650;
}

.premium-newsletter-form {
    background: #fff;
    border-radius: 999px;
    padding: 7px;
    display: flex;
    gap: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.premium-newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 18px;
    border-radius: 999px;
    color: #111827;
    font-weight: 700;
}

.premium-newsletter-form button {
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    padding: 13px 20px;
    font-weight: 900;
    white-space: nowrap;
    transition: 0.2s ease;
}

.premium-newsletter-form button:hover {
    background: var(--primary, #e21b2d);
}

.subscribe-message {
    margin-top: 10px;
    border-radius: 14px;
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 850;
}

.subscribe-message.success {
    background: #eafaf0;
    color: #087c39;
}

.subscribe-message.warning {
    background: #fff7df;
    color: #8a5a00;
}

.subscribe-message.danger {
    background: #ffe8e8;
    color: #b42318;
}

.footer-bottom-premium {
    margin-top: 24px;
    padding: 18px 8px 2px;
    border-top: 1px solid rgba(255,255,255,0.11);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
    font-weight: 800;
}

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

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #25d366;
    color: #fff;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 991px) {
    .premium-site-footer {
        padding: 45px 0 24px;
    }

    .footer-main-card {
        border-radius: 28px;
        padding: 20px;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-premium {
        width: 100%;
    }

    .footer-newsletter-card {
        border-radius: 24px;
    }

    .premium-newsletter-form {
        border-radius: 22px;
        flex-direction: column;
        padding: 10px;
    }

    .premium-newsletter-form input {
        min-height: 46px;
    }

    .premium-newsletter-form button {
        width: 100%;
    }

    .footer-bottom-premium {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .footer-main-card {
        padding: 16px;
        border-radius: 24px;
    }

    .footer-brand-box {
        align-items: flex-start;
    }

    .footer-logo-box {
        width: 62px;
        height: 62px;
        border-radius: 19px;
    }

    .footer-brand-box h2 {
        font-size: 23px;
    }

    .footer-premium-card {
        border-radius: 22px;
        padding: 18px;
    }

    .newsletter-title-box {
        align-items: flex-start;
    }

    .newsletter-title-box h3 {
        font-size: 21px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 86px;
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 24px;
    }
}

/* =========================================================
   Professional Google Translate Button Style
========================================================= */

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

.translate-pro-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 999px;
    padding: 7px 14px;
    min-height: 44px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
    transition: all 0.25s ease;
}

.translate-pro-box:hover {
    border-color: rgba(226, 27, 45, 0.25);
    box-shadow: 0 12px 24px rgba(226, 27, 45, 0.10);
}

.translate-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e21b2d, #ff6a00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Google widget container */
#google_translate_element {
    line-height: 1;
}

/* "Powered by" widget text hide */
#google_translate_element .goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
    font-family: inherit !important;
}

#google_translate_element .goog-te-gadget img {
    display: none !important;
}

/* default extra text hide */
#google_translate_element .goog-te-gadget span {
    display: none !important;
}

/* actual select dropdown */
#google_translate_element .goog-te-combo {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    padding: 0 6px 0 0 !important;
    margin: 0 !important;
    min-width: 150px;
    cursor: pointer;
    font-family: inherit !important;
}

/* Google top banner hide */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* mobile */
@media (max-width: 767px) {
    .translate-pro-box {
        min-height: 40px;
        padding: 6px 12px;
        gap: 8px;
    }

    .translate-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    #google_translate_element .goog-te-combo {
        min-width: 120px;
        font-size: 13px !important;
    }
}

/* =========================================================
   Premium Google Translate Language Selector
========================================================= */

.dt-language-widget {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.dt-language-shell {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,247,248,0.96));
    border: 1px solid rgba(226, 27, 45, 0.16);
    border-radius: 999px;
    padding: 7px 14px 7px 8px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.10);
    overflow: hidden;
}

.dt-language-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(226,27,45,0.13), transparent 36%),
        radial-gradient(circle at bottom right, rgba(255,106,0,0.12), transparent 38%);
    pointer-events: none;
}

.dt-language-left,
.dt-google-select,
.dt-language-caret {
    position: relative;
    z-index: 2;
}

.dt-language-left {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.dt-language-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e21b2d, #ff6a00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(226, 27, 45, 0.22);
}

.dt-language-label {
    line-height: 1.05;
}

.dt-language-label strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 950;
}

.dt-language-label small {
    display: block;
    color: #667085;
    font-size: 10px;
    font-weight: 800;
    margin-top: 3px;
}

.dt-google-select {
    min-width: 132px;
    display: flex;
    align-items: center;
}

#google_translate_element {
    line-height: 1 !important;
    width: 100%;
}

/* Google default text hide */
#google_translate_element .goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
    font-family: inherit !important;
    line-height: 1 !important;
}

#google_translate_element .goog-te-gadget img,
#google_translate_element .goog-te-gadget span {
    display: none !important;
}

/* Main dropdown premium */
#google_translate_element .goog-te-combo {
    width: 100% !important;
    min-width: 132px !important;
    height: 34px !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 20px 0 0 !important;
    box-shadow: none !important;
    font-family: inherit !important;

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Dropdown options */
#google_translate_element .goog-te-combo option {
    color: #111827 !important;
    background: #ffffff !important;
    font-weight: 700 !important;
}

/* Custom caret */
.dt-language-caret {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(226, 27, 45, 0.09);
    color: #e21b2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Hover but no floating */
.dt-language-shell:hover {
    border-color: rgba(226, 27, 45, 0.30);
    box-shadow: 0 12px 28px rgba(226, 27, 45, 0.12);
}

/* Google translate top banner hide */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Google small popup fixes */
body > .skiptranslate {
    display: none !important;
}

/* Topbar placement fix */
.top-strip .dt-language-widget,
.top-header .dt-language-widget,
.header-top .dt-language-widget {
    width: auto;
}

/* Mobile premium compact */
@media (max-width: 767px) {
    .dt-language-shell {
        min-height: 42px;
        padding: 6px 12px 6px 7px;
        gap: 8px;
    }

    .dt-language-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .dt-language-label strong {
        font-size: 12px;
    }

    .dt-language-label small {
        display: none;
    }

    .dt-google-select {
        min-width: 112px;
    }

    #google_translate_element .goog-te-combo {
        min-width: 112px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .dt-language-caret {
        width: 23px;
        height: 23px;
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .dt-language-label {
        display: none;
    }

    .dt-google-select {
        min-width: 118px;
    }

    #google_translate_element .goog-te-combo {
        min-width: 118px !important;
    }
}

/* =========================================================
   Google Translate Premium Clickable Fix
   Dropdown open issue fix
========================================================= */

.dt-language-widget {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100% !important;
}

.dt-language-shell {
    position: relative !important;
    min-width: 255px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,247,248,0.96)) !important;
    border: 1px solid rgba(226, 27, 45, 0.16) !important;
    border-radius: 999px !important;
    padding: 7px 14px 7px 8px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10) !important;
    overflow: visible !important;
    cursor: pointer !important;
}

.dt-language-left {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    pointer-events: none !important;
}

.dt-language-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e21b2d, #ff6a00) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    box-shadow: none !important;
}

.dt-language-label {
    line-height: 1.05 !important;
}

.dt-language-label strong {
    display: block !important;
    color: #111827 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

.dt-language-label small {
    display: block !important;
    color: #667085 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
}

.dt-language-caret {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: rgba(226, 27, 45, 0.09) !important;
    color: #e21b2d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    pointer-events: none !important;
}

/* Google select को पूरे premium button पर clickable overlay बनाएं */
.dt-google-select {
    position: absolute !important;
    inset: 0 !important;
    z-index: 20 !important;
    opacity: 0.01 !important;
    cursor: pointer !important;
}

#google_translate_element,
#google_translate_element .goog-te-gadget {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

#google_translate_element .goog-te-gadget img,
#google_translate_element .goog-te-gadget span {
    display: none !important;
}

/* Actual dropdown full area clickable */
#google_translate_element .goog-te-combo {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    opacity: 1 !important;
    cursor: pointer !important;
    border: 0 !important;
    outline: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Google banner hide, लेकिन dropdown iframe/menu को मत छुपाएं */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0 !important;
}

/* पहले वाले body > .skiptranslate hide को neutralize करें */
body > .skiptranslate {
    display: block !important;
}

/* Google floating mini toolbar को hide करें */
body > .skiptranslate iframe {
    display: none !important;
}

.dt-language-shell:hover {
    border-color: rgba(226, 27, 45, 0.30) !important;
    box-shadow: 0 10px 24px rgba(226, 27, 45, 0.12) !important;
}

@media (max-width: 767px) {
    .dt-language-shell {
        min-width: 210px !important;
        min-height: 44px !important;
    }

    #google_translate_element .goog-te-combo {
        height: 44px !important;
        min-height: 44px !important;
    }

    .dt-language-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }

    .dt-language-label strong {
        font-size: 12px !important;
    }

    .dt-language-label small {
        font-size: 9px !important;
    }
}

@media (max-width: 420px) {
    .dt-language-shell {
        min-width: 170px !important;
    }

    .dt-language-label small {
        display: none !important;
    }
}

/* =========================================================
   FINAL FRONT FIX PATCH
   Header + Google Translate + Top Strip + Footer Clean Fix
   Paste this at the very bottom of /assets/css/style.css
========================================================= */

/* Top strip final layout */
.top-strip {
    background: linear-gradient(90deg, #e21b2d 0%, #ff3f4f 52%, #2457e6 100%) !important;
    color: #fff !important;
    position: relative !important;
    z-index: 1002 !important;
}

.top-strip-inner {
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.top-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
}

.top-left strong,
.top-left span {
    color: #fff !important;
}

.top-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

.top-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.top-social-links a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
}

.top-social-links a:hover {
    background: #fff !important;
    color: #e21b2d !important;
}

/* Premium language selector final */
.dt-language-widget {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    position: relative !important;
    z-index: 50 !important;
}

.dt-language-shell {
    position: relative !important;
    width: 255px !important;
    min-width: 255px !important;
    height: 42px !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(255,255,255,0.32) !important;
    border-radius: 999px !important;
    padding: 5px 12px 5px 6px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14) !important;
    overflow: visible !important;
    cursor: pointer !important;
}

.dt-language-shell::before,
.dt-language-shell::after {
    display: none !important;
    content: none !important;
}

.dt-language-left {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    pointer-events: none !important;
    position: relative !important;
    z-index: 3 !important;
}

.dt-language-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e21b2d, #ff6a00) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: none !important;
}

.dt-language-label {
    line-height: 1.05 !important;
}

.dt-language-label strong {
    display: block !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.dt-language-label small {
    display: block !important;
    color: #667085 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
    max-width: 120px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.dt-language-caret {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    border-radius: 50% !important;
    background: rgba(226, 27, 45, 0.10) !important;
    color: #e21b2d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    pointer-events: none !important;
    position: relative !important;
    z-index: 3 !important;
}

/* The real Google dropdown sits invisibly over the full premium button */
.dt-google-select {
    position: absolute !important;
    inset: 0 !important;
    z-index: 20 !important;
    opacity: 0.01 !important;
    cursor: pointer !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

#google_translate_element {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    line-height: 0 !important;
    display: block !important;
}

#google_translate_element .goog-te-gadget {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    font-family: inherit !important;
}

#google_translate_element .goog-te-gadget img,
#google_translate_element .goog-te-gadget span {
    display: none !important;
}

#google_translate_element .goog-te-combo {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    opacity: 1 !important;
    cursor: pointer !important;
    border: 0 !important;
    outline: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: transparent !important;
    font-size: 0 !important;
    box-shadow: none !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
}

#google_translate_element .goog-te-combo option {
    color: #111827 !important;
    background: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* Hide Google top banner only, don't block native dropdown */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hide the small Google floating toolbar safely */
body > .skiptranslate {
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

body > .skiptranslate iframe {
    display: none !important;
}

/* Header logo/ad final balance */
.header-main {
    gap: 26px !important;
}

.brand-box {
    min-width: 230px !important;
}

.brand-box img {
    max-height: 78px !important;
    width: auto !important;
    object-fit: contain !important;
}

.header-ad-box {
    flex: 1 !important;
}

.ad-placeholder {
    max-width: 728px !important;
    min-height: 90px !important;
}

/* Footer hover floating बंद, clean premium look */
.footer-premium-card:hover,
.footer-social-premium a:hover,
.footer-category-grid a:hover,
.footer-premium-links a:hover,
.floating-whatsapp:hover {
    transform: none !important;
}

.footer-premium-card {
    box-shadow: none !important;
}

.footer-main-card {
    box-shadow: 0 18px 50px rgba(0,0,0,0.28) !important;
}

/* Mobile header and language */
@media (max-width: 991px) {
    .top-strip-inner {
        min-height: auto !important;
        padding: 10px 0 !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .top-left {
        justify-content: center !important;
    }

    .top-right {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .header-main {
        flex-direction: column !important;
        align-items: center !important;
        padding: 18px 0 !important;
        gap: 16px !important;
    }

    .brand-box {
        min-width: auto !important;
        justify-content: center !important;
    }

    .header-ad-box {
        width: 100% !important;
        justify-content: center !important;
    }

    .ad-placeholder {
        max-width: 100% !important;
    }
}

@media (max-width: 575px) {
    .dt-language-shell {
        width: 210px !important;
        min-width: 210px !important;
        height: 40px !important;
        min-height: 40px !important;
    }

    #google_translate_element .goog-te-combo {
        height: 40px !important;
        min-height: 40px !important;
    }

    .dt-language-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }

    .dt-language-label strong {
        font-size: 12px !important;
    }

    .dt-language-label small {
        max-width: 90px !important;
    }

    .top-social-links a {
        width: 31px !important;
        height: 31px !important;
        font-size: 13px !important;
    }

    .brand-box img {
        max-height: 64px !important;
    }
}

@media (max-width: 380px) {
    .dt-language-shell {
        width: 176px !important;
        min-width: 176px !important;
    }

    .dt-language-label small {
        display: none !important;
    }
}

/* =========================================================
   FINAL WORKING GOOGLE TRANSLATE PREMIUM DROPDOWN
   Real dropdown visible + clickable
   Paste at very bottom of /assets/css/style.css
========================================================= */

/* Old broken language widget reset */
.dt-language-widget,
.dt-language-shell,
.dt-language-left,
.dt-language-caret,
.dt-google-select {
    all: unset;
}

.dt-language-widget,
.dt-language-shell,
.dt-language-left,
.dt-language-caret,
.dt-google-select {
    display: none !important;
}

/* Top strip clean */
.top-strip {
    background: linear-gradient(90deg, #e21b2d 0%, #ff3f4f 52%, #2457e6 100%) !important;
    color: #fff !important;
    position: relative !important;
    z-index: 1005 !important;
}

.top-strip-inner {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.top-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
}

.top-left strong,
.top-left span {
    color: #fff !important;
}

.top-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

/* Final language widget */
.dt-language-widget-final {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 40px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.36) !important;
    border-radius: 999px !important;
    padding: 5px 8px 5px 6px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14) !important;
    position: relative !important;
    z-index: 60 !important;
}

.dt-language-icon-final {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e21b2d, #ff6a00) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.dt-language-title-final {
    line-height: 1.05 !important;
    min-width: 70px !important;
}

.dt-language-title-final strong {
    display: block !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.dt-language-title-final small {
    display: block !important;
    color: #667085 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
}

/* Real Google dropdown visible */
.dt-google-real-select {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 112px !important;
    height: 32px !important;
    position: relative !important;
    z-index: 65 !important;
}

/* Google element reset */
#google_translate_element {
    display: block !important;
    min-width: 112px !important;
    height: auto !important;
    line-height: normal !important;
}

#google_translate_element .goog-te-gadget {
    display: block !important;
    width: auto !important;
    height: auto !important;
    font-size: 0 !important;
    line-height: normal !important;
    color: transparent !important;
    font-family: Arial, sans-serif !important;
}

#google_translate_element .goog-te-gadget img,
#google_translate_element .goog-te-gadget span {
    display: none !important;
}

/* Main select - this is the real clickable dropdown */
#google_translate_element select.goog-te-combo,
#google_translate_element .goog-te-combo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 70 !important;

    width: 122px !important;
    min-width: 122px !important;
    height: 32px !important;
    min-height: 32px !important;

    margin: 0 !important;
    padding: 0 8px !important;

    border: 1px solid rgba(226, 27, 45, 0.14) !important;
    border-radius: 999px !important;
    outline: 0 !important;

    background: #fff7f8 !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    line-height: 32px !important;

    cursor: pointer !important;
    box-shadow: none !important;

    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    pointer-events: auto !important;
}

#google_translate_element select.goog-te-combo option,
#google_translate_element .goog-te-combo option {
    color: #111827 !important;
    background: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* Social icons */
.top-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.top-social-links a {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.top-social-links a:hover {
    background: #fff !important;
    color: #e21b2d !important;
}

/* Hide Google banner safely */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hide mini floating Google iframe */
body > .skiptranslate {
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

body > .skiptranslate iframe {
    display: none !important;
}

/* Mobile */
@media (max-width: 991px) {
    .top-strip-inner {
        min-height: auto !important;
        padding: 9px 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .top-right {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 575px) {
    .dt-language-widget-final {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 18px !important;
        padding: 7px !important;
    }

    .dt-language-title-final {
        min-width: auto !important;
    }

    .dt-language-title-final small {
        display: none !important;
    }

    .dt-google-real-select {
        min-width: 128px !important;
    }

    #google_translate_element select.goog-te-combo,
    #google_translate_element .goog-te-combo {
        width: 128px !important;
        min-width: 128px !important;
    }

    .top-social-links a {
        width: 31px !important;
        height: 31px !important;
    }
}

/* =========================================================
   FINAL FIX - Google Translate New Unique ID
   Old #google_translate_element CSS से बचने के लिए नया ID use किया गया है
========================================================= */

.dt-final-language-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 40px !important;
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: 999px !important;
    padding: 5px 8px 5px 6px !important;
    box-shadow: 0 8px 18px rgba(17,24,39,0.12) !important;
    position: relative !important;
    z-index: 10000 !important;
}

.dt-final-language-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e21b2d, #ff6a00) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.dt-final-language-text {
    line-height: 1.05 !important;
}

.dt-final-language-text strong {
    display: block !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.dt-final-language-text small {
    display: block !important;
    color: #667085 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
}

.dt-final-google-box {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 125px !important;
    position: relative !important;
    z-index: 10001 !important;
}

/* New ID only - पुरानी CSS इस पर effect नहीं करेगी */
#dt_google_translate_final {
    display: block !important;
    min-width: 125px !important;
    position: relative !important;
    z-index: 10002 !important;
}

#dt_google_translate_final .goog-te-gadget {
    display: block !important;
    font-size: 0 !important;
    color: transparent !important;
    line-height: normal !important;
    font-family: Arial, sans-serif !important;
}

#dt_google_translate_final .goog-te-gadget img,
#dt_google_translate_final .goog-te-gadget span {
    display: none !important;
}

#dt_google_translate_final select.goog-te-combo,
#dt_google_translate_final .goog-te-combo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 125px !important;
    min-width: 125px !important;
    height: 31px !important;

    margin: 0 !important;
    padding: 0 8px !important;

    border: 1px solid rgba(226,27,45,0.16) !important;
    border-radius: 999px !important;
    outline: 0 !important;

    background: #fff7f8 !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 800 !important;

    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10003 !important;

    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
}

#dt_google_translate_final select.goog-te-combo option,
#dt_google_translate_final .goog-te-combo option {
    color: #111827 !important;
    background: #fff !important;
    font-size: 14px !important;
}

/* Top strip final balance */
.top-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

.top-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.top-social-links a {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

/* Google banner hide */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Mobile */
@media (max-width: 991px) {
    .top-strip-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 0 !important;
    }

    .top-right {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 575px) {
    .dt-final-language-box {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 18px !important;
    }

    .dt-final-language-text small {
        display: none !important;
    }

    .dt-final-google-box,
    #dt_google_translate_final,
    #dt_google_translate_final select.goog-te-combo,
    #dt_google_translate_final .goog-te-combo {
        min-width: 130px !important;
        width: 130px !important;
    }
}

/* =========================================================
   FINAL CUSTOM GOOGLE TRANSLATE SELECTOR
   Visible premium select + hidden Google Translate core
========================================================= */

/* Old broken language selectors hide */
.dt-language-widget,
.dt-language-shell,
.dt-language-left,
.dt-language-caret,
.dt-google-select,
.dt-final-language-box,
.dt-final-language-icon,
.dt-final-language-text,
.dt-final-google-box,
.dt-language-widget-final,
.dt-google-real-select {
    display: none !important;
}

/* Top strip final clean */
.top-strip {
    background: linear-gradient(90deg, #e21b2d 0%, #ff3f4f 52%, #2457e6 100%) !important;
    color: #fff !important;
    position: relative !important;
    z-index: 1005 !important;
}

.top-strip-inner {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.top-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
}

.top-left strong,
.top-left span {
    color: #fff !important;
}

.top-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

.top-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.top-social-links a {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.top-social-links a:hover {
    background: #fff !important;
    color: #e21b2d !important;
}

/* Premium custom selector */
.dt-custom-language-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 42px !important;
    background: rgba(255,255,255,0.97) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: 999px !important;
    padding: 5px 8px 5px 6px !important;
    box-shadow: 0 8px 18px rgba(17,24,39,0.14) !important;
    position: relative !important;
    z-index: 10000 !important;
}

.dt-custom-language-icon {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e21b2d, #ff6a00) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.dt-custom-language-text {
    line-height: 1.05 !important;
}

.dt-custom-language-text strong {
    display: block !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.dt-custom-language-text small {
    display: block !important;
    color: #667085 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
}

/* This select is real, visible, and always clickable */
.dt-custom-language-select {
    width: 126px !important;
    min-width: 126px !important;
    height: 32px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 9px !important;
    border: 1px solid rgba(226,27,45,0.16) !important;
    border-radius: 999px !important;
    outline: 0 !important;
    background: #fff7f8 !important;
    color: #111827 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
}

.dt-custom-language-select option {
    color: #111827 !important;
    background: #fff !important;
    font-size: 14px !important;
}

/* Hidden Google Translate core */
.dt-google-translate-core-hidden,
#dtGoogleTranslateCore {
    position: absolute !important;
    left: -99999px !important;
    top: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hide Google banner / iframe safely */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0 !important;
}

body > .skiptranslate {
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

body > .skiptranslate iframe {
    display: none !important;
}

/* Header balance */
.header-main {
    gap: 26px !important;
}

.brand-box {
    min-width: 230px !important;
}

.brand-box img {
    max-height: 78px !important;
    width: auto !important;
    object-fit: contain !important;
}

.header-ad-box {
    flex: 1 !important;
}

.ad-placeholder {
    max-width: 728px !important;
    min-height: 90px !important;
}

/* Footer hover floating बंद */
.footer-premium-card:hover,
.footer-social-premium a:hover,
.footer-category-grid a:hover,
.footer-premium-links a:hover,
.floating-whatsapp:hover {
    transform: none !important;
}

/* Mobile */
@media (max-width: 991px) {
    .top-strip-inner {
        min-height: auto !important;
        padding: 10px 0 !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .top-right {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .header-main {
        flex-direction: column !important;
        align-items: center !important;
        padding: 18px 0 !important;
        gap: 16px !important;
    }

    .brand-box {
        min-width: auto !important;
        justify-content: center !important;
    }

    .header-ad-box {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .dt-custom-language-box {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 18px !important;
        padding: 7px !important;
    }

    .dt-custom-language-text small {
        display: none !important;
    }

    .dt-custom-language-select {
        width: 132px !important;
        min-width: 132px !important;
    }

    .top-social-links a {
        width: 31px !important;
        height: 31px !important;
    }

    .brand-box img {
        max-height: 64px !important;
    }
}

/* =========================================================
   Header Latest News Running Ticker
   Menu/Search के नीचे latest ताजा खबर title runner
========================================================= */

.dt-latest-ticker-section {
    padding: 12px 0 0;
    background: transparent;
    position: relative;
    z-index: 20;
}

.dt-latest-ticker-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(226, 27, 45, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07);
    min-height: 52px;
}

.dt-latest-ticker-label {
    height: 52px;
    padding: 0 18px;
    background: linear-gradient(135deg, #e21b2d, #ff6a00);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
    flex-shrink: 0;
}

.dt-ticker-pulse {
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.22);
    animation: dtTickerPulse 1.25s infinite;
}

@keyframes dtTickerPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.85;
    }
}

.dt-latest-ticker-window {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.dt-latest-ticker-track {
    display: flex;
    width: max-content;
    animation: dtLatestTickerRun 42s linear infinite;
}

.dt-latest-ticker-box:hover .dt-latest-ticker-track {
    animation-play-state: paused;
}

.dt-latest-ticker-group {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-left: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.dt-latest-ticker-group a {
    color: #111827;
    font-size: 14px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.dt-latest-ticker-group a::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #e21b2d;
    border-radius: 50%;
    margin-left: 18px;
    opacity: 0.55;
}

.dt-latest-ticker-group a span {
    background: #fff1f2;
    color: #e21b2d;
    border: 1px solid rgba(226, 27, 45, 0.12);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 950;
}

.dt-latest-ticker-group a:hover {
    color: #e21b2d;
}

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

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

.dt-latest-ticker-more {
    height: 52px;
    padding: 0 16px;
    border-left: 1px solid #edf0f5;
    color: #e21b2d;
    background: #fff7f8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
    flex-shrink: 0;
}

.dt-latest-ticker-more:hover {
    background: #e21b2d;
    color: #fff;
}

/* Mobile Ticker */
@media (max-width: 767px) {
    .dt-latest-ticker-section {
        padding: 10px 0 0;
    }

    .dt-latest-ticker-box {
        border-radius: 16px;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .dt-latest-ticker-label {
        width: 100%;
        height: 42px;
        justify-content: center;
        padding: 0 14px;
        font-size: 13px;
    }

    .dt-latest-ticker-window {
        height: 42px;
        display: flex;
        align-items: center;
    }

    .dt-latest-ticker-track {
        animation-duration: 34s;
    }

    .dt-latest-ticker-group {
        gap: 22px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .dt-latest-ticker-group a {
        font-size: 13px;
    }

    .dt-latest-ticker-group a span {
        font-size: 10px;
        padding: 3px 8px;
    }

    .dt-latest-ticker-more {
        width: 100%;
        height: 40px;
        justify-content: center;
        border-left: 0;
        border-top: 1px solid #edf0f5;
    }
}

/* =========================================================
   FINAL WIDE NEWS WEBSITE LAYOUT FIX
   Left/Right खाली space कम करने के लिए
========================================================= */

/* Website को desktop पर wide professional layout दें */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1480px !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1620px !important;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1740px !important;
    }
}

/* Main sections को ज्यादा balanced spacing दें */
.hero-section,
.main-news-section,
.category-strip-section,
.post-page-section,
.static-page-section,
.contact-section {
    width: 100% !important;
}

/* Homepage panels full professional width में दिखें */
.home-section-panel,
.hero-card,
.page-hero-card,
.article-card,
.static-page-card,
.contact-info-card,
.contact-form-card {
    width: 100% !important;
}

/* Header logo और ad area का balance */
.header-main {
    width: 100% !important;
}

.header-ad-box {
    flex: 1 !important;
    justify-content: flex-end !important;
}

/* Navbar full width feel */
.news-navbar {
    width: 100% !important;
}

/* Body background को clean रखें ताकि side blank खराब न लगे */
body {
    background:
        radial-gradient(circle at top left, rgba(226, 27, 45, 0.06), transparent 30%),
        radial-gradient(circle at top right, rgba(15, 107, 255, 0.06), transparent 32%),
        linear-gradient(180deg, #f7f8fc 0%, #f3f6fb 100%) !important;
}

/* Footer को full premium feel दें */
.premium-site-footer {
    width: 100% !important;
}

/* Ultra-wide screen पर content बहुत छोटा न लगे */
@media (min-width: 1900px) {
    .hero-content h2 {
        font-size: 38px !important;
    }

    .section-title h3,
    .home-panel-header h2 {
        font-size: 32px !important;
    }

    .news-card h4 {
        font-size: 19px !important;
    }
}

/* Mobile पर Bootstrap का natural responsive layout रहने दें */
@media (max-width: 991px) {
    .container {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* =========================================================
   FINAL NORMAL PREMIUM LAYOUT FIX
   Wide layout हटाकर balanced news portal layout
========================================================= */

/* Wide patch को override करें */
@media (min-width: 1200px) {
    .container {
        max-width: 1180px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1220px !important;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1240px !important;
    }
}

/* Website को center में premium रखें, फैलने न दें */
body {
    overflow-x: hidden !important;
    background:
        radial-gradient(circle at 8% 18%, rgba(226, 27, 45, 0.07), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(15, 107, 255, 0.07), transparent 28%),
        linear-gradient(180deg, #f6f8fd 0%, #f2f5fb 100%) !important;
}

/* Sections full background में रहें, content container में रहे */
.top-strip,
.site-header,
.news-navbar,
.dt-latest-ticker-section,
.hero-section,
.main-news-section,
.category-strip-section,
.post-page-section,
.static-page-section,
.contact-section,
.premium-site-footer {
    width: 100% !important;
}

/* Main content ज्यादा फैला हुआ न दिखे */
.home-section-panel {
    max-width: 100% !important;
    border-radius: 28px !important;
}

/* Hero और cards को normal premium size */
.hero-card,
.side-headline-card,
.news-card,
.sidebar-widget,
.article-card,
.page-hero-card,
.static-page-card,
.contact-info-card,
.contact-form-card {
    max-width: 100% !important;
}

/* Header balance normal */
.header-main {
    width: 100% !important;
    gap: 24px !important;
}

.brand-box {
    min-width: 210px !important;
}

.brand-box img {
    max-height: 74px !important;
    width: auto !important;
    object-fit: contain !important;
}

.header-ad-box {
    flex: 1 !important;
    justify-content: flex-end !important;
}

.header-ad-box .ad-placeholder {
    max-width: 728px !important;
}

/* Navbar compact professional */
.news-navbar .nav-link {
    padding-left: 11px !important;
    padding-right: 11px !important;
    font-size: 14px !important;
}

.nav-search input {
    width: 165px !important;
}

/* Homepage spacing balanced */
.hero-section {
    padding-top: 28px !important;
}

.main-news-section {
    padding-top: 26px !important;
}

.category-strip-section {
    padding-top: 22px !important;
}

/* Footer normal width में premium दिखे */
.footer-main-card {
    max-width: 100% !important;
}

/* Floating/over stretched feel हटाएं */
.news-card:hover,
.footer-premium-card:hover,
.footer-social-premium a:hover,
.footer-category-grid a:hover,
.footer-premium-links a:hover {
    transform: none !important;
}

/* Mobile पर पूरा natural responsive */
@media (max-width: 991px) {
    .container {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .header-main {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .brand-box {
        min-width: auto !important;
        justify-content: center !important;
    }

    .header-ad-box {
        width: 100% !important;
        justify-content: center !important;
    }

    .nav-search input {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .home-section-panel {
        border-radius: 22px !important;
    }

    .brand-box img {
        max-height: 62px !important;
    }
}
/* =========================================================
   Front Website Advertisement Image Rendering
========================================================= */

.dt-site-ad-link {
    display: inline-block !important;
    max-width: 100% !important;
}

.dt-site-ad-img {
    display: block !important;
    max-width: 100% !important;
    object-fit: cover !important;
    border: 0 !important;
}

.dt-header-ad-img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08) !important;
}

.dt-sidebar-ad-img {
    width: 300px !important;
    max-width: 100% !important;
    height: 250px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
}

.dt-article-ad-img {
    width: 100% !important;
    max-width: 728px !important;
    height: auto !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
}

.header-ad-box a,
.header-ad-box .dt-site-ad-link {
    display: block !important;
    width: 100% !important;
    max-width: 728px !important;
}

.header-ad-box img,
.header-ad-box .dt-header-ad-img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
    object-fit: cover !important;
}

/* Google AdSense / iframe responsive */
.header-ad-box ins,
.header-ad-box iframe,
.sidebar-widget ins,
.sidebar-widget iframe,
.article-ad-box ins,
.article-ad-box iframe {
    max-width: 100% !important;
}

@media (max-width: 767px) {
    .dt-header-ad-img,
    .header-ad-box img,
    .header-ad-box .dt-header-ad-img {
        height: auto !important;
        aspect-ratio: 728 / 90 !important;
        border-radius: 12px !important;
    }

    .dt-sidebar-ad-img {
        height: auto !important;
        aspect-ratio: 300 / 250 !important;
    }
}

/* =========================================================
   Advertisement Auto Fit Final
   किसी भी size की uploaded image section size में fit होगी
========================================================= */

.dt-site-ad-link {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.dt-site-ad-img {
    display: block !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border: 0 !important;
}

/* Header Ad: exact 728x90 */
.header-ad-box,
.header-ad-box .dt-site-ad-link {
    width: 100% !important;
    max-width: 728px !important;
}

.dt-header-ad-img,
.header-ad-box img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08) !important;
}

/* Sidebar Ad: exact 300x250 */
.dt-sidebar-ad-img {
    width: 300px !important;
    max-width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
}

/* Article Ad: exact 728x90 */
.dt-article-ad-img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
}

/* Google AdSense iframe/ins responsive */
.header-ad-box ins,
.header-ad-box iframe,
.sidebar-widget ins,
.sidebar-widget iframe,
.article-ad-box ins,
.article-ad-box iframe {
    max-width: 100% !important;
}

/* Mobile पर aspect ratio maintain रहे */
@media (max-width: 767px) {
    .dt-header-ad-img,
    .header-ad-box img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 728 / 90 !important;
        border-radius: 12px !important;
    }

    .dt-sidebar-ad-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 300 / 250 !important;
    }

    .dt-article-ad-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 728 / 90 !important;
    }
}

/* =========================================================
   FINAL AD NOT CUT FIX
   Banner 728x90 रहेगा लेकिन image कटेगी नहीं
========================================================= */

.header-ad-box img,
.header-ad-box .dt-header-ad-img,
.dt-header-ad-img,
.dt-article-ad-img,
.dt-sidebar-ad-img,
.dt-site-ad-img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #081637 !important;
}

.header-ad-box img,
.header-ad-box .dt-header-ad-img,
.dt-header-ad-img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
}

.dt-article-ad-img {
    width: 728px !important;
    max-width: 100% !important;
    height: 90px !important;
}

.dt-sidebar-ad-img {
    width: 300px !important;
    max-width: 100% !important;
    height: 250px !important;
}

.header-ad-box a {
    display: inline-block !important;
    max-width: 100% !important;
}

@media (max-width: 767px) {
    .header-ad-box img,
    .header-ad-box .dt-header-ad-img,
    .dt-header-ad-img,
    .dt-article-ad-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 728 / 90 !important;
    }

    .dt-sidebar-ad-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 300 / 250 !important;
    }
}