/* Custom Premium Styling for Suvendu Adhikari Portfolio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #E65A00;
    --primary-orange-rgb: 230, 90, 0;
    --secondary-orange: #FF7015;
    --light-orange: #FFF5EE;
    --dark-orange: #C64E00;
    --deep-black: #111111;
    --charcoal: #1E1E1E;
    --light-gray: #F8F9FA;
    --border-gray: #EAEAEA;
    --muted-gray: #6C757D;
    --white: #FFFFFF;

    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-active: 0 15px 35px rgba(230, 90, 0, 0.15);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--deep-black);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-headings);
    font-weight: 700;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* SECTION HEADINGS */
.section-tag {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    position: relative;
}

.section-title span {
    color: var(--primary-orange);
}

/* STICKY NAVBAR */
.custom-navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px lightslategrey;
    z-index: 1000;
    transition: var(--transition-smooth);
    /* padding: 0.75rem 0; */
}

.navbar-brand img {
    height: 50px;
    object-fit: contain;
}

.nav-logo-text {
    line-height: .7;
}

.nav-logo-text h1 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--primary-orange);
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.nav-logo-text span {
    font-size: .8rem;
    color: black;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

.custom-nav-link {
    font-family: var(--font-headings);
    font-weight: bold;
    color: var(--muted-gray) !important;
    padding: 0.2rem .7rem !important;
    border-radius: 8px;
    font-size: .7rem;
    transition: var(--transition-smooth);
    margin: 0 0.2rem;
}

/* Hover effects */
.custom-nav-link:hover {
    background-color: var(--primary-orange) !important;
    color: var(--white) !important;
}

/* Active Nav Links */
.custom-nav-link.active {
    background-color: var(--primary-orange) !important;
    color: var(--white) !important;
}

/* Language Selector Toggle button */
.lang-selector {
    border: 1.5px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.lang-selector:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    /* align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center; */
}



/* Custom left pagination dots for Hero Section */
.hero-pagination {
    position: absolute;
    left: 3.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #1A1A1A;
    opacity: 0.6;
    margin: 6px 0 !important;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(230, 90, 0, 0.4);
}

/* Scroll Down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: var(--muted-gray);
    text-decoration: none;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 5px;
    font-size: 1.1rem;
    color: var(--primary-orange);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -8px);
    }

    60% {
        transform: translate(-50%, -4px);
    }
}

/* STATISTICS / LEGACY SECTION */
.legacy-section {
    position: relative;
    z-index: 20;
    margin-top: -100px;
    /* Overlap hero */
    padding-bottom: 1rem;
}

.stats-container {
    background-color: var(--primary-orange);
    border-radius: 24px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 15px 40px rgba(230, 90, 0, 0.2);
}

.stats-container h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 24px;
}

.stats-container h4 span {
    font-size: 12px;
    font-weight: 400;

}

.legacy-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.legacy-title span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
}

.stat-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.stat-desc {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* THE MAN & THE MANDATE */
.mandate-section {
    padding-bottom: 5%;
    background-color: var(--white);
}

.mandate-image-wrapper {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandate-img-container {
    position: relative;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-active);
    background: var(--primary-orange);
    flex-shrink: 0;
    margin: 0 auto;
}

.circular-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid var(--white);
    transition: none;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.mandate-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mandate-tab-btn {
    border: 2px solid var(--primary-orange);
    background: var(--white);
    color: var(--primary-orange);
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    outline: none;
    position: relative;
    width: 100%;
}

.mandate-tab-btn .module-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-orange);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.mandate-tab-btn .module-title {
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-orange);
    margin: 0;
    transition: var(--transition-smooth);
}

.mandate-tab-btn:hover {
    background-color: var(--light-orange);
    transform: translateX(5px);
}

.mandate-tab-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(230, 90, 0, 0.15);
}

.mandate-tab-btn.active .module-num {
    color: var(--white);
    opacity: 0.9;
}

.mandate-tab-btn.active .module-title {
    color: var(--white);
}

.mandate-narrative-card {
    background-color: transparent;
    border-radius: 0;
    padding: 10px 10px 10px 45px;
    height: 100%;
    border-left: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition-smooth);
}

