@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
    /* BJP Thematic Colors */
    --primary: #FF671F;
    /* Deep Saffron */
    --primary-dark: #E05413;
    --primary-soft: #FFF0E8;
    --secondary: #046A38;
    /* Forest Green */
    --secondary-dark: #034D28;
    --secondary-soft: #E6F3EC;

    --ink: #111827;
    --dark: #0b0f19;
    --muted: #64748b;
    --line: #eadfd6;
    --bg: #fffaf6;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.topbar {
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    padding: 9px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.topbar span {
    color: #f8fafc;
    font-weight: 700;
}

.topbar .saffron-text {
    color: #ffb071;
}

.topbar .fb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f8fafc;
    font-weight: 700;
    transition: color 0.2s ease;
}

.topbar .fb-link:hover {
    color: #ffb071;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(242, 106, 33, .16);
    transition: .3s ease;
}

.header.scrolled {
    box-shadow: 0 12px 35px rgba(17, 24, 39, .1);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

/* Updated Logo Styling */
.brand-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 10px 20px rgba(242, 106, 33, .15);
}

.brand h2 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.brand p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
    font-weight: 700;
}

.menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.menu>li {
    position: relative;
}

.menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 13px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 12px;
    transition: .25s ease;
    color: #1f2937;
}

.menu>li>a:hover {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.join-btn {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(242, 106, 33, .24);
}

.dropdown-menu {
    position: absolute;
    top: 48px;
    left: 0;
    min-width: 255px;
    background: #fff;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--ink);
    transition: .25s ease;
    font-weight: 700;
}

.dropdown-menu a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 103, 31, .15), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(4, 106, 56, .12), transparent 45%),
        linear-gradient(135deg, #ffffff, #FFF0E8);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 103, 31, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 103, 31, .06) 1px, transparent 1px);
    background-size: 44px 44px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    padding: 70px 0;
}

.badge {
    display: inline-flex;
    background: rgba(4, 106, 56, .10);
    /* Soft green */
    color: var(--primary);
    /* Green text */
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(4, 106, 56, .20);
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    color: var(--ink);
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.hero h1 strong {
    color: var(--primary);
}

.hero h3 {
    font-size: clamp(20px, 3vw, 31px);
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.hero p {
    max-width: 670px;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 900;
    transition: .25s ease;
}

.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 15px 35px rgba(242, 106, 33, .25);
}

.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary-dark);
}

.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4, 106, 56, .3);
    color: #fff;
    background: var(--secondary-dark);
}

.hero-photo-wrap {
    position: relative;
    min-height: 520px;
}

.hero-photo {
    position: absolute;
    inset: 25px 0;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(242, 106, 33, .16);
    background: #e2e8f0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .02), rgba(17, 24, 39, .28));
}

.photo-badge {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    color: var(--ink);
    padding: 15px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-weight: 950;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(242, 106, 33, .16);
}

.photo-badge small {
    display: block;
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 4px;
}

.badge-one {
    top: 0;
    left: -12px;
}

.badge-two {
    right: -12px;
    bottom: 22px;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 790px;
    margin: 0 auto 48px;
}

.eyebrow {
    color: var(--primary);
    font-weight: 950;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.section-title h2 {
    margin: 12px 0;
    color: var(--ink);
    font-size: clamp(31px, 4vw, 46px);
    letter-spacing: -1px;
}

.section-title p {
    color: #475569;
    line-height: 1.75;
    font-weight: 600;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.quick-card {
    min-height: 142px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .055);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s ease;
}

.quick-card:hover::before {
    transform: scaleX(1);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(242, 106, 33, .28);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 16px;
}

.quick-card:hover .icon {
    background: var(--primary);
    color: #fff;
}

.quick-card h3 {
    font-size: 15px;
    line-height: 1.35;
    color: var(--ink);
}

.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.about-box {
    min-height: 420px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .76), rgba(207, 79, 17, .38)),
        url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    display: flex;
    align-items: end;
    padding: 32px;
    color: #fff;
}

.about-box h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.about-text h2 {
    color: var(--ink);
    font-size: clamp(32px, 4vw, 46px);
    margin: 12px 0 18px;
}

.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 600;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.objective-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
    background: #fff;
    transition: .25s ease;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(242, 106, 33, .28);
}

.objective-card h3 {
    color: var(--ink);
    margin-bottom: 10px;
}

.objective-card p {
    color: #475569;
    line-height: 1.7;
    font-weight: 600;
}

.updates {
    background: var(--bg);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.update-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 25px;
    display: flex;
    gap: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
    transition: .25s ease;
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.date {
    min-width: 72px;
    height: 80px;
    background: var(--ink);
    color: #fff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    text-align: center;
}

.date strong {
    display: block;
    font-size: 25px;
    color: #ffb071;
}

.date span {
    color: #f8fafc;
    font-size: 13px;
}

.update-card h3 {
    color: var(--ink);
    margin-bottom: 8px;
}

.update-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 600;
}

.update-card a {
    color: var(--primary-dark);
    font-weight: 950;
}

