/* ==========================================================================
   CSS Variables & Theme Tokens (India Subdomain News Portal)
   ========================================================================== */
:root {
    --bg-color: #f8f9fa;
    --surface-color: #ffffff;
    --surface-border: #eaeaea;
    --text-primary: #111111;
    --text-secondary: #555555;
    --accent-color: #d32f2f; /* Deep red for news breaking feel */
    --accent-glow: rgba(211, 47, 47, 0.2);
    --whatsapp-color: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);
    
    --nav-height: 70px;
    --ticker-height: 40px;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Route View Switcher */
.subdomain-view {
    display: none;
}
.subdomain-view.active {
    display: block;
}

/* Article Single Page High-Contrast Canvas */
#view-article-detail {
    background-color: #ffffff;
    color: #111827;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#view-article-detail h1,
#view-article-detail h2,
#view-article-detail h3,
#view-article-detail p,
#view-article-detail span {
    color: #111827;
}

#artTitle {
    color: #0f172a !important;
}

#artContent {
    color: #1e293b !important;
    font-size: 1.1rem;
    line-height: 1.85;
}

/* Responsive Full Banner Styling & Slideshow Containers */
.top-banner-slideshow, .middle-edge-banner, .prefooter-slideshow {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Full-Width Edge-to-Edge Banner Wrapper (Zero Side Margins, Zero Border Radius) */
.full-width-banner-wrapper {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

/* Banner Text Responsive Containment & Subtle Zoom Animation */
@keyframes subtleZoomText {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.banner-zoom-text {
    animation: subtleZoomText 4s ease-in-out infinite alternate;
    display: inline-block;
    transform-origin: center left;
    will-change: transform;
}

.full-width-banner-wrapper .hero-carousel-slider {
    min-height: 380px !important;
    height: 380px !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.full-width-banner-wrapper img, .full-width-banner-wrapper .hero-slide img {
    width: 100% !important;
    height: 380px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .full-width-banner-wrapper .hero-carousel-slider,
    .full-width-banner-wrapper img, 
    .full-width-banner-wrapper .hero-slide img {
        min-height: 220px !important;
        height: 220px !important;
    }
}



/* Horizontal Auto-Scrolling Moving Article Cards Marquee */
.horizontal-article-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #020617;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
    display: inline-flex;
    gap: 1.5rem;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-card {
    width: 320px;
    flex-shrink: 0;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    white-space: normal;
    transition: transform 0.2s ease;
}

.marquee-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99,102,241,0.4);
}

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

.marquee-card-body {
    padding: 1rem;
}

.marquee-card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    color: #818cf8;
    text-transform: uppercase;
}

.marquee-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.35rem;
    line-height: 1.3;
}


/* News Card Styling Improvements */
.story-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -3px rgba(0, 0, 0, 0.12);
}

.story-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f1f5f9;
}

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

.story-card:hover .story-thumb img {
    transform: scale(1.04);
}

.story-content {
    padding: 1.25rem;
}

.story-cat {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.story-title, .story-title a {
    color: #0f172a !important;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8rem;
    color: #64748b;
}



h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--surface-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: #D1D5DB !important;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.3);
    text-decoration: none;
}
.nav-brand span:not(.country-tag) {
    color: #D1D5DB !important;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.3);
}

.country-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.35);
    padding: 0.12rem 0.55rem;
    border-radius: 9999px;
    margin-left: 0.2rem;
    text-shadow: none !important;
    text-transform: capitalize;
    transition: all 0.2s ease;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}
.country-tag:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(96, 165, 250, 0.6);
    color: #93c5fd !important;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.currency-badge {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #818cf8;
    white-space: nowrap;
}

.btn-nav-publish-ad {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-nav-publish-ad:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.55);
    color: #ffffff !important;
}

.mob-btn-publish-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.25s ease;
    margin-bottom: 0.5rem;
}

.mob-btn-publish-ad:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.lang-select {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    max-width: 125px;
    white-space: nowrap;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Morph Animation */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Menu Overlay
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}


.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for links */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
}

.mobile-nav-links li a:hover {
    color: var(--accent-color);
}

/* 1. Primary WhatsApp Green Pop-up Button Box */
@keyframes popPulseGreen {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
    }
}

.btn-mobile-whatsapp-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    padding: 0.9rem 1.75rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45) !important;
    margin-top: 1.5rem !important;
    animation: popPulseGreen 2.5s ease-in-out infinite !important;
    transition: all 0.3s ease !important;
}

.btn-mobile-whatsapp-cta svg {
    width: 22px !important;
    height: 22px !important;
    fill: #ffffff !important;
    flex-shrink: 0 !important;
}

