/* ============================================
   NAGAR PALIKA KOTMA — Compact Aesthetic Theme
   Mobile + Desktop, low-scroll layout
   ============================================ */

:root {
    --bg-body: #fdf8f3;
    --bg-card: #ffffff;
    --bg-alt: #f6efe7;
    --bg-blush: #fef0e7;
    --bg-mint: #e6f5f0;
    --text-dark: #1e293b;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --primary: #1a7f64;
    --primary-light: #22a57f;
    --saffron: #e8732a;
    --saffron-dark: #d45e1a;
    --saffron-light: #fef0e7;
    --blue: #2563eb;
    --rose: #e11d48;
    --purple: #7c3aed;
    --border: #e8e0d8;
    --border-light: #f0ebe5;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.09);
    --shadow-hover: 0 18px 48px rgba(15, 23, 42, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 64px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--saffron); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden { display: none !important; }

/* ============================================
   PRELOADER + PARTICLES
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 9999;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    display: flex !important;
    pointer-events: none;
}
.loader-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--border-light);
    border-top-color: var(--saffron);
    animation: spin 1s linear infinite;
    position: relative;
}
.loader-ring-inner {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: var(--primary);
    animation: spin 1.4s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    letter-spacing: 0.3px;
}
.loader-subtext { color: var(--text-muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-section,
.ticker-bar,
.section,
.footer { position: relative; z-index: 1; }

/* ============================================
   NAVBAR — Edge-to-edge on desktop
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    height: var(--nav-h);
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    width: 100%;
    height: 100%;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.brand-svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 14.5px;
    line-height: 1.1;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.1;
    margin-top: 3px;
    letter-spacing: 0.2px;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.2s var(--ease);
    position: relative;
}
.nav-link:hover { color: var(--primary); background: var(--bg-mint); }
.nav-link.active {
    color: var(--saffron);
    background: var(--saffron-light);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12.5px;
    transition: all 0.2s var(--ease);
}
.lang-toggle:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.nav-hamburger span {
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 99;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0.25s;
}
.mobile-menu.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0s;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 8px 16px 16px;
}
.mobile-link {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}
.mobile-link:hover { background: var(--saffron-light); color: var(--saffron); }

/* ============================================
   HERO — Compact, balanced, government-grade
   ============================================ */
.hero-section {
    position: relative;
    padding: calc(var(--nav-h) + 28px) 20px 44px;
    overflow: hidden;
    isolation: isolate;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.42;
    will-change: transform;
}
.hero-shape.shape-1 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--saffron) 0%, transparent 60%);
    top: -260px; right: -200px;
}
.hero-shape.shape-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    bottom: -240px; left: -180px;
}
.hero-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--saffron-dark);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.hero-badge::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.18);
}
.hero-title {
    font-size: clamp(36px, 6.4vw, 64px);
    font-weight: 900;
    line-height: 1.02;
    color: var(--text-dark);
    letter-spacing: -1.6px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gradient-text {
    background: linear-gradient(100deg, var(--saffron) 0%, #f08a3e 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.08em;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 1.5vw, 16.5px);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 16px 14px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.hero-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(232,115,42,0.25), transparent 40%, transparent 60%, rgba(26,127,100,0.25));
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--border-light);
}
.stat-number {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.4px;
}
.stat-plus { color: var(--saffron); font-weight: 800; margin-left: 1px; }
.stat-label {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 115, 42, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232, 115, 42, 0.42); }
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}
.btn-outline:hover { background: var(--text-dark); color: #fff; border-color: var(--text-dark); transform: translateY(-2px); }
.btn-sm { padding: 7px 14px; font-size: 12.5px; }
.btn-full { width: 100%; }

/* ============================================
   TICKER
   ============================================ */
.ticker-bar {
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, #fff, #fff);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    height: 38px;
}
.ticker-label {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--rose), #be123c);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.2px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    position: relative;
}
.ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 12px;
    background: inherit;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.ticker-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 16px;
}
.ticker-track {
    display: inline-flex;
    gap: 30px;
    white-space: nowrap;
    animation: ticker 38s linear infinite;
    color: var(--text-body);
    font-size: 13px;
    font-weight: 500;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 56px 0; position: relative; }
.section-alt {
    background: var(--bg-alt);
    background-image:
        radial-gradient(circle at 100% 0%, rgba(232,115,42,0.06), transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(26,127,100,0.05), transparent 40%);
}
.section-header { text-align: center; margin-bottom: 32px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 5px 10px;
    background: var(--bg-card);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 127, 100, 0.18);
}
.section-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    line-height: 1.1;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--primary));
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ============================================
   NEWS — featured + side-list (no stretching)
   ============================================ */
