/* ===== VISHWANATH BHOIR — CAMPAIGN STYLE ===== */
/* Orange (#EA580C) + Navy (#0C1E3A) + White */
/* Poppins (bold campaign) + Sora (modern geometric) */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    --orange: #EA580C;
    --orange-dark: #C2410C;
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --navy: #0C1E3A;
    --navy-light: #162E52;
    --navy-50: #EFF6FF;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .15);
    --tr: .35s cubic-bezier(.4, 0, .2, 1);
    --radius: 14px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--white);
    color: var(--gray-600);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-weight: 800
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== NAVBAR — bold campaign bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 0;
    transition: var(--tr)
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(12, 30, 58, .3)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-badge {
    background: var(--orange);
    color: var(--white);
    font-family: 'Poppins';
    font-size: .65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden
}

.logo-badge::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, .1) 50%)
}

.logo-name {
    font-family: 'Poppins';
    font-size: .8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.logo-name span {
    color: var(--orange)
}

.nav-links {
    display: flex;
    gap: 0
}

.nav-links a {
    color: rgba(255, 255, 255, .4);
    font-family: 'Sora';
    font-size: .68rem;
    font-weight: 600;
    padding: 16px 12px;
    transition: var(--tr);
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px 3px 0 0
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO — bold campaign banner ===== */
.hero {
    padding: 100px 0 0;
    background: var(--navy);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 88, 12, .06), transparent 60%);
    border-radius: 50%
}

/* Diagonal stripe accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 40px, transparent 40px, transparent 48px)
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    padding-bottom: 40px;
    position: relative;
    z-index: 2
}

.hero-text {
    padding-bottom: 20px
}

.hero-text .camp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Poppins';
    font-size: .5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
    position: relative
}

.camp-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.5s ease infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.hero h1 .accent {
    color: var(--orange);
    display: block
}

.hero-desc {
    color: rgba(255, 255, 255, .3);
    font-size: .84rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 420px
}

.hero-btns {
    display: flex;
    gap: 10px
}

.hero-img {
    position: relative
}

.hero-img img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: var(--shadow-xl)
}

.hero-img .badge-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 8px;
    font-family: 'Poppins';
    font-size: .5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow-md)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 10px;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: .76rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(234, 88, 12, .2)
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, .3)
}

.btn-navy {
    background: var(--navy-light);
    color: var(--white)
}

.btn-navy:hover {
    background: var(--navy);
    transform: translateY(-2px)
}

.btn-glass {
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .06)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange)
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white)
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
    box-shadow: var(--shadow-md)
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

/* ===== SECTIONS ===== */
.section {
    padding: 56px 0
}

.sec-white {
    background: var(--white)
}

.sec-off {
    background: var(--off-white)
}

.sec-navy {
    background: var(--navy);
    color: var(--white)
}

.sec-orange {
    background: var(--orange);
    color: var(--white)
}

.sec-eyebrow {
    font-family: 'Sora';
    font-size: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--orange);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px
}

.sec-eyebrow::before {
    content: '';
    width: 18px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px
}

.sec-title {
    font-family: 'Poppins';
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 6px;
    letter-spacing: -.02em
}

.sec-desc {
    color: var(--gray-500);
    font-size: .82rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 20px
}

/* ===== PRIORITY CARDS (numbered — campaign signature) ===== */
.pri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0
}

.pri-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.pri-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange)
}

.pri-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: 'Poppins';
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(234, 88, 12, .05);
    line-height: 1
}

.pri-card .pri-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px
}

.pri-card h3 {
    font-family: 'Poppins';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 4px
}

.pri-card p {
    font-size: .74rem;
    color: var(--gray-500);
    line-height: 1.65
}

/* ===== HIGHLIGHT STRIP (campaign banner) ===== */
.camp-strip {
    background: var(--orange);
    padding: 20px 0;
    position: relative;
    overflow: hidden
}

.camp-strip::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, .04) 50%)
}

.camp-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap
}

.cs-item {
    text-align: center;
    color: var(--white)
}

.cs-item .cs-val {
    font-family: 'Poppins';
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1
}

.cs-item .cs-label {
    font-family: 'Sora';
    font-size: .52rem;
    font-weight: 600;
    opacity: .6;
    margin-top: 2px
}

/* ===== DEV HIGHLIGHT CARDS ===== */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0
}

.dev-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    border: 1px solid var(--gray-200);
    transition: var(--tr)
}

.dev-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: transparent
}

.dev-card-img {
    width: 160px;
    min-height: 160px;
    overflow: hidden;
    flex-shrink: 0
}

.dev-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.dev-card:hover .dev-card-img img {
    transform: scale(1.04)
}

.dev-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.dev-tag {
    font-family: 'Sora';
    font-size: .44rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 4px
}

.dev-card-body h3 {
    font-family: 'Poppins';
    font-size: .84rem;
    margin-bottom: 4px
}

