

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #1A202C;
    background-color: #FAFAFB;
    position: relative;
}

:root {
    --bjp-saffron: #FF9933;
    --bjp-bright-orange: #FF5500;
    --bjp-green: #138808;
    --bjp-neon-green: #00FF66;
    --bjp-purple: #7928CA;
    --bjp-bright-blue: #0070F3;
    --charcoal-dark: #111625;
    --theme-navy: #0B1F3A;
    --theme-saffron: #F57C00;
    --bjp-navy: #0B1F3A;
    --social-border: rgba(11, 31, 58, 0.1);
    --light-glass-panel: rgba(255, 255, 255, 0.85);
    --light-glass-border: rgba(11, 31, 58, 0.1);
}

section {
    overflow: hidden;
}


.header-social-links {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}
.header-social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}
.header-social-links a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
.icon-facebook { color: #1877F2; }
.icon-instagram { color: #E1306C; }
.icon-twitter-x { color: #000000; }
.icon-youtube { color: #FF0000; }


.main-content-layout.dynamic-gradient-mesh {
    position: relative;
    background: #FAFAFB;
    overflow: hidden;
    width: 100%;
}

.main-content-layout.dynamic-gradient-mesh::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
    background: radial-gradient(circle at 15% 25%, rgba(255, 153, 51, 0.12) 0%, transparent 35%),
                radial-gradient(circle at 85% 15%, rgba(19, 136, 8, 0.12) 0%, transparent 35%),
                radial-gradient(circle at 30% 75%, rgba(255, 85, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 75% 85%, rgba(121, 40, 202, 0.06) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, rgb(255, 255, 255) 0%, transparent 60%);
    animation: premiumMeshEngine 25s ease-in-out infinite alternate;
    pointer-events: none;
}


.site-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 70vmin;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("BJP.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@keyframes premiumMeshEngine {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(2%, -4%) rotate(3deg) scale(1.03); }
    66% { transform: translate(-3%, 2%) rotate(-2deg) scale(0.97); }
    100% { transform: translate(1%, -1%) rotate(1deg) scale(1.01); }
}

.chapter-content-card, .scheme-card, .news-card, .journey-timeline-section, .life-summary-editorial {
    position: relative;
    z-index: 2;
}


.timeline-section-heading,
.cool-heading,
.section-main-heading,
.chapter-content-card h3,
.scheme-card h3,
.event-title {
    color: #111625 ; 
    opacity: 1 ;      
    text-shadow: none ; 
}

.section-badge, 
.editorial-tagline, 
.journey-badge {
    color: var(--bjp-bright-orange) ;
    opacity: 1 ;
}

.text-saffron { color: var(--bjp-saffron) ; }
.text-green { color: var(--bjp-green) ; }
.text-purple { color: var(--bjp-purple) ; }
.text-white { color: #0284c7 ; }

.top-tricolor {
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, var(--bjp-saffron) 33%, #FFFFFF 33%, #FFFFFF 66%, var(--bjp-green) 66%);
}

.main-header{
    width:100%;
    background:linear-gradient(to right, rgba(215,154,78,.75) 0%, rgba(255,255,255,.98) 35%, rgba(255,255,255,.98) 65%, rgba(19,136,8,.65) 100%);
    position:sticky;
    top:0;
    z-index:9999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 5%;
    backdrop-filter:blur(12px);
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.header-logo-zone { display: flex; align-items: center; gap: 15px; }
.header-text-zone { display: flex; flex-direction: column; }
.bjp-logo-img { height: 48px; width: auto; object-fit: contain; }

.leader-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #111, var(--bjp-bright-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.party-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--bjp-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-actions-wrapper{
    display:flex;
    align-items:center;
    gap:25px;
}

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

.nav-menu a{
    text-decoration:none;
    color:#4A5568;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--bjp-saffron);
}


.menu-toggle {
    background: transparent ;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.menu-toggle span {
    background-color: #333; 
    
}


.live-ticker-banner {
    background: #111625;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--bjp-green);
}

.ticker-label-tag {
    background: linear-gradient(to right, var(--bjp-bright-orange), var(--bjp-saffron));
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    white-space: nowrap;
    z-index: 10;
}

.ticker-window-track { width: 100%; overflow: hidden; display: flex; align-items: center; }
.ticker-scroller-engine { 
    display: flex; 
    white-space: nowrap; 
    
    animation: scrollTicker 20s linear infinite; 
    
    width: max-content; 
}
.ticker-scroller-engine span { color: #FFF; font-size: 13px; font-weight: 600; text-shadow: 0 0 8px rgba(255,255,255,0.2); }

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


.hero-slider-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


@media (max-width: 768px) {
    .hero-slider-container {
        height: auto; 
        aspect-ratio: 16 / 9; 
    }

    .slide-bg {
        background-size: cover; 
        background-position: center center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        aspect-ratio: 16 / 9; 
    }
}

.hero-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 3;
}


.life-summary-editorial { padding: 120px 5% 80px 5%; }
.editorial-hero-block{
    max-width:1300px;
    margin:0 auto 100px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
}
.editorial-image-wrapper{
    flex:1;
    max-width:550px;
    position:relative;
}
.editorial-image{
    width:100%;
    aspect-ratio:4/5;
    height:auto;
    object-fit:cover;
    border-radius:18px;
}

.graphic-backer-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-left: 6px solid var(--bjp-saffron);
    border-top: 6px solid var(--bjp-saffron);
    z-index: -1;
    border-radius: 12px 0 0 0;
}

.editorial-text-plate{
    flex:1;
    position:relative;
    width:auto;
    right:auto;
    padding:60px;
}

.editorial-tagline { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--bjp-green); letter-spacing: 3px; display: block; margin-bottom: 12px; }
.editorial-title{ font-size:clamp(2rem,5vw,3.2rem); line-height:1.15; }
.editorial-line-accent { width: 80px; height: 3px; background-color: var(--bjp-saffron); margin: 20px 0; }
.editorial-lead-quote{ font-size:clamp(1rem,2vw,1.3rem); font-style: italic; font-weight: 600; margin-bottom: 15px; }
.editorial-body-text{ font-size:clamp(.95rem,1.6vw,1.05rem); line-height:1.9; color: #4A5568; }


.chapters-showcase-wrapper {
    position: relative;
    width: 100%;
    background: #f8fafc;
    padding: 90px 0;
    overflow: hidden;
}
.chapters-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.chapters-header-block {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}
.chapters-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bjp-saffron);
    display: inline-block;
    margin-bottom: 10px;
}
.chapters-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--bjp-navy);
    margin: 0;
}
.tricolor-divider-line {
    display: flex;
    width: 180px;
    height: 4px;
    margin: 20px auto 0 auto;
    border-radius: 4px;
    overflow: hidden;
}
.line-saffron { flex: 1; background: var(--bjp-saffron); }
.line-white   { flex: 1; background: #ffffff; box-shadow: inset 0 0 1px rgba(0,0,0,0.2); }
.line-green   { flex: 1; background: var(--bjp-green); }

.chapters-stage-viewport {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
}
.chapter-view-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 1;
}
.chapter-view-slide.active-chapter {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
}
.chapter-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.08);
    transition: transform 5s ease;
}
.chapter-view-slide.active-chapter .chapter-bg-image {
    transform: scale(1);
}
.chapter-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}
.chapter-glass-card {
    position: relative;
    z-index: 3;
    background: var(--light-glass-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 6px solid var(--bjp-saffron);
    border-top: 1px solid var(--light-glass-border);
    border-right: 1px solid var(--light-glass-border);
    border-bottom: 1px solid var(--light-glass-border);
    border-radius: 0 20px 20px 0;
    padding: 50px;
    width: min(580px,90%);
    box-shadow: 15px 0 35px rgba(11, 31, 58, 0.1);
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, opacity 0.6s ease 0.1s;
}
.chapter-view-slide.active-chapter .chapter-glass-card {
    transform: translateX(0);
    opacity: 1;
}
.chapter-view-slide[data-theme="white"] .chapter-glass-card { border-left-color: #7dd3fc; }
.chapter-view-slide[data-theme="green"] .chapter-glass-card { border-left-color: var(--bjp-green); }

.chapter-index-flag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.chapter-glass-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bjp-navy);
    margin: 0 0 20px 0;
}
.chapter-glass-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}
.chapters-track-navigator {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}
.chapter-nav-node {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 58, 0.08);
    padding: 20px;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.chapter-nav-node:hover {
    background: #f1f5f9;
    border-color: rgba(11, 31, 58, 0.2);
    transform: translateY(-3px);
}
.chapter-nav-node.active-node {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(11, 31, 58, 0.08);
}
.chapter-nav-node.active-node:nth-child(1) { border-bottom: 4px solid var(--bjp-saffron); }
.chapter-nav-node.active-node:nth-child(2) { border-bottom: 4px solid #94a3b8; }
.chapter-nav-node.active-node:nth-child(3) { border-bottom: 4px solid var(--bjp-green); }

.chapter-nav-node span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.chapter-nav-node h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bjp-navy);
    margin: 0;
}