.news-layout {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 18px;
    align-items: stretch;
}
.news-side {
    align-self: stretch;
    justify-content: space-between;
}
.news-featured {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.news-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-img {
    height: 240px;
    width: 100%;
    display: grid;
    place-items: center;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
}
.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.12), transparent 50%);
    pointer-events: none;
}
.news-img span, .news-compact-img span { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18)); position: relative; z-index: 1; }
.news-body { padding: 16px 20px 18px; display: flex; flex-direction: column; gap: 8px; }
.news-cat {
    align-self: flex-start;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    padding: 4px 10px;
    border-radius: 999px;
}
.news-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}
.news-body p { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.news-date { font-size: 12px; color: var(--text-light); font-weight: 500; }
.news-side { display: flex; flex-direction: column; gap: 10px; }
.news-compact {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.news-compact:hover { transform: translateX(3px); box-shadow: var(--shadow-md); border-color: var(--saffron-light); }
.news-compact-img {
    display: grid;
    place-items: center;
    font-size: 28px;
    position: relative;
    overflow: hidden;
}
.news-compact-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 60%);
}
.news-compact > div:last-child {
    padding: 10px 14px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}
.news-compact h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

/* ============================================
   HORIZONTAL SCROLL WRAPPER (events, business, gallery)
   ============================================ */
.hscroll-wrapper {
    position: relative;
    padding: 0 0 4px;
    -webkit-overflow-scrolling: touch;
}
.hscroll-wrapper::before,
.hscroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.hscroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-body) 10%, transparent);
}
.hscroll-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-body) 10%, transparent);
}
.section-alt .hscroll-wrapper::before {
    background: linear-gradient(90deg, var(--bg-alt) 10%, transparent);
}
.section-alt .hscroll-wrapper::after {
    background: linear-gradient(-90deg, var(--bg-alt) 10%, transparent);
}
.hscroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 8px 24px 18px;
    scrollbar-width: thin;
    cursor: grab;
}
.hscroll-track::-webkit-scrollbar { height: 6px; }
.hscroll-track > * {
    scroll-snap-align: start;
    flex: 0 0 auto;
}
.hscroll-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.hscroll-track.dragging > * { pointer-events: none; }

/* Event card */
.event-card {
    width: 290px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--primary));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.event-card:hover::before { opacity: 1; }
.event-date-pill {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: #fff;
    border-radius: 14px;
    padding: 9px 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(232, 115, 42, 0.35);
    min-width: 56px;
}
.ed-day { font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.ed-month { font-weight: 700; font-size: 10.5px; letter-spacing: 1.2px; opacity: 0.92; margin-top: 3px; }
.event-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.event-meta-line { font-size: 12.5px; color: var(--text-muted); }
.event-desc { font-size: 13px; color: var(--text-body); flex-grow: 1; line-height: 1.5; }
.event-card .btn { align-self: flex-start; margin-top: 4px; }

/* ============================================
   COUNCIL — Adhyaksh + parshad chips
   ============================================ */
.adhyaksh-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 22px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 26px;
    background-image: radial-gradient(at top right, var(--saffron-light), transparent 60%);
}
.adhyaksh-avatar { position: relative; }
.avatar-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, var(--bg-blush));
    border: 3px solid var(--bg-card);
    box-shadow: var(--shadow-md);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.avatar-circle svg { width: 78%; height: 78%; }
.adhyaksh-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.adhyaksh-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.adhyaksh-role { color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.adhyaksh-quote {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
    border-left: 3px solid var(--saffron);
    padding-left: 12px;
    line-height: 1.5;
}

.ward-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
}
.ward-filter-btn {
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s var(--ease);
}
.ward-filter-btn:hover { color: var(--saffron); border-color: var(--saffron); }
.ward-filter-btn.active {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 115, 42, 0.3);
}

.parshad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}
.parshad-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 14px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.parshad-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--saffron);
}
.parshad-card.hidden { display: none; }
.parshad-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-mint));
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 2px solid var(--bg-card);
    box-shadow: var(--shadow-sm);
}
.parshad-info { min-width: 0; flex: 1; }
.parshad-info b {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}
.parshad-info span {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   SERVICES + MAP
   ============================================ */
.services-tabs {
    display: flex;
    width: fit-content;
    margin: 0 auto 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 4px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    gap: 4px;
}
.service-tab {
    padding: 8px 22px;
    border-radius: 999px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.2px;
}
.service-tab:hover { color: var(--text-dark); }
.service-tab.active {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 115, 42, 0.35);
}