.dev-card-body p {
    font-size: .72rem;
    color: var(--gray-500);
    line-height: 1.6
}

/* ===== EVENT CARDS (campaign schedule) ===== */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.ev-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    text-align: center
}

.ev-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--orange)
}

.ev-card .ev-date {
    font-family: 'Poppins';
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 4px
}

.ev-card .ev-date .ed {
    font-size: 1.8rem;
    line-height: 1
}

.ev-card .ev-date .em {
    font-size: .5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-400)
}

.ev-card h3 {
    font-family: 'Poppins';
    font-size: .78rem;
    font-weight: 700;
    margin: 6px 0 4px
}

.ev-card p {
    font-size: .68rem;
    color: var(--gray-500);
    line-height: 1.6
}

.ev-card .ev-loc {
    font-family: 'Sora';
    font-size: .56rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 6px
}

/* ===== VISION BOX ===== */
.vision-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px 0
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange)
}

.vision-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 88, 12, .04), transparent 60%);
    border-radius: 50%
}

.vision-box blockquote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 14px;
    position: relative;
    z-index: 2
}

.vision-box .v-author {
    font-family: 'Sora';
    font-size: .72rem;
    font-weight: 700;
    color: var(--orange)
}

.vision-box .v-sub {
    font-size: .52rem;
    color: rgba(255, 255, 255, .2)
}

/* DUO */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 24px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.duo-img img {
    width: 100%;
    height: 340px;
    object-fit: cover
}

/* DATA CARDS */
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.d-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--gray-200);
    transition: var(--tr)
}

.d-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange)
}

.d-card .ico {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.d-card h3 {
    font-family: 'Poppins';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 4px
}

.d-card p {
    font-size: .74rem;
    color: var(--gray-500);
    line-height: 1.65
}

/* CHIPS */
.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px
}

.chip {
    background: var(--orange-50);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: 6px;
    font-family: 'Sora';
    font-size: .62rem;
    font-weight: 700
}

/* PAGE HEADER */
.pg-header {
    padding: 110px 0 40px;
    background: var(--navy);
    position: relative;
    overflow: hidden
}

.pg-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 40px, transparent 40px, transparent 48px)
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -.02em
}

.pg-header h1 span {
    color: var(--orange)
}

.pg-header p {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem
}

.breadcrumb {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    font-size: .64rem
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 600
}

.breadcrumb em {
    color: rgba(255, 255, 255, .1);
    font-style: normal
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 20px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.fg label {
    font-family: 'Sora';
    font-size: .52rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--navy);
    font-family: 'Sora';
    font-size: .82rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, .04)
}

.fg textarea {
    min-height: 100px;
    resize: vertical
}

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.c-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--tr)
}

.c-card:hover {
    border-color: var(--orange)
}

.c-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.c-card h4 {
    font-family: 'Poppins';
    font-size: .76rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1px
}

.c-card p {
    color: var(--gray-500);
    font-size: .68rem;
    line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 40px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 24px
}

.footer-about h3 {
    color: var(--white);
    font-family: 'Poppins';
    font-size: .95rem;
    margin-bottom: 6px
}

.footer-about p {
    color: var(--gray-500);
    font-size: .72rem;
    line-height: 1.7
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Sora';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-links a {
    display: block;
    color: var(--gray-500);
    font-size: .68rem;
    padding: 3px 0;
    transition: var(--tr)
}

.footer-links a:hover {
    color: var(--orange)
}

.footer-contact h4 {
    color: var(--white);
    font-family: 'Sora';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-contact p {
    color: var(--gray-500);
    font-size: .68rem;
    line-height: 1.7
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 12px 0
}

.footer-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px
}

.footer-bar-left {
    color: var(--gray-600);
    font-size: .64rem
}

.footer-bar-right {
    font-size: .64rem;
    color: var(--gray-600)
}

.footer-bar-right a {
    color: var(--orange);
    font-weight: 700
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 0 0;
    margin-top: 4px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: var(--gray-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px)
}

.footer-social a svg {
    width: 13px;
    height: 13px;
    fill: currentColor
}

/* ANIMATIONS */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rvl {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s ease, transform .5s ease
}

.rvl.on {
    opacity: 1;
    transform: translateX(0)
}

.rvr {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .5s ease, transform .5s ease
}

.rvr.on {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .hero-row,
    .duo,
    .duo.flip,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .pri-grid,
    .data-grid,
    .ev-grid {
        grid-template-columns: 1fr 1fr
    }

    .dev-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 60px 24px;
        gap: 0;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .3)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .nav-links a {
        padding: 10px 0
    }

    .nav-links a.active::after {
        display: none
    }

    .pri-grid,
    .data-grid,
    .ev-grid {
        grid-template-columns: 1fr
    }

    .dev-card {
        flex-direction: column
    }

    .dev-card-img {
        width: 100%;
        min-height: 120px
    }

    .footer-bar .container {
        flex-direction: column;
        text-align: center
    }

    .camp-strip .container {
        gap: 12px
    }
}