.btn-mobile-whatsapp-cta span {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.btn-mobile-whatsapp-cta:hover {
    background-color: #128C7E !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* 2. Secondary Floating Black Box "Meet AI CEO" */
@keyframes floatBlackBox {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8), 0 0 15px rgba(99, 102, 241, 0.3);
    }
}

.btn-mobile-ai-ceo-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    background-color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    margin-top: 0.85rem !important;
    animation: floatBlackBox 3s ease-in-out infinite !important;
    transition: all 0.3s ease !important;
}

.btn-mobile-ai-ceo-cta span {
    color: #ffffff !important;
}

.btn-mobile-ai-ceo-cta:hover {
    background-color: #1e293b !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    color: #ffffff !important;
}

.btn-mobile-connect {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transition-delay: 0.35s;
}

.mobile-menu-overlay.active .btn-mobile-connect {
    opacity: 1;
    transform: translateY(0);
}

.btn-mobile-connect:hover {
    background-color: #b71c1c;
    color: #fff;
}

/* Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   1. Edge-to-Edge Breaking Ticker
   ========================================================================== */
.ticker-wrapper {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: var(--ticker-height);
    background-color: var(--text-primary);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 999;
    border-bottom: 2px solid var(--accent-color);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-badge {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Main Layout Container
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    padding-top: calc(var(--nav-height) + var(--ticker-height)) !important;
    padding-bottom: 0 !important;
}



/* ==========================================================================
   2. Header & Hero Section (News Portal Layout)
   ========================================================================== */
.news-hero-section {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Left: Interactive Hero Carousel */
.hero-carousel-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-carousel-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--shadow-md);
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    transition: transform 6s ease;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide.active .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: #fff;
    width: 100%;
}