.services-map-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    align-items: stretch;
}
.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}
.services-list.hidden { display: none; }
.svc-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
    cursor: pointer;
    position: relative;
}
.svc-card:hover {
    transform: translateX(3px);
    border-color: var(--saffron);
    box-shadow: var(--shadow-md);
}
.svc-emoji {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-mint));
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.svc-info { flex: 1; min-width: 0; }
.svc-info h4 { font-size: 14.5px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.svc-info p { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.svc-price {
    font-weight: 800;
    color: var(--saffron-dark);
    font-size: 16px;
    white-space: nowrap;
}
.svc-price small { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-left: 2px; }
.svc-tag-pvt {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--bg-lavender, #ede9fe);
    color: var(--purple);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.svc-hall { cursor: default; flex-wrap: wrap; }
.svc-hall:hover { transform: none; }
.svc-hall-action {
    display: flex;
    gap: 6px;
    align-items: center;
}
.ward-select-mini {
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-dark);
    font-size: 12.5px;
    font-weight: 500;
    width: 72px;
}
.svc-add {
    border: 2px dashed var(--border);
    background: transparent;
    justify-content: flex-start;
}
.svc-add:hover { border-color: var(--saffron); background: var(--saffron-light); }
.svc-add-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--saffron);
    font-weight: 700;
    flex-shrink: 0;
}

.services-map { display: flex; flex-direction: column; }
.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
    min-height: 400px;
    height: 100%;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}
.map-fullscreen {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--bg-card);
    color: var(--text-dark);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.2s var(--ease);
}
.map-fullscreen:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

/* ============================================
   BUSINESS ZONE
   ============================================ */
.biz-card {
    width: 280px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.biz-img {
    height: 120px;
    display: grid;
    place-items: center;
    font-size: 52px;
    color: rgba(255, 255, 255, 0.94);
    position: relative;
    overflow: hidden;
}
.biz-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.22), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(0,0,0,0.12), transparent 50%);
}
.biz-img > span { position: relative; z-index: 1; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.25)); }
.biz-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.biz-badge {
    align-self: flex-start;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.biz-badge-offer { background: #fee2e2; color: var(--rose); }
.biz-badge-new { background: var(--bg-mint); color: var(--primary); }
.biz-body h4 { font-size: 15.5px; font-weight: 700; color: var(--text-dark); }
.biz-offer { font-size: 13px; color: var(--saffron-dark); font-weight: 600; }
.biz-loc { font-size: 12px; color: var(--text-muted); }
.biz-map-link {
    align-self: flex-start;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.2s var(--ease);
}
.biz-map-link:hover { color: var(--saffron); }

.add-biz-banner {
    margin-top: 24px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 12px 32px rgba(232, 115, 42, 0.3);
    position: relative;
    overflow: hidden;
}
.add-biz-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.add-biz-banner h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; position: relative; }
.add-biz-banner p { font-size: 13.5px; opacity: 0.94; position: relative; }
.add-biz-banner .btn-primary {
    background: #fff;
    color: var(--saffron-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}
.add-biz-banner .btn-primary:hover { background: var(--text-dark); color: #fff; }

/* ============================================
   GALLERY — uniform, refined, with overlay caption
   ============================================ */
.gallery-track { padding-bottom: 22px; align-items: stretch; }
.gal-item {
    width: 220px;
    height: 240px;
    border-radius: var(--radius-lg);
    position: relative;
    display: grid;
    place-items: center;
    font-size: 64px;
    color: rgba(255,255,255,0.94);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
}
.gal-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25), transparent 55%),
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.gal-item > span {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
    transition: transform 0.4s var(--ease);
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gal-item:hover > span { transform: scale(1.1) rotate(-3deg); }
.gal-tall { height: 240px; } /* unified for visual rhythm */
.gal-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 14px 12px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.2px;
}
.gal-cap b {
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 14px; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.c-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.c-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.c-card > span:first-child {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-blush);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.c-card b { color: var(--text-dark); display: block; font-size: 14px; }
.c-card p { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
    height: 240px;
    position: relative;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link-below {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--bg-card);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.map-link-below:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 22px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-body);
    color: var(--text-dark);
    font-size: 14px;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: #cbd5e1;
    padding: 34px 0 20px;
    margin-top: 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}
.footer-brand b {
    color: #fff;
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
}
.footer-brand p { font-size: 13px; opacity: 0.75; max-width: 360px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.footer-links a {
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--saffron); }
.footer-bottom { text-align: center; font-size: 12.5px; opacity: 0.7; }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.modal-overlay.open {
    display: flex;
    animation: fadeIn 0.25s var(--ease);
}
body.modal-open { overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 26px 24px 24px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.25s var(--ease);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: none; }
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-dark);
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: all 0.2s var(--ease);
}
.modal-close:hover { background: var(--rose); color: #fff; transform: rotate(90deg); }
.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-right: 32px;
}
.modal-form .form-group:last-of-type { margin-bottom: 14px; }
.booking-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    padding: 12px 14px;
    background: var(--bg-blush);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    font-size: 13.5px;
}
.booking-summary > span:nth-child(odd) { color: var(--text-muted); font-weight: 500; }
.booking-summary > span:nth-child(even) { color: var(--text-dark); font-weight: 700; text-align: right; }

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.plan-card { cursor: pointer; }
.plan-card input { display: none; }
.plan-c {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    transition: all 0.2s var(--ease);
}
.plan-c b { display: block; font-size: 13px; color: var(--text-dark); margin-bottom: 2px; }
.plan-c span { font-size: 11.5px; color: var(--text-muted); font-weight: 600; }
.plan-card input:checked + .plan-c {
    border-color: var(--saffron);
    background: var(--saffron-light);
}
.plan-card input:checked + .plan-c b { color: var(--saffron-dark); }