.mandate-narrative-card h3 {
    color: var(--primary-orange);
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mandate-narrative-card p {
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

.mandate-scroll-down {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    color: var(--primary-orange);
    font-size: 1.7rem;
    transition: var(--transition-smooth);
}

.mandate-scroll-down:hover {
    transform: translateY(3px);
}

/* Vertical Line */
.mandate-section .vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #9c9c9c;
}

/* Triangle */
.mandate-section .triangle {
    position: absolute;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-left: 2px solid #9c9c9c;
    border-top: 2px solid #9c9c9c;
    transform: rotate(137deg);
    transition: top 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .mandate-narrative-card {
        padding: 30px 10px 10px 10px;
    }

    .mandate-section .vertical-line {
        height: 2px;
        width: 100%;
        top: 0;
        left: 0;
    }

    .mandate-section .triangle {
        top: -4px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

/* INTERACTIVE TIMELINE */
.timeline-section {
    padding: 1.3rem 0 1rem;
    background-color: #FFF4EA;
    position: relative;
    overflow: hidden;
}

/* BJP color tokens (replaces Tailwind config colors used in about.html) */
:root {
    --bjp-saffron: #FFB870;
    --bjp-grey: #9EABB8;
    --bjp-ivory: #FFFFF0;
    --bjp-blue: #B3D4FF;
    --bjp-dark: #1A232C;
    --bjp-ink: #2C3E50;
}

/* Dark variation for the timeline section */
.timeline-section.timeline-dark {
    background-color: var(--bjp-dark);
    color: var(--bjp-ivory);
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.timeline-tag {
    display: block;
    color: var(--bjp-blue);
    letter-spacing: .4em;
    font-size: .75rem;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.timeline-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    color: var(--bjp-ivory);
    margin: 0 0 2rem 0;
}

.timeline-wrap { position: relative; padding: 1rem 0 2rem; }
.timeline-bg-line { position: absolute; left: 3rem; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.06); transform: translateX(-50%); }
.timeline-progress-line { position: absolute; left: 3rem; top: 0; bottom: auto; width: 4px; height: 0; background: var(--bjp-saffron); transform: translateX(-50%); }

.timeline-container { position: relative; z-index: 5; display: block; gap: 2rem; }
.timeline-row { margin-bottom: 2.5rem; }

.timeline-left, .timeline-right { padding: 0; }
.timeline-card { background-color: transparent; border: none; padding: 0; box-shadow: none; text-align: left; }
.timeline-year { font-family: var(--font-headings); font-weight: 800; font-size: 2rem; margin: 0 0 .5rem 0; }
.timeline-sub { color: var(--bjp-ivory); font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem; }
.timeline-desc { color: rgba(255,255,240,0.8); line-height: 1.6; margin: 0; }

.timeline-center { width: 60px; display:flex; align-items:center; justify-content:center; position:relative; }
.center-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--bjp-dark); border: 2px solid var(--bjp-grey); }
.center-dot.large { width: 40px; height: 40px; box-shadow: 0 0 15px rgba(255,184,112,0.4); border-color: var(--bjp-saffron); }

.text-saffron { color: var(--bjp-saffron); }
.text-ivory { color: var(--bjp-ivory); }
.text-blue { color: var(--bjp-blue); }

@media (min-width: 768px) {
    .timeline-bg-line, .timeline-progress-line { left: 50%; }
    .timeline-center { width: auto; }
}

/* Header Row: Title left, Arrows right */
.timeline-header-row {
    position: relative;
    z-index: 5;
}

.timeline-main-title {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--deep-black);
    margin: 0;
    line-height: 1.3;
}

.timeline-title-text {
    color: var(--primary-orange);
    margin-right: 0.35rem;
}

.timeline-year-text {
    color: var(--deep-black);
    font-weight: 800;
}

/* Navigation Arrows – Square with rounded corners */
.timeline-nav-container {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.timeline-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 1.5px solid var(--primary-orange);
    background-color: var(--white);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    font-size: 0.85rem;
}

.timeline-nav-btn.timeline-next {
    background-color: var(--primary-orange);
    color: var(--white);
}

.timeline-nav-btn:hover {
    background-color: var(--dark-orange);
    color: var(--white);
    border-color: var(--dark-orange);
}

/* Swiper Container */
.timeline-swiper {
    padding: 2.5rem 0.5rem 3rem !important;
    overflow: visible !important;
}

.timeline-swiper .swiper-wrapper {
    align-items: center;
}

/* --- Slide Transition Base --- */
.timeline-swiper .swiper-slide {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.45;
    transform: scale(0.88);
}

/* --- Active Center Slide --- */
.timeline-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

/* Timeline Card Base */
.timeline-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--primary-orange);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 150px;
    position: relative;
}

/* Year Text */
.timeline-year {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 2.5rem;
    color: #B0B0B0;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
    line-height: 1;
}

/* Title */
.timeline-card h4 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.35;
    transition: var(--transition-smooth);
    /* height: 100px; */
}

/* --- Active Slide Card Overrides --- */
.swiper-slide-active .timeline-card {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px rgba(230, 90, 0, 0.12);
}

.swiper-slide-active .timeline-year {
    color: var(--primary-orange);
    font-size: 3rem;
}

.swiper-slide-active .timeline-card h4 {
    color: var(--deep-black);
    font-size: 1.2rem;
}

/* Orange Underline Progress Indicator below active card */
.swiper-slide-active .timeline-card::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 20%;
    width: 60%;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* --- Read More Button --- */
.timeline-readmore-btn {
    border: 1.5px solid #C0C0C0;
    color: #999;
    background: #F0F0F0;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    align-self: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

/* Active slide button: solid orange */
.swiper-slide-active .timeline-readmore-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.timeline-readmore-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .timeline-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .timeline-main-title {
        font-size: 1.3rem;
    }

    .timeline-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .timeline-swiper .swiper-slide {
        opacity: 0.4;
        transform: scale(0.85);
    }

    .timeline-swiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }
}