.news-tag.hero-tag {
    background: var(--accent-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 95%;
}

.hero-excerpt {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 80%;
    line-height: 1.5;
}

.btn-read-full {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.btn-read-full:hover {
    background: #b71c1c;
    color: #fff;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: #111;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-control:hover {
    background: #fff;
}

.carousel-control.prev { left: 1rem; }
.carousel-control.next { right: 1rem; }

.carousel-pagination {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.carousel-pagination .dot.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel-slider {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
    .hero-content {
        padding: 1.5rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-excerpt {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .btn-read-full {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Category Filter Shortcuts */
.hero-category-filters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.filter-icon {
    font-size: 1.5rem;
}

.filter-text {
    display: flex;
    flex-direction: column;
}

.filter-text span {
    font-weight: 700;
    font-size: 0.95rem;
}

.filter-text small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.filter-btn:hover .filter-text small, .filter-btn.active .filter-text small {
    color: #aaa;
}

/* Right: Trending Now Sidebar */
.trending-sidebar {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.red-bar {
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    display: inline-block;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.trending-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--surface-border);
}

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

.trend-number {
    background: #f1f5f9;
    color: #111;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.trending-item:nth-child(1) .trend-number {
    background: var(--accent-color);
    color: #fff;
}

.trend-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trend-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.trend-title {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.trending-item:hover .trend-title {
    color: var(--accent-color);
}

.trend-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.view-all-link {
    display: block;
    text-align: center;
    padding-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-top: 1px solid var(--surface-border);
}

.view-all-link:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   3. Top Stories Grid & Newsletter Box
   ========================================================================== */
.top-stories-section {
    margin-bottom: 4rem;
}

.top-stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.stories-filters {
    display: flex;
    gap: 1.5rem;
}

.stories-filters span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.stories-filters span:hover {
    color: var(--text-primary);
}

.stories-filters span.active {
    background: var(--accent-color);
    color: #fff;
}

.top-stories-layout {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 1.5rem;
}

.top-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.secondary-news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.story-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.story-card:hover .story-thumb img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.story-title {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--surface-border);
    padding-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bookmark-icon {
    cursor: pointer;
    font-size: 1.1rem;
}

/* Newsletter Box */
.newsletter-box {
    background: #0f172a;
    color: #fff;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.nl-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nl-form input {
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-subscribe {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: #b71c1c;
}

/* ==========================================================================
   4. Large Slide Show Middle Banner Section
   ========================================================================== */
.middle-banner-carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: auto;
    aspect-ratio: 25 / 7;
    max-height: 320px;
    overflow: hidden;
    margin-bottom: 4rem;
    background: #000;
}

@media (max-width: 768px) {
    .middle-banner-carousel {
        aspect-ratio: 21 / 9;
        max-height: 200px;
    }
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-bg {
    position: absolute;
    inset: 0;
    transition: transform 6s ease;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

.banner-slide.active .banner-bg {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.banner-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f1f5f9;
}

.btn-banner {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: #fff;
    color: #000;
}

.banner-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: #111;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-control:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.banner-control.prev { left: 2rem; }
.banner-control.next { right: 2rem; }

.banner-pagination .b-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-pagination .b-dot.active {
    background: #fff;
}

/* ==========================================================================
   5. Secondary News Grid
   ========================================================================== */
.secondary-news-section {
    margin-bottom: 4rem;
}

/* ==========================================================================
   High-Converting WhatsApp Channel Invitation Banner
   ========================================================================== */
.whatsapp-invite-banner {
    position: relative;
    background: #0f172a;
    border-radius: 16px;
    padding: 3rem;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.whatsapp-bg-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--whatsapp-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.whatsapp-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.whatsapp-text h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.whatsapp-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.whatsapp-benefits {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.whatsapp-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #f1f5f9;
}

.whatsapp-benefits span {
    color: var(--whatsapp-color);
    font-weight: bold;
}

.whatsapp-action {
    flex-shrink: 0;
}

.btn-whatsapp-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--whatsapp-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--whatsapp-glow);
    position: relative;
}

.btn-whatsapp-pulse:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 25px var(--whatsapp-glow);
}

.btn-whatsapp-pulse svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   Floating AI CEO CTA Button (Sleek Solid Black & White 2D Vector Robot)
   ========================================================================== */
@keyframes floatPulseBlack {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(99, 102, 241, 0.25);
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(99, 102, 241, 0.45);
    }
}

.btn-floating-ai-ceo-black {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background-color: #09090b !important;
    color: #ffffff !important;
    padding: 0.95rem 2.2rem !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    animation: floatPulseBlack 3s ease-in-out infinite !important;
    backdrop-filter: blur(10px) !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.btn-floating-ai-ceo-black:hover {
    background-color: #18181b !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    transform: translateY(-10px) scale(1.06) !important;
}

/* ==========================================================================
   Slideshow Dots Navigation
   ========================================================================== */
.slideshow-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-dots .dot.active {
    width: 32px;
    background: #6366f1;
    border-color: #818cf8;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

/* ==========================================================================
   Footer Publish AD Button
   ========================================================================== */
.btn-publish-ad {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    background-color: #000000 !important;
    border: 1px solid #6366f1 !important;
    color: #818cf8 !important;
    padding: 0.65rem 1.4rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.25) !important;
    transition: all 0.3s ease !important;
}

.btn-publish-ad:hover {
    background-color: #6366f1 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Dark Industrial Chic Overrides */
.story-card {
    background-color: #18181b !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.story-title a {
    color: #ffffff !important;
}

/* Currency Badge Hide Fix */
.currency-badge {
    display: none !important;
}

/* Article Detail High Contrast Light Gray (#E2E8F0) Text Overrides */
#view-article-detail article {
    background-color: #18181b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
}

#artContent,
#artContent p,
#artContent span,
#artContent div {
    color: #e2e8f0 !important;
    font-size: 1.1rem !important;
    line-height: 1.85 !important;
}

#artContent p:first-child {
    font-weight: 500 !important;
    margin-bottom: 1.25rem !important;
}

#artDate, #artReadTime {
    color: #cbd5e1 !important;
}


@keyframes floatPulseBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), 0 0 15px rgba(99, 102, 241, 0.2);
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 16px 35px rgba(99, 102, 241, 0.65), 0 0 25px rgba(99, 102, 241, 0.4);
    }
}

.btn-floating-ai-ceo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3730a3 100%) !important;
    color: #ffffff !important;
    padding: 1rem 2.2rem !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    animation: floatPulseBounce 3s ease-in-out infinite !important;
    backdrop-filter: blur(8px) !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.btn-floating-ai-ceo:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #312e81 100%) !important;
    color: #ffffff !important;
    transform: translateY(-10px) scale(1.06) !important;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transition-fast);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}
.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-primary);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.footer a {
    color: #ccc;
    text-decoration: underline;
}
.footer a:hover {
    color: #fff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .news-hero-section {
        grid-template-columns: 1fr;
    }
    .hero-category-filters {
        grid-template-columns: repeat(2, 1fr);
    }
    .top-stories-layout {
        grid-template-columns: 1fr;
    }
    .top-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .secondary-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 0.5rem !important;
    }
    .nav-brand {
        font-size: 1.05rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    .nav-controls {
        gap: 0.3rem !important;
    }
    .currency-badge {
        font-size: 0.65rem !important;
        padding: 0.18rem 0.35rem !important;
    }
    .lang-select {
        font-size: 0.7rem !important;
        padding: 0.18rem 0.35rem !important;
        max-width: 92px !important;
    }
    .container {
        padding: 0 1.5rem; /* Equivalent to px-6 */
    }
    .hamburger {
        display: flex !important;
        margin-left: 0.2rem;
    }
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-category-filters {
        grid-template-columns: 1fr;
    }
    .top-stories-grid {
        grid-template-columns: 1fr;
    }
    .secondary-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .whatsapp-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .whatsapp-action {
        width: 100%;
    }
    .btn-whatsapp-pulse {
        width: 100%;
        justify-content: center;
    }
    .news-hero-section {
        grid-template-columns: 1fr;
    }
    .middle-banner-carousel {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 0.35rem !important;
    }
    .nav-brand {
        font-size: 0.88rem !important;
        white-space: nowrap !important;
    }
    .currency-badge {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.25rem !important;
    }
    .lang-select {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.25rem !important;
        max-width: 82px !important;
    }
    .hero-title {
        font-size: 1.5rem;
    }
}