/* ============================================
   TOAST + BACK TO TOP
   ============================================ */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(220%);
    background: var(--text-dark);
    color: #fff;
    padding: 12px 20px 12px 14px;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    max-width: calc(100% - 32px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.toast-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.toast-message { font-size: 13.5px; font-weight: 500; }

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--saffron);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(232, 115, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
    z-index: 90;
    display: grid;
    place-items: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--saffron-dark); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   LIVE STREAMING SECTION
   ============================================ */
.nav-link-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rose) !important;
    font-weight: 700;
}
.nav-link-live::after { display: none !important; }
.nav-link-live::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    animation: navLivePulse 1.8s ease-out infinite;
    flex-shrink: 0;
}
@keyframes navLivePulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.live-section {
    position: relative;
    background: radial-gradient(ellipse at top, #1a1530 0%, #0f172a 45%, #0b0d18 100%);
    color: #fff;
    overflow: hidden;
    padding: 68px 0 76px;
}
.live-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(232, 115, 42, 0.22), transparent 45%),
        radial-gradient(circle at 88% 82%, rgba(26, 127, 100, 0.22), transparent 45%),
        radial-gradient(circle at 65% 15%, rgba(124, 58, 237, 0.15), transparent 40%);
}
.live-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.live-section .container,
.live-section .hscroll-wrapper { position: relative; z-index: 1; }
.live-section .section-title { color: #fff; }
.live-section .section-title::after {
    background: linear-gradient(90deg, var(--saffron), var(--rose));
}
.live-section .section-sub {
    max-width: 560px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.section-tag-live {
    background: rgba(225, 29, 72, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(225, 29, 72, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-tag-live::before { display: none; }

.live-dot {
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6);
    animation: livePulse 1.5s ease-out infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(244, 63, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.live-layout {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 22px;
    margin: 36px 0 44px;
}

.live-main { display: flex; flex-direction: column; gap: 14px; }

.live-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(232, 115, 42, 0.22);
}
.live-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(232, 115, 42, 0.55), rgba(225, 29, 72, 0.5), rgba(26, 127, 100, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}
.live-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.live-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(225, 29, 72, 0.95);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.5);
}
.live-badge .live-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); animation-name: liveBadgePulse; }
@keyframes liveBadgePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.live-viewers {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.live-meta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.live-meta-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.live-meta h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}
.live-meta-pill {
    background: rgba(232, 115, 42, 0.18);
    color: #fdba74;
    border: 1px solid rgba(232, 115, 42, 0.35);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.live-meta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.live-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.live-actions .btn { display: inline-flex; align-items: center; gap: 6px; }
.live-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}
.live-section .btn-outline:hover {
    background: #fff;
    color: var(--text-dark);
    border-color: #fff;
}
.live-started {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin-left: auto;
}

.live-side {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.live-side h4 {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.live-side h4::before {
    content: '';
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--rose));
    border-radius: 2px;
}
.live-schedule {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}
.live-sched-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s var(--ease);
}
.live-sched-item:hover {
    background: rgba(232, 115, 42, 0.1);
    border-color: rgba(232, 115, 42, 0.35);
    transform: translateX(2px);
}
.sched-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.sched-time b {
    color: var(--saffron);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.sched-time small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10.5px;
    font-weight: 500;
    margin-top: 2px;
}
.sched-info {
    min-width: 0;
    overflow: hidden;
}
.sched-info strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sched-info span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.sched-remind {
    font-size: 11px;
    font-weight: 600;
    color: var(--saffron);
    background: rgba(232, 115, 42, 0.12);
    border: 1px solid rgba(232, 115, 42, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}
.sched-remind:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}
.sched-remind.active {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}