.journey-heading-container { text-align: center; margin-top: 60px; }
.cool-heading { font-family: 'Poppins', sans-serif; font-size: 4.5rem; font-weight: 900; text-transform: uppercase; background: linear-gradient(to right, var(--bjp-bright-orange), var(--bjp-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.journey-timeline-section { padding: 40px 5% 80px 5%; }
.timeline-wrapper { max-width: 1100px; margin: 0 auto; background: #FFF; padding: 40px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.timeline-header-inline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.journey-badge { background: #111625; color: #FFF; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 4px; letter-spacing: 1px; }

.slider-arrows { display: flex; gap: 10px; }
.nav-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #CBD5E0; background: #FFF; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.nav-arrow:hover { background: var(--bjp-saffron); color: #FFF; border-color: var(--bjp-saffron); box-shadow: 0 4px 12px rgba(255,153,51,0.3); }

.years-nav-container { border-bottom: 2px solid #EDF2F7; padding-bottom: 15px; margin-bottom: 40px; }
.years-track { display: flex; justify-content: space-between; overflow-x: auto; gap: 15px; }
.year-node { background: none; border: none; font-weight: 700; color: #A0AEC0; cursor: pointer; position: relative; font-size: 15px; padding: 0 4px; }
.year-node::after { content: ''; position: absolute; bottom: -21px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background-color: #E2E8F0; border-radius: 50%; transition: all 0.3s; }
.year-node.active { color: var(--bjp-bright-orange); font-size: 17px; }
.year-node.active::after { background-color: var(--bjp-bright-orange); width: 14px; height: 14px; box-shadow: 0 0 10px rgba(255,85,0,0.5); }

.journey-slider-window { overflow: hidden; }
.journey-slides-track { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.journey-slide { min-width: 100%; display: flex; gap: 50px; opacity: 0.1; transition: opacity 0.4s; }
.journey-slide.active { opacity: 1; }

.slide-visual-side { flex: 1; position: relative; }
.slide-img { width: 100%; height: 340px; object-fit: contain; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.giant-year-watermark { position: absolute; bottom: -10px; right: 10px; font-family: 'Poppins', sans-serif; font-size: 90px; font-weight: 900; color: var(--bjp-saffron); opacity: 0.12; }

.slide-info-side { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.event-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin-bottom: 12px; color: #1A202C; font-weight: 700; }
.event-description { font-size: 15px; color: #4A5568; line-height: 1.7; margin-bottom: 20px; }
.read-more-link { text-decoration: none; color: var(--bjp-bright-orange); font-weight: 700; font-size: 14px; }


.initiatives-showcase-container {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
}
.showcase-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
.showcase-badge {
    background: rgba(245, 124, 0, 0.1);
    color: var(--theme-saffron);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 124, 0, 0.25);
    display: inline-block;
    margin-bottom: 12px;
}
.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--theme-navy);
    letter-spacing: -0.5px;
    margin: 0;
}
.initiatives-window-viewport {
    position: relative;
    max-width: 1200px;
    height: 520px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 5;
}
.initiatives-engine-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.initiative-show-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.initiative-show-slide.active-slide {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.slide-backdrop-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    z-index: 1;
}
.slide-backdrop-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glass-details-card {
    position: relative;
    z-index: 10;
    background: rgba(11, 31, 58, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 500px;
    margin-left: 40px;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.initiative-show-slide.active-slide .glass-details-card {
    transform: scale(1);
    opacity: 1;
}
.glass-details-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 12px 0;
}
.glass-details-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 25px 0;
}
.card-metrics-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}
.metric-row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}
.metric-row-item i { color: var(--theme-saffron); }
.explore-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-saffron);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}
.explore-action-btn:hover {
    background: #e67300;
    transform: translateY(-2px);
}
.showcase-engine-footer {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}
.showcase-nav-arrows { display: flex; gap: 12px; }
.showcase-arrow {
    background: #ffffff;
    border: 1px solid rgba(11, 31, 58, 0.15);
    color: var(--theme-navy);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.showcase-arrow:hover {
    background: var(--theme-navy);
    color: #ffffff;
    border-color: var(--theme-navy);
}
.footer-controls-right { display: flex; align-items: center; gap: 25px; }
.dots-indicator-row { display: flex; gap: 8px; }
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}
.indicator-dot.active-dot {
    background: var(--theme-saffron);
    transform: scale(1.3);
}
.engine-progress-frame {
    width: 120px;
    height: 3px;
    background: rgba(11, 31, 58, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
.engine-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--theme-saffron);
}

.register-face-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register-face-btn:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    transform: translateY(-1px);
}

.register-face-btn:active {
    transform: translateY(0);
}



.glimpse-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}
.glimpse-layout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin-top: 25px;
}
.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}
.gallery-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bjp-navy);
    margin: 0;
    position: relative;
}
.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--bjp-saffron);
}
.view-all-link {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.photos-subgrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.main-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.side-photos-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-card:hover .gallery-img {
    transform: scale(1.05);
}
.photo-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.fb-widget-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}