/* VISION / BLUEPRINT SECTION (Sankalp Patra) */
.vision-section {
    padding: 4rem 0;
    background-color: var(--primary-orange);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

/* Title Area */
.vision-title-area {
    margin-bottom: 2rem;
}

.vision-subtitle-tag {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.vision-main-heading {
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

/* Content Row */
.vision-content-row {
    align-items: center;
}

.vision-book-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.book-img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.vision-book-wrapper:hover .book-img {
    transform: scale(1.03);
}

.vision-text-area {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
}

.vision-statement {
    /* font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    border-left: 3px solid var(--white);
    padding-left: 1.5rem;
    text-align: justify; */
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    /* border-left: 3px solid var(--white); */
    /* padding-left: 1.5rem; */
    border-top: 2px solid var(--white);
    /* text-align: justify; */
    border-bottom: 2px solid var(--white);
    padding: 10px 0px;
    min-height: 150px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
    align-content: center;
    padding: 30px;
}

@media (max-width: 576px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }
}

.vision-card {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

.vision-card .icon-box {
    width: 56px;
    height: 56px;
    /* background-color: var(--white);
    color: var(--primary-orange); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.vision-card .icon-box img {
    width: 81%;
}

.vision-card h4 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.vision-card:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-5px);
}

.vision-card:hover .icon-box {
    background-color: var(--primary-orange);
    color: var(--white);
}

.vision-card.active {
    background-color: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vision-card.active .icon-box {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Vision Responsive */
@media (max-width: 991px) {
    .vision-main-heading {
        font-size: 1.8rem;
    }

    .vision-content-row {
        text-align: center;
    }

    .vision-statement {
        border-left: none;
        border-top: 3px solid var(--white);
        padding-left: 0;
        padding-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .vision-main-heading {
        font-size: 1.5rem;
    }
}

/* Vision Popup Overlay (mobile & small screens) */
.vision-section .vision-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.28);
}
.vision-section .vision-popup-overlay.active {
    display: flex;
}
.vision-section .vision-popup-card {
    width: min(100%, 342px);
    background: #fff9d8;
    color: var(--charcoal);
    border: 1px solid #f6df84;
    border-radius: 12px;
    padding: 18px 16px 16px;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.vision-section .vision-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
}
.vision-section .vision-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 28px;
    margin-bottom: 10px;
}
.vision-section .vision-popup-icon-box {
    background: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.vision-section .vision-popup-header h4 {
    margin: 0;
    color: var(--primary-orange);
    font-size: 1rem;
    line-height: 1.25;
}
.vision-section .vision-popup-card p {
    margin: 0;
    color: var(--charcoal);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* INITIATIVES DASHBOARD */
.initiatives-section {
    padding: 2.3rem 0;
    background-color: var(--white);

}

.initiative-log-container {
    border: 1.5px solid var(--primary-orange);
    border-radius: 16px;
    padding: 1.5rem;
    background-color: #ffeede;
    min-height: 600px;
}

.initiative-log-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.initiative-log-item {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    width: 100%;
    display: flex;
    /* justify-content: space-around; */
    color: black;
}

.initiative-log-item .init-date {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;

}

.initiative-log-item .init-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-black);
    margin: 0;
    line-height: 1.3;
    margin-left: 7%;
}

.initiative-log-item:hover {
    background-color: var(--light-orange);
    border-color: var(--primary-orange);
}

.initiative-log-item.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.initiative-log-item.active .init-date {
    color: white !important;
}

.initiative-log-item.active .init-label {
    color: var(--white);
}

.initiative-detail-card {
    border: 15px solid rgb(255, 244, 234);
    border-radius: 16px;
    padding: 2.5rem;
    background-color: var(--white);
    height: 100%;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.initiative-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1.25rem;
    width: max-content;
}

.initiative-detail-card h3 {
    font-size: 1.6rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.initiative-detail-card p {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.initiative-img-box {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    margin-top: auto;
}

.initiative-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.initiative-detail-card:hover .initiative-img-box img {
    transform: scale(1.05);
}

/* PRESS & MEDIA ROOM */
.press-section {
    padding: 2rem 0;
    background-color: #FAF5EF;
    background-image: url('../images/Desktop/Press Background.webp');
    /* background-repeat: no-repeat;
    background-position: cover;
    background-size: contain;
    position: relative; */



    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.press-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-top: 0.25rem;
}

.press-view-all-btn {
    border: 1.5px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.45rem 1.25rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 0.9rem;
    gap: 6px;
}

.press-view-all-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 90, 0, 0.2);
}

.press-card {
    background-color: var(--white);
    border: 1.5px solid var(--primary-orange);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(230, 90, 0, 0.1);
}

.press-card-header {
    background-color: var(--primary-orange);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.press-card-icon {
    height: 44px;
    width: auto;
    padding-right: 12px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.4);
}

.press-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

.press-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.press-card-body-release {
    padding: 0.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Left Card: Editorials & Policy Essays */
.essay-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
}

.essay-quote {
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    color: var(--deep-black);
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', Georgia, serif;
    padding-right: 1rem;
}

.author-divider {
    width: 32px;
    height: 3px;
    background-color: var(--primary-orange);
    margin-bottom: 0.6rem;
    border: none;
    opacity: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--muted-gray);
    font-weight: 500;
}

.author-info h4 {
    font-size: 1.75rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}

.author-portrait {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Center Card: Speeches Carousel */
.speeches-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.speeches-pagination {
    position: relative !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    gap: 6px;
}

.speeches-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #707070;
    opacity: 0.4;
    margin: 0 !important;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.speeches-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
    opacity: 1;
    transform: scale(1.2);
}

.speeches-nav {
    display: flex;
    gap: 6px;
}

.speeches-prev-btn,
.speeches-next-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1.5px solid var(--primary-orange);
    background-color: var(--white);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.75rem;
}

.speeches-prev-btn:hover,
.speeches-next-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.speeches-swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.speech-slide-content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.speech-video-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    height: 155px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.speech-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.speech-video-box .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.speech-video-box .play-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.speech-video-box:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.speech-video-box:hover .play-btn-circle {
    transform: scale(1.1);
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.speech-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 1.5rem;
}