.stats {
    padding: 75px 0;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .94), rgba(17, 24, 39, .88)),
        url("images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat {
    text-align: center;
    color: #fff;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

.stat h2 {
    font-size: 42px;
    color: #ffb071;
    margin-bottom: 8px;
}

.stat p {
    color: #f8fafc;
    font-weight: 800;
}

.office-bearers-pro {
    position: relative;
    overflow: hidden;
    padding-top: 95px;
    background:
        radial-gradient(circle at 12% 10%, rgba(242, 106, 33, .12), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fff7ef 52%, #fff 100%);
}

.office-bearers-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 106, 33, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 106, 33, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.office-bearers-pro .container {
    position: relative;
    z-index: 2;
}

.office-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
    padding: 38px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(242, 106, 33, .18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.office-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    background: rgba(242, 106, 33, .12);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.office-hero h2 {
    font-size: clamp(35px, 4.5vw, 58px);
    line-height: 1.03;
    letter-spacing: -1.6px;
    margin-bottom: 14px;
    color: var(--ink);
}

.office-hero p {
    color: #374151;
    max-width: 860px;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.8;
}

.office-badge-box {
    width: 165px;
    height: 165px;
    border-radius: 38px;
    background: var(--primary);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 24px 55px rgba(242, 106, 33, .28);
}

.office-badge-box strong {
    display: block;
    font-size: 58px;
    line-height: 1;
    font-weight: 950;
}

.office-badge-box span {
    display: block;
    font-size: 12px;
    font-weight: 950;
    margin-top: -20px;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.office-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 36px;
    padding: 14px 16px;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(242, 106, 33, .16);
    backdrop-filter: blur(18px);
    box-shadow: var(--soft-shadow);
}

.office-tab {
    border: 1px solid rgba(242, 106, 33, .22);
    background: rgba(255, 255, 255, .96);
    color: #374151;
    padding: 12px 19px;
    border-radius: 999px;
    font-weight: 950;
    cursor: pointer;
    transition: all .28s ease;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.office-tab:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    border-color: rgba(242, 106, 33, .42);
}

.office-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 38px rgba(242, 106, 33, .25);
}

.office-filter-note {
    width: fit-content;
    max-width: 92%;
    margin: -18px auto 28px;
    padding: 11px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(242, 106, 33, .18);
    color: #374151;
    font-size: 14px;
    font-weight: 850;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.bearers-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 285px));
    gap: 26px;
    justify-content: center;
    align-items: stretch;
    min-height: 420px;
}

.bearer-pro-card {
    position: relative;
    height: 395px;
    border-radius: 32px;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(242, 106, 33, .20);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .16);
    transition: transform .38s ease, box-shadow .38s ease, opacity .25s ease;
    isolation: isolate;
}

.bearer-pro-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 34px 82px rgba(242, 106, 33, .21), 0 14px 35px rgba(15, 23, 42, .18);
}

.bearer-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #111827;
}

.bearer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .55s ease, filter .35s ease;
}

.bearer-pro-card:hover .bearer-img img {
    transform: scale(1.08);
    filter: saturate(1.05) contrast(1.03);
}

.bearer-pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .56) 26%, rgba(0, 0, 0, .08) 62%, rgba(0, 0, 0, .08) 100%),
        linear-gradient(135deg, rgba(242, 106, 33, .18), transparent 44%);
    pointer-events: none;
}

.bearer-pro-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .20);
    pointer-events: none;
}

.bearer-content {
    position: absolute;
    left: 21px;
    right: 21px;
    bottom: 21px;
    z-index: 3;
    color: #fff;
}

.bearer-content span {
    display: inline-block;
    max-width: 100%;
    background: var(--primary);
    color: #fff;
    font-size: 11.5px;
    font-weight: 950;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    line-height: 1.25;
    box-shadow: 0 12px 26px rgba(242, 106, 33, .24);
}

.bearer-content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.16;
    margin-bottom: 6px;
    font-weight: 950;
    letter-spacing: -.3px;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .44);
}

.bearer-content p {
    color: #fff1e7;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .36);
}

.featured-bearer {
    border-color: rgba(242, 106, 33, .48);
    box-shadow: 0 26px 70px rgba(242, 106, 33, .18), 0 12px 32px rgba(15, 23, 42, .16);
}

.hide-bearer {
    display: none !important;
}

.filter-pop {
    animation: bearerPop .45s ease both;
}

@keyframes bearerPop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.office-list-section {
    background: #fff;
    padding-top: 20px;
}

.office-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.office-list-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--soft-shadow);
    transition: .3s ease;
}

.office-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(242, 106, 33, .25);
}

.office-list-card span {
    display: inline-block;
    color: var(--primary-dark);
    background: rgba(242, 106, 33, .10);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 12px;
}

.office-list-card h3 {
    color: var(--ink);
    font-size: 23px;
    margin-bottom: 6px;
}

.office-list-card p {
    color: #374151;
    font-size: 15.5px;
    line-height: 1.8;
    font-weight: 600;
}