.live-subscribe {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.live-subscribe b {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}
.live-subscribe span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
}
.yt-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ff0033;
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 14px;
    border-radius: 24px;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.yt-subscribe:hover {
    background: #d90028;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 0, 51, 0.35);
}
.yt-play-icon {
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.live-past-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.live-past-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}
.live-past-head h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.live-see-all {
    color: var(--saffron);
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s var(--ease);
}
.live-see-all:hover { color: #fdba74; }

.live-past-wrapper::before {
    background: linear-gradient(to right, #0b0d18, transparent) !important;
}
.live-past-wrapper::after {
    background: linear-gradient(to left, #0b0d18, transparent) !important;
}

.past-broadcast-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    color: inherit;
}
.past-broadcast-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 115, 42, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.pb-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pb-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}
.pb-emoji {
    font-size: 58px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s var(--ease);
}
.past-broadcast-card:hover .pb-emoji { transform: scale(1.08) rotate(-3deg); }
.pb-play {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(225, 29, 72, 0.95);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding-left: 4px;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.5);
    transition: transform 0.25s var(--ease);
}
.past-broadcast-card:hover .pb-play { transform: scale(1.12); }
.pb-dur {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 2;
}
.pb-body { padding: 13px 14px 14px; }
.pb-body h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pb-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11.5px;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .nav-container { padding: 0 16px; }
    .brand-sub { display: none; }

    .news-layout { grid-template-columns: 1fr; }
    .news-img { height: 180px; }
    .services-map-layout { grid-template-columns: 1fr; }
    .services-list { max-height: none; }
    .map-container { min-height: 320px; }
    .map-container iframe { min-height: 320px; }
    .contact-layout { grid-template-columns: 1fr; }
    .adhyaksh-card { grid-template-columns: 1fr; text-align: center; padding: 22px 18px 28px; }
    .adhyaksh-quote { border-left: none; border-top: 2px solid var(--saffron); padding-left: 0; padding-top: 10px; }
    .footer-top { flex-direction: column; gap: 14px; }

    .live-layout { grid-template-columns: 1fr; gap: 18px; margin: 28px 0 36px; }
    .live-side { padding: 18px 16px 16px; }
    .live-subscribe { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .section { padding: 40px 0; }
    .container { padding: 0 16px; }
    .hero-section { padding: calc(var(--nav-h) + 20px) 16px 28px; }
    .hero-badge { font-size: 10.5px; margin-bottom: 14px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 4px 8px; padding: 12px; }
    .stat-item:nth-child(2)::before,
    .stat-item:nth-child(4)::before { display: block; }
    .stat-item:nth-child(3)::before { display: none; }

    .hscroll-track { padding-left: 16px; padding-right: 16px; gap: 12px; }
    .hscroll-wrapper::before, .hscroll-wrapper::after { width: 24px; }
    .event-card, .biz-card { width: 240px; }
    .gal-item { width: 170px; height: 200px; }
    .gal-tall { height: 200px; }

    .form-row { grid-template-columns: 1fr; }
    .plan-cards { grid-template-columns: 1fr; }
    .add-biz-banner { padding: 18px; flex-direction: column; align-items: flex-start; text-align: left; }
    .add-biz-banner h3 { font-size: 17px; }

    .modal { padding: 22px 18px 20px; border-radius: var(--radius-lg); }
    .modal-title { font-size: 17px; }

    .footer-links { gap: 12px 18px; }
    .section-header { margin-bottom: 24px; }

    .live-section { padding: 48px 0 56px; }
    .live-meta h3 { font-size: 15.5px; }
    .live-started { margin-left: 0; width: 100%; }
    .past-broadcast-card { flex: 0 0 240px; }
    .pb-emoji { font-size: 46px; }
    .pb-play { width: 44px; height: 44px; font-size: 15px; }
    .live-past-head h3 { font-size: 17px; }
}

@media (min-width: 1400px) {
    .nav-container { padding: 0 40px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .ticker-track { animation: none; }
}