.speech-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--deep-black);
    margin: 0;
}

.speech-info span {
    font-size: 0.8rem;
    color: var(--muted-gray);
    font-weight: 500;
}

.speech-share-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: transparent;
    border: none;
    color: var(--primary-orange);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.speech-share-btn:hover {
    transform: scale(1.15);
    color: var(--dark-orange);
}

/* Right Card: Press Releases */
.release-list {
    display: flex;
    flex-direction: column;
}

.release-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.release-card-item:last-child {
    border-bottom: none;
}

.release-card-item-content {
    flex-grow: 1;
    padding-right: 0.75rem;
}

.release-pr-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.release-card-item h4 {
    font-size: 0.95rem;
    color: var(--deep-black);
    margin: 0;
    line-height: 1.45;
    font-weight: 600;
}

.release-chevron {
    color: var(--primary-orange);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.release-card-item:hover {
    background-color: #FFF5EE;
}

.release-card-item:hover .release-chevron {
    transform: translateX(4px);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 1.5rem 0;
    background-color: var(--white);
}

.gallery-section .section-tag {
    color: var(--deep-black);
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.1rem;
}

.gallery-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.gallery-section .view-all-btn {
    border: none;
    color: var(--white);
    background-color: var(--primary-orange);
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.gallery-section .view-all-btn:hover {
    background-color: var(--deep-black);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 2px solid #E5E5E5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    position: relative;
}

/* Default Active state (middle card) */
.gallery-card.active-default {
    border-color: var(--primary-orange);
}

.gallery-card.active-default .gallery-share-btn {
    color: var(--primary-orange);
}

/* Hover state on any card */
.gallery-card:hover {
    border-color: var(--primary-orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 90, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-card:hover .gallery-share-btn {
    color: var(--primary-orange) !important;
}

/* If any card in the grid is hovered, revert default active card to gray */
#galleryGrid:hover .gallery-card.active-default:not(:hover) {
    border-color: #E5E5E5 !important;
}

#galleryGrid:hover .gallery-card.active-default:not(:hover) .gallery-share-btn {
    color: #A04000 !important;
}

/* Video thumbnail container */
.gallery-media-container {
    position: relative;
    height: 210px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #000;
    cursor: pointer;
}

.gallery-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-media-container img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* Play button overlay */
.gallery-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-media-container:hover .gallery-play-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.gallery-play-btn {
    width: 60px;
    height: 60px;
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    background: rgba(230, 90, 0, 0.7);
    backdrop-filter: blur(4px);
}

.gallery-play-btn i {
    margin-left: 4px;
}

.gallery-media-container:hover .gallery-play-btn {
    transform: scale(1.15);
    background: rgba(230, 90, 0, 0.95);
    border-color: var(--white);
    box-shadow: 0 0 25px rgba(230, 90, 0, 0.4);
}

/* Video duration badge */
.gallery-video-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
}

.gallery-video-badge i {
    font-size: 0.6rem;
}

/* Video Modal Lightbox */
.video-modal .modal-dialog {
    max-width: 800px;
}

.video-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.video-modal .modal-header {
    background: var(--deep-black);
    border-bottom: 2px solid var(--primary-orange);
    padding: 1rem 1.5rem;
}

.video-modal .modal-header .modal-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-headings);
}

.video-modal .modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.8;
}

.video-modal .modal-body {
    padding: 0;
    background: #000;
}

.video-modal .modal-body video {
    width: 100%;
    max-height: 450px;
    display: block;
    outline: none;
}

.video-modal .modal-footer-info {
    background: var(--deep-black);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal .modal-footer-info .video-modal-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.video-modal .modal-footer-info .video-modal-date {
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

/* Card Body */
.gallery-card-body {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-body h4 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--deep-black);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.gallery-card-body h4 strong {
    font-weight: 800;
    color: var(--deep-black);
    margin-right: 0.35rem;
}

/* Card Footer */
.gallery-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: none;
    padding-top: 0;
    margin-top: auto;
}

.gallery-card-footer span {
    font-size: 0.8rem;
    color: var(--muted-gray);
    font-weight: 500;
    font-style: italic;
}

/* Share button */
.gallery-share-btn {
    background: transparent;
    border: none;
    color: #A04000;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-share-btn:hover {
    transform: scale(1.15);
}

/* FOOTER SECTION */
.footer-section {
    background-color: var(--primary-orange);
    color: var(--white);
    /* padding: 5rem 0 3rem 0; */
}

.footer-logo-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 1.05rem;
    opacity: 0.95;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white);
}

.footer-social-header {
    font-family: var(--font-headings);
    font-weight: 400;
    font-size: 20px;
    margin-bottom: .75rem;
    letter-spacing: .05rem;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: .5rem;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--deep-black);
    color: var(--white);
}

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.85;
    margin: 0;
    font-weight: 500;
}



/* Dynamic Modal for Timeline Event Read More */
.custom-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.custom-modal-header {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.custom-modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.8;
}

.custom-modal-body {
    padding: 2.5rem 2rem;
}

.modal-year-badge {
    background-color: var(--light-orange);
    color: var(--primary-orange);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.25rem;
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
}

.custom-modal-body h3 {
    font-size: 1.6rem;
    color: var(--deep-black);
    margin-bottom: 1rem;
}

.custom-modal-body p {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .legacy-section {
        margin-top: -60px;
    }

    .stats-container {
        padding: 2rem 1.5rem;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding: 0;
    }

    .hero-pagination {
        left: 1rem !important;
    }
}