/* Mobile Optimization for Global Directory Heading */
.directory-section-title,
.global-directory-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .directory-section-title,
    .global-directory-heading {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        letter-spacing: -0.01em !important;
        margin-bottom: 0.35rem !important;
        text-align: center !important;
    }
}

/* Mobile and Tablet Optimization for Country Card Buttons */
@media (max-width: 1024px) {
    .country-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .country-card .btn-group,
    .country-card .card-actions,
    .country-card-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 0.45rem !important;
    }

    .join-channel-btn,
    .visit-portal-btn,
    .btn-whatsapp-small,
    .btn-portal,
    .card-cta-button {
        width: auto !important; /* Disables full width */
        max-width: 200px !important; /* Sets a reasonable maximum width */
        min-width: 140px !important; /* Ensures minimum usability */
        padding: 8px 15px !important; /* Reduced padding */
        font-size: 0.85rem !important; /* Smaller text size */
        font-weight: 600 !important;
        border-radius: 50px !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
    }

    .btn-whatsapp-small svg,
    .join-channel-btn svg {
        width: 15px !important;
        height: 15px !important;
    }

    /* Mobile and Tablet Optimization for Hero Section & Human Image */
    .ceo-banner,
    .hero-image-container,
    #anoop-avatar-img {
        background-position: center center !important;
        background-size: cover !important;
        min-height: 520px;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .ceo-banner-content {
        padding: 6.5rem 1.25rem 2.5rem 1.25rem !important;
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, transparent 100%) !important;
    }

    .ceo-title,
    #ai-global-ceo-text {
        font-size: clamp(1.85rem, 6vw, 2.75rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.35rem !important;
        animation: zoomIn 0.8s ease-out forwards !important;
    }

    .ceo-tagline {
        font-size: clamp(1rem, 3.5vw, 1.35rem) !important;
        letter-spacing: 0.04em !important;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sticky Summary / Fixed Bottom Bar */
.ad-summary-bar,
.fixed-bottom-bar,
.footer-calculation-banner,
.footer-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    /* Mobile Spacing for Bottom Fixed Calculation Bar */
    .ad-summary-bar,
    .fixed-bottom-bar,
    .footer-calculation-banner,
    .footer-sticky-banner {
        padding: 8px 14px !important; /* Reduced from default padding */
        gap: 0.35rem !important;
        flex-direction: column !important;
        align-items: stretch !important;
        line-height: 1.2 !important;
    }

    .ad-summary-bar .summary-details,
    .fixed-bottom-bar .summary-details,
    .footer-calculation-banner .summary-details {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.2rem 0.6rem !important;
        width: 100% !important;
        line-height: 1.2 !important;
    }

    .ad-summary-bar .summary-item,
    .fixed-bottom-bar .summary-item,
    .footer-calculation-banner .summary-item {
        font-size: 0.72rem !important;
        color: #94a3b8 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .ad-summary-bar .summary-item span,
    .fixed-bottom-bar .summary-item span,
    .footer-calculation-banner .summary-item span {
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 0.75rem !important;
    }

    .ad-summary-bar .summary-total,
    .fixed-bottom-bar .summary-total,
    .footer-calculation-banner .summary-total {
        grid-column: 1 / -1 !important;
        font-size: 0.88rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin-top: 0.1rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .ad-summary-bar .summary-total span,
    .fixed-bottom-bar .summary-total span,
    .footer-calculation-banner .summary-total span {
        font-size: 0.95rem !important;
        color: #10b981 !important;
    }

    .ad-summary-bar .btn-primary,
    .ad-summary-bar button[type="submit"],
    .fixed-bottom-bar .btn-primary,
    .footer-calculation-banner .btn-primary {
        width: 100% !important;
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        border-radius: 6px !important;
        min-height: 32px !important;
        height: 32px !important;
        margin-top: 0.15rem !important;
    }
}