.fb-widget-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}


.fb-tab-pill {
    background: #bf9456 ;
    color: #ffffff ;
    padding: 10px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(191, 148, 86, 0.3);
    text-align: center;
}


.fb-feed-viewport {
    width: 100%;
    height: 400px; 
    padding: 0 16px 20px 16px;
    box-sizing: border-box;
    overflow: hidden;
    background: #ffffff;
}


.fb-iframe-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}


.fb-iframe-mask iframe {
    position: absolute;
    top: -62px; 
    left: 0;
    width: 100% ;
    min-width: 100% ;
    height: calc(100% + 62px) ; 
    border: none;
    display: block;
}


@media (max-width: 768px) {
    .fb-feed-viewport {
        height: 380px; 
        padding: 0 12px 16px 12px;
    }
}

@media (max-width: 480px) {
    .fb-widget-card {
        border-radius: 16px; 
    }
    .fb-widget-header {
        padding: 15px;
    }
    .fb-tab-pill {
        padding: 8px 28px;
        font-size: 0.85rem;
    }
    .fb-feed-viewport {
        height: 350px; 
        padding: 0 8px 12px 8px;
    }
}

.press-section { padding: 60px 0 120px 0; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.press-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 26px; 
    width: 100%;
}

.press-header-row {
    max-width: 1200px;
    margin: 60px auto 25px auto;
    padding: 0 20px 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #f1f5f9;
    font-family: 'Poppins', sans-serif;
}