#initLogSub {
    color: black !important;
    font-weight: bold;
    font-size: 24px;
}

.section-bottom {
    height: 10px;
    width: 100%;
    background-color: var(--primary-orange);
    margin-bottom: 0px;
}

#pressSub {
    color: black !important;
    font-weight: 400;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-bottom: 0rem;
    display: inline-block;
}

/* ==========================================================================
   MOBILE PROTOTYPE & SIMULATOR CUSTOM STYLES
   ========================================================================== */

/* Desktop Mockup Layout */
@media (min-width: 768px) {
    .mobile-body-wrapper {
        background-color: #0f0f12;
        background-image:
            radial-gradient(circle at 10% 20%,
                rgba(230, 90, 0, 0.08) 0%,
                transparent 40%),
            radial-gradient(circle at 90% 80%,
                rgba(255, 112, 21, 0.05) 0%,
                transparent 40%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 40px 20px;
    }

    .desktop-container {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1100px;
        width: 100%;
    }

    .info-column {
        flex: 1;
        color: var(--white);
    }

    .info-column h1 {
        font-family: var(--font-headings);
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ff9f59, #ff7015);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .info-column p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #a0a0ab;
        margin-bottom: 30px;
    }

    .info-badge {
        display: inline-block;
        background: rgba(230, 90, 0, 0.15);
        border: 1px dashed var(--secondary-orange);
        color: #ff9f59;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .phone-mockup {
        width: 390px;
        height: 844px;
        background-color: var(--white);
        border: 12px solid #27272a;
        border-radius: 45px;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(255, 255, 255, 0.05);
        overflow-y: auto;
        position: relative;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-orange) transparent;
    }

    .phone-mockup::-webkit-scrollbar {
        width: 5px;
    }

    .phone-mockup::-webkit-scrollbar-track {
        background: transparent;
    }

    .phone-mockup::-webkit-scrollbar-thumb {
        background: var(--secondary-orange);
        border-radius: 10px;
    }

    .phone-notch {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 25px;
        background-color: #27272a;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-notch::before {
        content: "";
        width: 40px;
        height: 4px;
        background: #111;
        border-radius: 2px;
        margin-bottom: 4px;
    }
}

@media (max-width: 767px) {
    .desktop-container {
        width: 100%;
    }

    .info-column {
        display: none;
    }

    .phone-mockup {
        width: 100%;
        min-height: 100vh;
        background-color: var(--white);
    }

    .phone-notch {
        display: none;
    }
}

/* App Header & Brand */
.app-header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
}

.desktop-container .phone-mockup .app-header {
    padding-top: 30px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.app-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    object-fit: cover;
}

.app-logo-text h1 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--primary-orange);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.app-logo-text span {
    font-size: 0.65rem;
    color: var(--charcoal);
    font-weight: 600;
    display: block;
}

/* Language Selection Header Pill */
.lang-tabs {
    display: flex;
    background: var(--light-gray);
    padding: 3px;
    border-radius: 20px;
    border: 1px solid #e4e4e7;
}

.lang-tab-btn {
    border: none;
    background: transparent;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 15px;
    color: var(--muted-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-tab-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(230, 90, 0, 0.2);
}

/* Top Horizontal Anchor Links */
.nav-anchors {
    display: flex;
    background: var(--light-gray);
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 15px;
    border-bottom: 1px solid var(--border-gray);
    scrollbar-width: none;
}

.nav-anchors::-webkit-scrollbar {
    display: none;
}

.nav-anchor-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 8px;
    transition: var(--transition-smooth);
    background: var(--white);
    border: 1px solid var(--border-gray);
    display: inline-block;
}

.nav-anchor-link.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

/* Layout Content Sections */
.mobile-section {
    padding: 25px 16px;
    border-bottom: 8px solid var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-section-title {
    font-size: 1.55rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 6px;
}

.mobile-section-subtitle {
    font-size: 0.8rem;
    color: var(--muted-gray);
    margin: 0;
    font-weight: 500;
}

/* Glowing Pulse Profile Image */
.leader-img-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-img-container {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 5px;
    box-shadow: var(--shadow-active);
    background: var(--primary-orange);
    position: relative;
    z-index: 2;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
}

.pulse-ring-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse-mob 2.5s infinite;
    opacity: 0;
    z-index: 1;
}

@keyframes pulse-mob {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.18);
        opacity: 0;
    }
}



    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Mandate Accordion styling */
.mandate-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-module-card {
    border: 2px solid var(--primary-orange);
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.mobile-module-card.expanded {
    box-shadow: var(--shadow-active);
}

.mobile-module-header {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.mobile-module-title-group {
    flex: 1;
    padding-right: 15px;
}

.mobile-module-num {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.mobile-module-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
    line-height: 1.35;
}

/* Orange circle down chevron */
.mobile-chevron-btn {
    width: 22px;
    height: 22px;
    border-radius: 0;
    background-color: var(--primary-orange);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(230, 90, 0, 0.3);
}

.mobile-module-card.expanded .mobile-chevron-btn {
    transform: rotate(180deg);
    background-color: var(--dark-orange);
}

.mobile-module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--light-orange);
}

.mobile-module-card.expanded .mobile-module-body {
    border-top: 1px solid rgba(230, 90, 0, 0.15);
}

.mobile-module-inner-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mobile-module-body h5 {
    color: var(--primary-orange);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mobile-module-body p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 12px;
}