.highlight-card {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.highlight-card span {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.highlight-card h3 {
    color: #fff;
}

.wide-card {
    grid-column: span 2;
}

.gallery-premium {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(242, 106, 33, .09), transparent 28%),
        linear-gradient(180deg, #fff, #fff7ef);
    overflow: hidden;
}

.gallery-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 106, 33, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 106, 33, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.gallery-premium .container {
    position: relative;
    z-index: 2;
}

.gallery-subtitle {
    color: #243044 !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
    max-width: 760px;
    margin: 14px auto 0;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(242, 106, 33, .20);
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 45px;
}

.gallery-item {
    position: relative;
    height: 260px;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(242, 106, 33, .18);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    transition: .35s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: .5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(242, 106, 33, .20);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-action {
    text-align: center;
    margin-top: 36px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 16px 35px rgba(242, 106, 33, .24);
    transition: .3s ease;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 24px 50px rgba(242, 106, 33, .30);
}

.cta {
    padding: 85px 0;
    background:
        radial-gradient(circle at top left, rgba(242, 106, 33, .18), transparent 30%),
        linear-gradient(135deg, #111827, #0b0f19);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 14px;
}

.cta p {
    color: #f8fafc;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 600;
}

.footer {
    background: #0b0f19;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 35px;
}

.footer h3,
.footer h4 {
    margin-bottom: 16px;
}

.footer p,
.footer a {
    display: block;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 7px;
    font-weight: 600;
}

.footer a:hover {
    color: #ffb071;
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #cbd5e1;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner,
    .about-grid,
    .office-hero {
        grid-template-columns: 1fr;
    }

    .hero-photo-wrap {
        min-height: 440px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-badge-box {
        width: 130px;
        height: 130px;
    }

    .office-badge-box strong {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .office-list-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: span 1;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: block;
    }

    .menu-wrap {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: .35s ease;
    }

    .menu-wrap.active {
        max-height: 720px;
        overflow-y: auto;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg);
        display: none;
        margin-bottom: 8px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .menu>li>a {
        justify-content: space-between;
    }

    .topbar .container {
        justify-content: center;
        text-align: center;
    }

    .updates-grid,
    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .office-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        border-radius: 24px;
    }

    .office-tab {
        white-space: nowrap;
    }

    .bearers-pro-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
}

@media (max-width: 620px) {

    .quick-grid,
    .objectives-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 50px 0;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-photo-wrap {
        min-height: 350px;
    }

    .photo-badge {
        font-size: 12px;
        padding: 12px 14px;
    }

    .badge-one {
        left: 0;
    }

    .badge-two {
        right: 0;
    }

    /* Updated Mobile Logo Sizing */
    .brand-logo-img {
        width: 49px;
        height: 49px;
    }

    .brand h2 {
        font-size: 19px;
    }

    .brand p {
        font-size: 12px;
    }

    .nav {
        height: 76px;
    }

    .menu-wrap {
        top: 76px;
    }

    .office-bearers-pro {
        padding-top: 70px;
    }

    .office-hero {
        padding: 24px;
        border-radius: 26px;
    }

    .bearers-pro-grid {
        grid-template-columns: 1fr;
    }

    .bearer-pro-card {
        height: 390px;
    }
}

/* -------------------------------------------------
   Flash News Ticker
   ------------------------------------------------- */
.flash-news-wrapper {
    background: var(--bg);
    padding: 18px 0;
}

.flash-news {
    display: flex;
    align-items: center;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
    border-top: 1px solid rgba(4, 106, 56, .15);
    border-bottom: 1px solid rgba(4, 106, 56, .15);
}

.flash-label {
    background: var(--primary);
    /* Saffron */
    color: #fff;
    font-weight: 900;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 5px 0 15px rgba(255, 103, 31, .2);
}

/* Fade Slider for Hero */
.fade-slider .fade-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slider .fade-slide.active {
    opacity: 1;
    z-index: 1;
}

.flash-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-content a {
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    transition: color 0.2s ease;
}

.marquee-content a:hover {
    color: var(--secondary);
    /* Green on hover */
}

.marquee-divider {
    margin: 0 20px;
    color: var(--secondary);
    font-weight: bold;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .flash-news-wrapper {
        padding: 12px 0;
    }

    .flash-label {
        padding: 10px 16px;
        font-size: 11px;
    }

    .marquee-content a {
        font-size: 13px;
    }
}

/* -------------------------------------------------
   Launch Overlay
   ------------------------------------------------- */
.launch-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: opacity 1s ease, visibility 1s ease;
}

.launch-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.launch-content {
    animation: popIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.launch-content h1 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 8px;
    font-weight: 900;
}

.launch-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 600;
}

.launch-btn {
    animation: softPulse 2s infinite;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.launch-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.time-box span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.time-box small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.9;
}

/* -------------------------------------------------
   Membership Form
   ------------------------------------------------- */


.modal-content h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #0f172a;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.1);
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Premium Micro-Animations */
@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes floatDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 103, 31, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 103, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 103, 31, 0); }
}