.press-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B1F3A;
    margin: 0;
    position: relative;
}

.press-section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 120px;
    height: 4px;
    background: #FF9933;
}

.press-view-all-link {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.news-card { background: #FFF; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #EDF2F7; transition: all 0.3s; }
.news-image-area { width: 100%; height: 200px; overflow: hidden; }
.news-clip-img { width: 100%; height: 100%; object-fit: cover; }
.news-info-area { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
.news-card-title { font-size: 16px; color: #1A202C; font-weight: 700; line-height: 1.4; margin-bottom: 20px; }
.news-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #EDF2F7; padding-top: 14px; }
.news-date { font-size: 13px; color: #718096; }
.news-share-btn { background: none; border: none; color: #A0AEC0; cursor: pointer; font-size: 15px; }

.hover-glow-saffron:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(255,153,51,0.12); border-color: rgba(255,153,51,0.25); }
.hover-glow-green:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(19,136,8,0.12); border-color: rgba(19,136,8,0.25); }
.hover-glow-purple:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(121,40,202,0.1); border-color: rgba(121,40,202,0.25); }
.news-card-link { text-decoration: none; color: inherit; }


.premium-pretty-footer {
    background-color: var(--charcoal-dark);
    color: #E2E8F0;
    position: relative;
    padding: 80px 5% 30px 5%;
    z-index: 50;
    overflow: hidden;
}

.footer-brand{
    display:flex;
    align-items:flex-start;
    gap:45px;
}

.footer-bjp-logo{
    width:180px;
    min-width:180px;
    height:auto;
    object-fit:contain;
}

.footer-brand-content{
    align-items:center;
    text-align:center;

    border-left:none ;
    padding-left:0 ;
}

.footer-brand h2{
    font-size:42px;
    line-height:1.15;
    color:#fff;
    margin-bottom:16px;
    font-weight:700;
}

.footer-brand h4{
    font-size:18px;
    color:#ff9933;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:10px;
}
.footer-brand span{
    color:#d4d4d4;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    margin-bottom:24px;
}

.footer-brand p{
    color:#b8c1d2;
    font-size:15px;
    line-height:1.8;
    max-width:360px;
}

.links-col,
.newsletter-col{
    border-left:1px solid rgba(255,255,255,.12);
    padding-left:50px;
}

.footer-social{
    margin-bottom:30px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#1d2744;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

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


.footer-top-accent { position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--bjp-saffron), #FFF, var(--bjp-green)); }
.footer-main-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr;
    gap:55px;
    align-items:flex-start;
    padding-bottom:55px;
}

.footer-col h4{
    font-size:15px;
}
.footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 35px; height: 3px; background-color: var(--bjp-saffron); border-radius: 2px; }

.footer-logo-block { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-lotus { height: 45px; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,153,51,0.3)); }
.footer-logo-block h3 { font-family: 'Poppins', sans-serif; font-size: 20px; color: #FFF; font-weight: 700; }
.footer-logo-block p { font-size: 12px; color: var(--bjp-saffron); font-weight: 600; text-transform: uppercase; }
.brand-motto-text { font-size: 13.5px; line-height: 1.6; color: #A0AEC0; margin-bottom: 24px; }

.footer-social-strip{
    display:flex;
    gap:16px;
}
.social-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#1f2946;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.35s;
    font-size:17px;
}
.social-circle:hover { transform: translateY(-3px); color: #FFF; }
.x-tw:hover { background-color: #000000; }
.fb:hover { background-color: #1877F2; }
.yt:hover { background-color: #FF0000; }
.wa:hover { background-color: #25D366; }

.footer-links-grid{
    display:flex;
    gap:45px;
}

.footer-links-grid a{
    font-size:15px;
}

.footer-links-grid li{
    margin-bottom:18px;
}
.footer-links-grid ul { list-style: none; width: 100%; }
.footer-links-grid ul li { margin-bottom: 12px; }
.footer-links-grid ul li a { text-decoration: none; color: #A0AEC0; transition: color 0.3s ease; }
.footer-links-grid ul li a:hover { color: var(--bjp-saffron); }

.contact-info-links p { font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; color: #CBD5E0; display: flex; gap: 10px; align-items: flex-start; }
.contact-info-links p i { color: var(--bjp-saffron); margin-top: 3px; }

.news-pitch{
    font-size:15px;
    line-height:1.7;
}

.footer-subscribe-form { display: flex; position: relative; width: 100%; }
.footer-subscribe-form input{
    height:54px;
    font-size:15px;
}

.footer-subscribe-form button{
    width:54px;
}
.footer-subscribe-form button:hover { background: var(--bjp-bright-orange); }

.footer-bottom-bar{
    max-width:1400px;
    margin:auto;
    padding-top:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-policy-links{
    display:flex;
    align-items:center;
}

.footer-policy-links a{
    color:#718096;
    text-decoration:none;
    padding:0 18px;
    position:relative;
}

.footer-policy-links a:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:18px;
    background:rgba(255,255,255,.18);
}

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



@media (max-width: 992px) {
    .main-header { 
        padding: 15px 30px; 
    }
    .nav-menu { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 35px;
        gap: 22px;
        box-shadow: -10px 0 40px rgba(0,0,0,.15);
        transition: right .35s ease;
        z-index: 10000;
    }
    .nav-menu.active { 
        right: 0; 
    }
    .nav-menu a { 
        font-size: 16px; 
        width: 100%; 
        padding: 10px 0; 
        border-bottom: 1px solid #eee; 
    }
    .menu-toggle { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        z-index: 10001; 
    }
    .header-social-links { 
        display: none ; 
    }
    
    body.menu-open { 
        overflow: hidden; 
    }
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 9999;
    }
    .mobile-overlay.active { 
        opacity: 1; 
        visibility: visible; 
    }

    .hero-slider-container { 
        height: auto; 
        aspect-ratio: 16 / 9; 
        min-height: unset; 
    }
    .hero-content-wrapper { 
        justify-content: center; 
        text-align: center; 
        padding: 0 40px; 
    }
    .leader-title { 
        font-size: 22px; 
    }

    .editorial-hero-block { 
        flex-direction: column; 
        gap: 40px; 
    }
    .editorial-image-wrapper { 
        max-width: 650px; 
        width: 100%; 
    }
    .editorial-text-plate { 
        width: 100%; 
        padding: 45px; 
    }
    
    .chapters-main-title { 
        font-size: 2.5rem; 
    }
    .chapters-stage-viewport {
        min-height: unset;
        height: auto;
    }
    .chapter-view-slide {
        position: relative;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: opacity 0.5s ease;
    }
    .chapter-view-slide.active-chapter {
        opacity: 1;
        visibility: visible;
        height: auto;
    }
    .chapter-bg-image {
        position: relative;
        width: 100%;
        height: 250px;
    }
    .chapter-glass-card { 
        width: 100%; 
        padding: 35px; 
        border-radius: 0 0 20px 20px;
        transform: none ;
        border-left: none;
        border-top: 4px solid var(--bjp-saffron);
    }
    .chapter-view-slide[data-theme="white"] .chapter-glass-card { border-top-color: #7dd3fc; }
    .chapter-view-slide[data-theme="green"] .chapter-glass-card { border-top-color: var(--bjp-green); }

    .timeline-wrapper { 
        padding: 30px; 
    }
    .timeline-header-inline { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px; 
    }
    .years-track { 
        justify-content: flex-start; 
        gap: 25px; 
        padding-bottom: 10px; 
    }
    .journey-slide { 
        flex-direction: column; 
        gap: 30px; 
    }
    .slide-visual-side, .slide-info-side { 
        width: 100%; 
        flex: none; 
    }
    .slide-img { 
        height: 320px; 
    }
    .event-title { 
        font-size: 28px; 
    }

    
    .initiatives-window-viewport { 
        height: auto; 
    }
    .initiative-show-slide { 
        position: relative;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        flex-direction: column; 
        align-items: center; 
    }
    .initiative-show-slide.active-slide {
        opacity: 1;
        visibility: visible;
        height: auto;
    }
    .slide-backdrop-img { 
        width: 100%; 
        height: 280px; 
        position: relative; 
        border-radius: 24px 24px 0 0; 
    }
    .glass-details-card { 
        width: 100%; 
        margin: 0; 
        border-radius: 0 0 20px 20px;
        transform: none ;
    }
    .showcase-engine-footer { 
        flex-direction: column; 
        gap: 20px; 
        padding: 0 20px; 
    }
    .showcase-title { 
        font-size: 2rem; 
    }

    .glimpse-layout-grid { 
        grid-template-columns: 1fr; 
    }
    .social-feed-widget { 
        height: 500px; 
    }

    .footer-main-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px; 
    }
    .footer-bottom-bar { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }
}

@media (max-width: 768px) {
    .main-header { 
        padding: 14px 20px; 
    }
    .header-logo-zone { 
        gap: 12px; 
    }
    .bjp-logo-img { 
        height: 42px; 
    }
    .leader-title { 
        font-size: 19px; 
    }
    .party-subtitle { 
        font-size: 9px; 
        letter-spacing: 1px; 
    }
    
    .hero-slider-container { 
        aspect-ratio: 16 / 9; 
    }
    .hero-content-wrapper { 
        padding: 0 25px; 
    }

    .life-summary-editorial { 
        padding: 60px 20px; 
    }
    .editorial-hero-block {
        margin-bottom: 50px;
    }
    .editorial-title, .editorial-tagline, .editorial-lead-quote, .editorial-body-text { 
        text-align: center; 
    }
    .editorial-line-accent { 
        margin: 20px auto; 
    }
    .graphic-backer-shape { 
        display: none; 
    }
    
    .chapters-track-navigator {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
        padding: 0;
    }
    .chapter-nav-node {
        padding: 15px;
    }
    .chapter-glass-card h3 { 
        font-size: 1.7rem; 
    }
    .chapter-glass-card p { 
        font-size: .95rem; 
    }

    .journey-timeline-section { 
        padding: 40px 20px; 
    }
    .timeline-wrapper { 
        padding: 20px; 
        border-radius: 18px; 
    }
    .slide-img { 
        height: 240px; 
    }
    .giant-year-watermark { 
        font-size: 60px; 
    }
    .event-title { 
        font-size: 24px; 
        text-align: center; 
    }
    .event-description { 
        text-align: center; 
    }
    .read-more-link { 
        display: block; 
        text-align: center; 
    }
    .cool-heading { 
        font-size: 2.5rem; 
    }

    .press-header-row { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
    }
    .press-grid { 
        grid-template-columns: 1fr; 
    }
    .press-section-title { 
        font-size: 1.8rem; 
    }
    .news-image-area { 
        height: 220px; 
    }
}

@media (max-width: 576px) {
    .photos-subgrid { 
        grid-template-columns: 1fr; 
    }
    .main-photo-card {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .main-header { 
        padding: 12px 16px; 
    }
    .bjp-logo-img { 
        height: 36px; 
    }
    .leader-title { 
        font-size: 16px; 
    }
    .party-subtitle { 
        display: none; 
    }
    
    .live-ticker-banner { 
        height: 36px; 
    }
    .ticker-label-tag { 
        padding: 0 12px; 
        font-size: 10px; 
    }
    .ticker-scroller-engine span { 
        font-size: 11px; 
    }

    .editorial-text-plate { 
        padding: 24px; 
    }
    .editorial-title { 
        font-size: 2rem; 
    }
    
    .chapter-glass-card { 
        padding: 20px; 
    }
    .chapter-index-flag { 
        font-size: .7rem; 
    }
    .chapter-glass-card h3 { 
        font-size: 1.45rem; 
    }
    .chapter-glass-card p { 
        font-size: .88rem; 
        line-height: 1.7; 
    }
    .chapters-main-title { 
        font-size: 2rem; 
    }

    .timeline-wrapper { 
        padding: 16px; 
    }
    .slide-img { 
        height: 180px; 
    }
    .event-title { 
        font-size: 21px; 
    }
    .event-description { 
        font-size: 14px; 
    }
    .year-node { 
        font-size: 14px; 
        white-space: nowrap; 
    }

    .showcase-header { 
        margin-bottom: 30px; 
    }
    .showcase-badge { 
        font-size: 0.75rem; 
    }
    .showcase-title { 
        font-size: 1.5rem; 
    }
    .slide-backdrop-img {
        height: 200px;
    }
    .glass-details-card { 
        padding: 24px; 
    }
    .glass-details-card h3 { 
        font-size: 1.3rem; 
    }
    .glass-details-card p { 
        font-size: 0.85rem; 
    }

    .footer-main-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-links-grid { 
        flex-direction: column; 
    }
    .footer-logo-block { 
        justify-content: center; 
        text-align: center; 
    }
    .brand-motto-text { 
        text-align: center; 
    }
    .contact-info-links p { 
        justify-content: center; 
    }
    .footer-policy-links { 
        justify-content: center; 
        flex-wrap: wrap; 
    }
}



@media (max-width: 992px) {
    
    html body .initiatives-window-viewport { 
        height: auto ; 
        position: relative ;
        overflow: visible ;
    }
    
    
    html body .initiatives-engine-track {
        height: auto ;
        position: relative ;
        display: flex ;
        flex-direction: column ;
        transform: none ;
    }
    
   
    html body .initiative-show-slide { 
        position: relative ;
        top: 0 ;
        left: 0 ;
        width: 100% ;
        display: none ; 
        flex-direction: column ; 
        align-items: stretch ;
        transform: none ;
    }
    
    
    html body .initiative-show-slide.active-slide {
        display: flex ;
        height: auto ;
        opacity: 1 ;
        visibility: visible ;
    }
    
    
    html body .initiative-show-slide .slide-backdrop-img { 
        width: 100% ; 
        height: 260px ; 
        position: relative ;
        top: 0 ;
        left: 0 ;
        border-radius: 16px 16px 0 0 ; 
        flex: none ;
    }
    
  
    html body .initiative-show-slide .glass-details-card { 
        width: 100% ; 
        position: relative ;
        top: 0 ;
        left: 0 ;
        margin: 0 ; 
        padding: 24px ;
        border-radius: 0 0 16px 16px ;
        transform: none ;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) ;
    }

    
    html body .glass-details-card h3,
    html body .glass-details-card p,
    html body .glass-details-card * {
        white-space: normal ;
        word-break: break-word ;
        writing-mode: horizontal-tb ;
        display: block ;
        text-align: left ;
    }
}



@media (max-width: 991px){

    .premium-pretty-footer{
        padding:60px 25px 25px;
    }

    .footer-main-grid{
        display:flex;
        flex-direction:column;
        gap:45px;
    }

    .footer-col{
        width:100%;
        border-right:none ;
        padding-right:0 ;
        padding-left:0 ;
    }

    .footer-brand{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:25px;
    }

    .footer-brand-content{
        align-items:center;
        text-align:center;
    }

    .footer-bjp-logo{
        width:150px;
    }

    .footer-social-strip{
        justify-content:center;
        flex-wrap:wrap;
    }

    .footer-brand h2{
        font-size:2rem;
        line-height:1.2;
    }

    .footer-brand h4{
        font-size:1rem;
    }

    .footer-brand span{
        font-size:.9rem;
    }

    .footer-brand p{
        max-width:100%;
        margin:20px auto;
    }

    .links-col h4,
    .newsletter-col h4{
        text-align:left;
    }

    .footer-links-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px 25px;
    }

    .footer-links-grid ul{
        margin:0;
        padding:0;
    }

    .footer-subscribe-form{
        width:100%;
    }

    .footer-bottom-bar{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .footer-policy-links{
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
    }

}




@media (max-width:768px){

    .premium-pretty-footer{
        padding:60px 22px 35px;
    }

    
    .footer-main-grid{
        display:flex;
        flex-direction:column;
        gap:45px;
    }

    .footer-brand-content,
.links-col,
.newsletter-col{
    border:none ;
    padding-left:0 ;
}

   
    .footer-brand{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:22px;
        text-align:center;
    }

    .footer-brand-content{
        align-items:center;
        text-align:center;
    }

    .footer-bjp-logo{
        width:170px;
        margin:auto;
    }

    .footer-social-strip{
        justify-content:center;
        flex-wrap:wrap;
    }

    .footer-brand h2{
        font-size:2rem;
        line-height:1.15;
        margin-bottom:10px;
    }

    .footer-brand h4{
        font-size:1.05rem;
    }

    .footer-brand span{
        display:block;
        margin:15px auto;
        font-size:15px;
        line-height:1.5;
    }

    .footer-brand p{
        max-width:100%;
        margin:0 auto;
        font-size:16px;
        line-height:1.9;
    }

    

    .footer-links-grid{
        display:flex;
        flex-direction:column;
        gap:0;
    }

    .footer-links-grid ul{
        padding:0;
        margin:0;
    }

    .footer-links-grid li{
        margin:12px 0;
    }

    

    .news-pitch{
        text-align:center;
    }

    .footer-subscribe-form{
        max-width:360px;
        margin:25px auto 0;
    }

   

    .footer-bottom-bar{
        flex-direction:column;
        gap:22px;
        text-align:center;
    }

    .footer-policy-links{
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
    }


    .footer-brand{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.footer-brand-content{
    width:100%;
}

.footer-brand h2,
.footer-brand h4,
.footer-brand span,
.footer-brand p{
    text-align:center;
}
}


.menu-toggle {
    display: none;
}


@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }
}


@media screen and (max-width: 768px) {
    .social-icons {
        display: flex; 
        justify-content: center;
        gap: 15px;
    }
}


:root {
    --bg-deep: #f8fafc;
    --bg-surface: #ffffff;
    --border-light: #e2e8f0;
    
   
    --tricolor-saffron: #FF9933;
    --tricolor-white: #ffffff;
    --tricolor-green: #138808;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Cinzel', serif;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}


.bjp-bg-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw; 
    height: 65vw;
    background-image: url('BJP logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03; 
    z-index: -2; 
    pointer-events: none; 
}


@media (max-width: 768px) {
    .bjp-bg-watermark {
        width: 90vw;
        height: 90vw;
    }
}

.glow-saffron {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: -15%;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}

.glow-green {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(19, 136, 8, 0.06) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    right: -10%;
    z-index: -1;
    pointer-events: none;
}


.bio-wrapper {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 24px;
}

.bio-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.premium-glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.premium-glass-card:last-child {
    margin-bottom: 0;
}

.premium-glass-card:hover {
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.06);
}


.bio-sidebar {
    position: sticky;
    top: 40px;
}

.profile-frame {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
}

.profile-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-frame:hover .profile-img {
    transform: scale(1.03);
}

.identity h1 {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.identity .subtitle {
    color: var(--tricolor-saffron);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 24px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 153, 51, 0.3), rgba(15, 23, 42, 0.1), rgba(19, 136, 8, 0.3));
    border: none;
    margin-bottom: 24px;
}

.quick-specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.spec-icon.icon-saffron {
    color: var(--tricolor-saffron);
    border: 1px solid rgba(255, 153, 51, 0.2);
    background: rgba(255, 153, 51, 0.05);
}

.spec-icon.icon-white {
    color: #475569;
    border: 1px solid var(--border-light);
    background: #ffffff;
}

.spec-icon.icon-green {
    color: var(--tricolor-green);
    border: 1px solid rgba(19, 136, 8, 0.2);
    background: rgba(19, 136, 8, 0.05);
}

.spec-info .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.spec-info .value {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}


.bio-main-stream {
    display: flex;
    flex-direction: column;
}

.section-header-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.saffron-text { color: var(--tricolor-saffron); }
.green-text { color: var(--tricolor-green); }

.bio-lead-para {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 400;
}

.bio-body-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}


.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.pillar-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pillar-accent.bg-saffron { background: var(--tricolor-saffron); }
.pillar-accent.bg-white { background: #cbd5e1; }
.pillar-accent.bg-green { background: var(--tricolor-green); }

.pillar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}


.interactive-timeline {
    position: relative;
    padding-left: 32px;
}

.interactive-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--tricolor-saffron), #cbd5e1, var(--tricolor-green));
}

.timeline-node {
    position: relative;
    margin-bottom: 40px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-indicator {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-surface);
}

.node-indicator.badge-saffron { border: 3px solid var(--tricolor-saffron); }
.node-indicator.badge-white { border: 3px solid #cbd5e1; }
.node-indicator.badge-green { border: 3px solid var(--tricolor-green); }

.node-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.node-year {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.node-year.bg-saffron { background: rgba(255, 153, 51, 0.15); color: #c26400; }
.node-year.bg-white-pill { background: #e2e8f0; color: #475569; }
.node-year.bg-green { background: rgba(19, 136, 8, 0.12); color: var(--tricolor-green); }

.node-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.node-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}


@media (max-width: 1100px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bio-sidebar {
        position: relative;
        top: 0;
    }
    .profile-img {
        height: 450px;
    }
}

@media (max-width: 600px) {
    .bio-wrapper {
        margin: 30px auto;
        padding: 0 16px;
    }
    .premium-glass-card {
        padding: 24px;
    }
    .identity h1 {
        font-size: 1.8rem;
    }
}


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

body {
    background-color: #f7fafc; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b; 
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}


.glow-saffron {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.22) 0%, rgba(255, 153, 51, 0) 70%);
    pointer-events: none;
    z-index: 1;
}


.glow-green {
    position: absolute;
    top: 40%;
    right: -15%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(19, 136, 8, 0.15) 0%, rgba(19, 136, 8, 0) 70%);
    pointer-events: none;
    z-index: 1;
}


.bjp-bg-watermark {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 950px;
    height: 950px;
    background: url('BJP logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.05; 
    pointer-events: none;
    z-index: 0;
}


.premium-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}


.media-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 60px 20px;
    position: relative;
    z-index: 2;
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-tagline {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #ff9933, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saffron-text { color: #e07b12; }
.green-text { color: #117a07; }

.media-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.media-subtitle {
    font-size: 1.15rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}


.featured-video-panel {
    padding: 40px;
    margin-bottom: 80px;
    border-left: 6px solid #ff9933; 
}

.featured-video-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 35px;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr; 
    gap: 40px;
    margin-top: 10px;
}

.video-container, .grid-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 4px solid #ffffff; 
}

.video-container iframe, .grid-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-date {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-saffron {
    background: rgba(255, 153, 51, 0.15);
    color: #c26405;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

.featured-info h2 {
    font-size: 2.1rem;
    line-height: 1.35;
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 700;
    word-break: break-word; /
}

.featured-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.yt-subscribe-btn {
    align-self: flex-start;
    background: #ff0000;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.yt-subscribe-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.45);
    background: #e60000;
}


.gallery-heading {
    font-size: 1.75rem;
    margin-bottom: 40px;
    color: #0f172a;
    border-left: 5px solid #138808;
    padding-left: 18px;
    font-weight: 700;
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.video-card {
    padding: 0;
    overflow: hidden;
    border-bottom: 4px solid #138808; 
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

.video-card-body {
    padding: 26px;
}

.card-date {
    font-size: 0.75rem;
    color: #ff9933;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-card-body h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #0f172a;
    font-weight: 700;
}

.video-card-body p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}


@media (max-width: 968px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .media-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-policy-links a {
        margin: 0 10px;
    }
    .featured-video-panel {
        padding: 24px;
    }
}