/* Orange Read More button */
.mobile-readmore-btn {
    background-color: var(--primary-orange);
    color: var(--white) !important;
    border: none;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-headings);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(230, 90, 0, 0.25);
    align-self: flex-end;
    margin-left: auto;
}

.mobile-readmore-btn:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

/* Section 2: Sankalp Patra Cards */
.vision-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vision-mobile-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vision-mobile-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-orange);
}

.vision-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.vision-card-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.vision-card-icon-box i {
    font-size: 1.1rem;
    color: var(--primary-orange);
}

.vision-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
}

.vision-mobile-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--charcoal);
    margin: 0;
}

/* Section 3: Initiatives Stacked Cards Layout */
.initiatives-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.initiative-mobile-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.initiative-mobile-card:active {
    transform: scale(0.98);
}

.initiative-card-img-box {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
}

.initiative-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.initiative-card-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.initiative-card-body {
    padding: 16px;
}

.initiative-card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.initiative-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: 8px;
    line-height: 1.35;
}

.initiative-card-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
}

/* Mobile Sankalp Patra section: matches the main website orange section */
body.mobile-version-body .vision-section {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 28px 16px 32px;
    border-bottom: 8px solid var(--light-gray);
    overflow: visible;
}

body.mobile-version-body .vision-section::before {
    display: none;
}

body.mobile-version-body .vm-vision-title,
body.mobile-version-body .vm-vision-subtitle {
    color: var(--white);
}

body.mobile-version-body .vm-vision-subtitle {
    font-size: 0.86rem;
    font-weight: 600;
    opacity: 0.95;
}

body.mobile-version-body .vm-vision-intro {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

body.mobile-version-body .vm-vision-book img {
    width: 100%;
    max-height: 148px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

body.mobile-version-body .vm-vision-quote {
    margin: 0;
    padding: 10px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
    font-size: 0.78rem;
    line-height: 1.55;
    font-weight: 500;
}

body.mobile-version-body .vm-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}

body.mobile-version-body .vision-mobile-card {
    min-height: 118px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.38);
    border-radius: 0;
    box-shadow: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.mobile-version-body .vision-mobile-card::before {
    display: none;
}

body.mobile-version-body .vision-mobile-card:active,
body.mobile-version-body .vision-mobile-card:focus-visible {
    background: var(--white);
    color: var(--primary-orange);
    outline: none;
}

body.mobile-version-body .vision-mobile-card .vision-card-header {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

body.mobile-version-body .vision-mobile-card .vision-card-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
}

body.mobile-version-body .vision-mobile-card .vision-card-icon-box i {
    color: var(--primary-orange);
    font-size: 1.12rem;
}

body.mobile-version-body .vision-mobile-card h4 {
    color: inherit;
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 800;
}

body.mobile-version-body .vm-vision-popup-overlay {
    position: absolute;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.28);
}

body.mobile-version-body .vm-vision-popup-overlay.active {
    display: flex;
}

body.mobile-version-body .vm-vision-popup-card {
    width: min(100%, 342px);
    background: #fff9d8;
    color: var(--charcoal);
    border: 1px solid #f6df84;
    border-radius: 12px;
    padding: 18px 16px 16px;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

body.mobile-version-body .vm-vision-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
}

body.mobile-version-body .vm-vision-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 28px;
    margin-bottom: 10px;
}

body.mobile-version-body .vm-popup-icon-box {
    background: var(--primary-orange);
}

body.mobile-version-body .vm-popup-icon-box i {
    color: var(--white);
}

body.mobile-version-body .vm-vision-popup-header h4 {
    margin: 0;
    color: var(--primary-orange);
    font-size: 1rem;
    line-height: 1.25;
}

body.mobile-version-body .vm-vision-popup-card p {
    margin: 0;
    color: var(--charcoal);
    font-size: 0.86rem;
    line-height: 1.62;
}

body.mobile-version-body #initiatives-section .mobile-section-title {
    color: var(--primary-orange);
}

body.mobile-version-body #initiatives-section .vm-init-subtitle {
    color: var(--deep-black);
}

body.mobile-version-body #initiatives-section .mobile-section-title {
    margin-bottom: 3px;
}

body.mobile-version-body #initiatives-section .vm-init-subtitle {
    font-size: 1rem;
    font-weight: 800;
}

body.mobile-version-body .vm-init-log-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

body.mobile-version-body .vm-init-log-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    gap: 8px;
}

body.mobile-version-body .vm-init-log-item.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-active);
}

body.mobile-version-body .vm-init-log-item span {
    color: var(--primary-orange);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.25;
}

body.mobile-version-body .vm-init-log-item.active span {
    color: var(--white);
}

body.mobile-version-body .vm-init-log-item button {
    border: none;
    background: transparent;
    color: var(--deep-black);
    text-align: left;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
}

body.mobile-version-body .vm-init-log-item.active button {
    color: var(--white);
}

body.mobile-version-body .vm-init-detail-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 16px;
}

body.mobile-version-body .vm-init-detail-card .initiative-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 18px;
    padding: 5px 11px;
    font-size: 0.68rem;
    font-weight: 800;
    margin-bottom: 10px;
}

body.mobile-version-body .vm-init-detail-card h3 {
    color: var(--deep-black);
    font-size: 1rem;
    line-height: 1.32;
    margin-bottom: 8px;
}

body.mobile-version-body .vm-init-detail-card p {
    color: var(--charcoal);
    font-size: 0.84rem;
    line-height: 1.62;
    margin-bottom: 12px;
}

body.mobile-version-body .vm-init-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px;
    background: var(--light-gray);
}

body.mobile-version-body .vm-init-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keep mobile dashboard visually aligned with the main website dashboard */
body.mobile-version-body .vm-init-dashboard {
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    padding: 1.15rem;
    background-color: #ffeede;
    margin-bottom: 16px;
}

body.mobile-version-body .vm-init-dashboard h5 {
    color: var(--deep-black);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

body.mobile-version-body .vm-init-dashboard p {
    color: #000000 !important;
    font-size: 1.1rem;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
}

body.mobile-version-body .vm-init-log-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    margin-bottom: 0;
}

body.mobile-version-body .vm-init-log-item {
    display: block;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 0;
    padding: 0.85rem 1rem;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
}

body.mobile-version-body .vm-init-log-item:hover {
    background-color: var(--light-orange);
    border-color: var(--primary-orange);
}

body.mobile-version-body .vm-init-log-item.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

body.mobile-version-body .vm-init-log-item .init-date {
    display: block;
    color: var(--primary-orange);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

body.mobile-version-body .vm-init-log-item .init-label {
    color: #000000 !important;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

body.mobile-version-body .vm-init-log-item.active .init-date,
body.mobile-version-body .vm-init-log-item.active .init-label {
    color: var(--white) !important;
}

body.mobile-version-body .vm-init-detail-card {
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    padding: 1.25rem;
    background-color: var(--white);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

body.mobile-version-body .vm-init-detail-card .initiative-badge {
    border-radius: 0;
}

body.mobile-version-body .vm-init-detail-card h3 {
    color: var(--primary-orange);
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

body.mobile-version-body .vm-init-detail-card p {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

body.mobile-version-body .vm-init-img-box {
    height: auto;
    aspect-ratio: 16 / 10;
    margin-top: 0;
    border-radius: 0;
}

/* The Sankalp popup stays over the Sankalp section inside the mobile canvas */
body.mobile-version-body .vision-section .vm-vision-popup-overlay {
    position: absolute;
    inset: 0;
    min-height: 100%;
    align-items: center;
    padding: 18px;
}

@media (max-width: 767px) {
    body.mobile-version-body .vision-section .vm-vision-popup-overlay {
        position: absolute;
    }
}

/* Mobile Bottom Tabbar & Back to main site float */
.app-bottom-bar {
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-around;
    padding: 10px 5px;
    z-index: 1000;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--muted-gray);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-bar-item.active {
    color: var(--primary-orange);
}

.bottom-bar-item i {
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.back-to-main-site {
    background-color: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.back-to-main-site:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* MOBILE CAMPAIGN VIEWPORT SIMULATOR WRAPPER & HEADER LAYOUT */
@media (min-width: 768px) {
    body.mobile-version-body {
        background-color: #0f0f12 !important;
        background-image:
            radial-gradient(circle at 10% 20%,
                rgba(230, 90, 0, 0.08) 0%,
                transparent 40%),
            radial-gradient(circle at 90% 80%,
                rgba(255, 112, 21, 0.05) 0%,
                transparent 40%) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 100vh !important;
        padding: 40px 20px !important;
    }

    body.mobile-version-body .desktop-container {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1100px;
        width: 100%;
    }

    body.mobile-version-body .info-column {
        flex: 1;
        color: var(--white);
    }

    body.mobile-version-body .info-column h1 {
        font-family: var(--font-headings);
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ff9f59, #ff7015);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    body.mobile-version-body .info-column p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #a0a0ab;
        margin-bottom: 30px;
    }

    body.mobile-version-body .info-badge {
        display: inline-block;
        background: rgba(230, 90, 0, 0.15);
        border: 1px dashed var(--secondary-orange);
        color: #ff9f59;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    body.mobile-version-body .phone-mockup {
        width: 390px;
        height: 844px;
        background-color: var(--white);
        border: 12px solid #27272a;
        border-radius: 45px;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(255, 255, 255, 0.05);
        overflow-y: auto;
        position: relative;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-orange) transparent;
    }

    body.mobile-version-body .phone-mockup::-webkit-scrollbar {
        width: 5px;
    }

    body.mobile-version-body .phone-mockup::-webkit-scrollbar-track {
        background: transparent;
    }

    body.mobile-version-body .phone-mockup::-webkit-scrollbar-thumb {
        background: var(--secondary-orange);
        border-radius: 10px;
    }

    body.mobile-version-body .phone-notch {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 25px;
        background-color: #27272a;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body.mobile-version-body .phone-notch::before {
        content: "";
        width: 40px;
        height: 4px;
        background: #111;
        border-radius: 2px;
        margin-bottom: 4px;
    }
}

@media (max-width: 767px) {
    body.mobile-version-body .desktop-container {
        width: 100%;
    }

    body.mobile-version-body .info-column {
        display: none;
    }

    body.mobile-version-body .phone-mockup {
        width: 100%;
        min-height: 100vh;
    }

    body.mobile-version-body .phone-notch {
        display: none;
    }
}

/* App Styles inside Phone Container */
body.mobile-version-body .app-header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
}

body.mobile-version-body .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--primary-orange);
    font-size: 1.45rem;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.mobile-version-body .mobile-menu-toggle .menu-close-icon {
    display: none;
}

body.mobile-version-body .mobile-menu-toggle.active .menu-open-icon {
    display: none;
}

body.mobile-version-body .mobile-menu-toggle.active .menu-close-icon {
    display: inline-block;
}

body.mobile-version-body .mobile-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2500;
    width: min(292px, calc(100vw - 28px));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background-color: #fff9d8;
    border: 1px solid #f2df91;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

body.mobile-version-body .mobile-menu-panel.active {
    display: flex;
}

body.mobile-version-body .mobile-menu-panel a {
    color: #777777;
    text-decoration: none;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

body.mobile-version-body .mobile-menu-panel a:hover {
    color: var(--primary-orange);
}

body.mobile-version-body .desktop-container .phone-mockup .app-header {
    padding-top: 30px;
    /* offset for mockup notch spacing */
}

body.mobile-version-body .app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

body.mobile-version-body .app-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    object-fit: cover;
}

body.mobile-version-body .app-logo-text h1 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--primary-orange);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

body.mobile-version-body .app-logo-text span {
    font-size: 0.65rem;
    color: var(--charcoal);
    font-weight: 600;
    display: block;
}



@media(max-width:768px) {


    .hero-pagination.swiper-pagination-horizontal {
        position: absolute !important;
        left: 50% !important;
        bottom: 20px !important;
        top: auto !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: auto !important;
    }
}

/* Toggler icon in primary orange (overrides Bootstrap default) */
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon {
    width: 28px;
    height: 20px;
    background-size: 28px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E65A00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Ensure brand text centered on small screens and scales down */
.nav-logo-text h1 {
    font-size: 1.25rem;
}
.nav-logo-text span {
    font-size: 0.75rem;
}

@media (max-width: 767px) {
    .navbar-brand .nav-logo-text h1 {
        font-size: 1.05rem;
    }
    .navbar-brand img {
        width: 44px;
        height: 44px;
    }
    .lang-selector {
        padding: 0.35rem 0.9rem;
        font-size: 0.85rem;
    }
    /* Make sure collapse menu appears below the header and does not hide brand */
    .collapse.navbar-collapse.w-100 {
        margin-top: 0.5rem;
    }
}

/* Mobile collapsed menu: full-width panel under navbar */
@media (max-width: 991px) {
    .custom-navbar .collapse.navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        padding: 0.6rem 0.8rem 1rem 0.8rem;
        z-index: 1050;
        border-top: 4px solid rgba(0,0,0,0.02);
    }

    .custom-navbar .navbar-nav {
        flex-direction: column;
        gap: 0.25rem;
        align-items: stretch;
        margin: 0;
    }

    .custom-navbar .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }

    .custom-navbar .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        display: block;
        color: var(--deep-black) !important;
        background: transparent;
    }

    /* First menu item styled as orange header like the screenshot */
    .custom-navbar .navbar-nav .nav-link:first-child {
        background: var(--primary-orange);
        color: var(--white) !important;
        font-weight: 700;
        padding: 0.6rem 1rem;
        margin-bottom: 0.35rem;
    }

    /* When menu is open, prevent body scroll for nicer UX */
    .custom-navbar.menu-open + * {
        /* nothing */
    }
}

/* Hamburger -> X toggle: when button has .open show X */
.navbar-toggler.open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E65A00' stroke-linecap='round' stroke-width='2.5' d='M6 6 L24 24 M24 6 L6 24'/%3E%3C/svg%3E");
    background-size: 28px 28px;
}

/* Ensure toggler icon keeps size when switching */
.navbar-toggler .navbar-toggler-icon {
    transition: transform 0.25s ease;
}

/* Mobile overlay dropdown-style menu (screenshot-like) */
.mobile-overlay-menu {
    position: absolute;
    top: 62px;
    left: 12px;
    width: 260px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: none;
    z-index: 1100;
}

.mobile-overlay-menu.open {
    display: block;
}

.mobile-menu-panel {
    padding: 8px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    padding: 0.45rem 0.6rem;
}

.mobile-menu-list li a {
    color: var(--deep-black);
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.mobile-menu-list li.mobile-header {
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 800;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
}

.mobile-menu-list li.mobile-subitem a {
    padding-left: 0.6rem;
    color: #2b2b2b;
    font-weight: 700;
}

/* small screens adjust placement to avoid overlapping brand */
@media (max-width: 420px) {
    .mobile-overlay-menu { left: 8px; width: 220px; }
}

/* Position language button at top-right on desktop */
@media (min-width: 992px) {
    .custom-navbar {
        position: relative;
    }
    .custom-navbar .lang-wrap {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 1200;
    }
}

/* Mandate mobile accordion styling */
.mandate-accordion .accordion-button {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    box-shadow: none;
    font-weight: 700;
}

.mandate-accordion .accordion-button::after {
    /* keep default chevron but color it */
    filter: none;
    color: var(--primary-orange);
}

.mandate-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-orange);
    color: #fff !important;
}

.mandate-accordion .accordion-item + .accordion-item {
    margin-top: 0.6rem;
}

.mandate-accordion .accordion-body {
    padding: 0.85rem 0.8rem;
    border-left: 2px solid rgba(230,90,0,0.06);
    color: var(--charcoal);
    background: #fff;
}

/* Make the header text inside button align-left and smaller subtitle style */
.mandate-accordion .module-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0,0,0,0.8);
}

.mandate-accordion .module-title-small {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 4px;
}

.mandate-accordion .accordion-button:not(.collapsed){
     color: white !important;
}