/* =====================================================
   FILE PATH: public/css/About.css
   PURPOSE  : About page — complete redesign
===================================================== */

/* ── HERO ─────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, #5C1515 100%);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}
/* Decorative rings */
.about-hero::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(232,150,26,0.18);
    pointer-events: none;
}
.about-hero::after {
    content: '';
    position: absolute;
    right: 20px; top: 20px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(232,150,26,0.10);
    pointer-events: none;
}
.about-hero .section-tag {
    background: rgba(255,255,255,0.15) !important;
    color: var(--light-gold) !important;
    margin-bottom: 8px;
}
.about-hero .section-title {
    color: var(--white) !important;
    font-size: 30px;
    margin-bottom: 6px;
}
.about-hero .section-sub {
    color: rgba(255,255,255,0.70) !important;
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ── FOUNDER SECTION ──────────────────────────────── */
.about-founder-sec { padding: 0 !important; }

.founder-about-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 0;
    align-items: stretch;
}

/* LEFT photo column */
.founder-about-img-wrap {
    background: linear-gradient(160deg, #FEF0CC 0%, #FFD8A0 50%, #FFB870 100%);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}
.founder-about-img-wrap::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(200,82,10,0.10);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.founder-about-img-wrap::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(200,82,10,0.08);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

.founder-about-circle {
    width: 200px; height: 200px;
    border-radius: 50%; overflow: hidden;
    border: 5px solid var(--gold);
    margin: 0 auto 20px;
    background: var(--light-gold);
    box-shadow: 0 0 0 10px rgba(232,150,26,0.16),
                0 16px 40px rgba(122,31,31,0.20);
    position: relative; z-index: 1;
    transition: box-shadow 0.35s, transform 0.35s;
}
.founder-about-circle:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 14px rgba(232,150,26,0.22),
                0 20px 50px rgba(122,31,31,0.25);
}
.founder-about-circle img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.founder-about-circle:hover img { transform: scale(1.05); }

.founder-about-badges {
    display: flex; flex-wrap: wrap;
    gap: 7px; justify-content: center;
    position: relative; z-index: 1;
}
.fab {
    background: rgba(255,255,255,0.85);
    color: var(--maroon);
    font-size: 11px; font-weight: 800;
    padding: 5px 13px; border-radius: 20px;
    border: 1.5px solid rgba(122,31,31,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.fab:hover {
    background: var(--maroon); color: white;
    transform: translateY(-2px);
}

/* RIGHT content column */
.founder-about-content {
    padding: 40px 44px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
/* Faded logo watermark */
.founder-about-content::after {
    content: '';
    position: absolute;
    bottom: -10px; right: -10px;
    width: 160px; height: 160px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.04;
    border-radius: 50%;
    pointer-events: none;
}
.founder-about-content .section-tag   { margin-bottom: 8px; }
.founder-about-content .section-title { font-size: 26px; margin-bottom: 16px; }

.founder-about-quote {
    background: linear-gradient(135deg, #FEF0CC, #FFE080);
    border-left: 5px solid var(--gold);
    border-radius: 0 16px 16px 0;
    padding: 16px 20px;
    font-family: var(--font-marathi);
    font-size: 17px; color: var(--text-mid);
    line-height: 1.8; font-style: italic;
    margin-bottom: 18px;
    position: relative; z-index: 1;
    transition: border-color 0.2s;
    box-shadow: 0 2px 12px rgba(232,150,26,0.12);
}
.founder-about-quote:hover { border-color: var(--saffron); }

.about-para {
    font-family: var(--font-marathi);
    font-size: 14.5px; color: var(--text-mid);
    line-height: 2.1; margin-bottom: 12px;
    position: relative; z-index: 1;
}
.about-para:last-child { margin-bottom: 0; }

/* ── GHOSHVAKYA STRIP ─────────────────────────────── */
.ghoshvakya-strip {
    background: linear-gradient(90deg, var(--maroon-dark, #4A0808) 0%, var(--maroon) 50%, var(--maroon-dark, #4A0808) 100%);
    padding: 18px 24px;
    text-align: center;
    position: relative; overflow: hidden;
}
.ghoshvakya-strip::before {
    content: '';
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 220px; height: 220px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.04; border-radius: 50%; pointer-events: none;
}
.ghosh-main {
    font-family: var(--font-marathi);
    font-size: 20px; font-weight: 700;
    color: var(--light-gold);
    margin-bottom: 4px; letter-spacing: .03em;
    position: relative; z-index: 1;
}
.ghosh-sub {
    font-family: var(--font-marathi);
    font-size: 13.5px; color: rgba(255,255,255,.65);
    margin: 0; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════
   RACHANA — Stepped/Staircase Cards
   Each card has a thick colored left border + number
══════════════════════════════════════════════════ */
.rachana-section {
    background: linear-gradient(135deg, #FFF4E8 0%, #FFE4C0 100%);
    padding: 34px 0;
    position: relative; overflow: hidden;
}
.rachana-section::after {
    content: '';
    position: absolute;
    right: 2%; bottom: 5%;
    width: 220px; height: 220px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.05; border-radius: 50%; pointer-events: none;
}
.rachana-section .section-title { font-size: 26px; margin-bottom: 5px; }
.rachana-section .section-sub   { font-size: 14px; margin-bottom: 20px; }

.rachana-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative; z-index: 1;
}

.rachana-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 3px 16px rgba(122,31,31,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: none;
}
.rachana-card:hover {
    transform: translateY(-6px) translateX(2px);
    box-shadow: 0 16px 44px rgba(122,31,31,0.16);
}

/* Unique left border color per card */
.rachana-card:nth-child(1) .rc-num { background: linear-gradient(180deg, #C8520A, #7A1F1F); }
.rachana-card:nth-child(2) .rc-num { background: linear-gradient(180deg, #E8961A, #C8520A); }
.rachana-card:nth-child(3) .rc-num { background: linear-gradient(180deg, #7A1F1F, #4A0808); }
.rachana-card:nth-child(4) .rc-num { background: linear-gradient(180deg, #A03030, #7A1F1F); }

.rc-num {
    width: 60px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-marathi);
    font-size: 26px; font-weight: 700;
    color: white; flex-shrink: 0;
    border-radius: 18px 0 0 18px;
    letter-spacing: 0;
    position: relative;
}
/* Shine effect on number bar */
.rc-num::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: rgba(255,255,255,0.12);
    border-radius: 18px 0 0 0;
    pointer-events: none;
}

.rc-body {
    padding: 18px 20px;
    flex: 1;
    position: relative;
}
/* Subtle top-right decoration */
.rc-body::after {
    content: '';
    position: absolute;
    top: -10px; right: -10px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(232,150,26,0.06);
    pointer-events: none;
}
.rc-title {
    display: block;
    font-family: var(--font-marathi);
    font-size: 15px; font-weight: 700;
    color: var(--maroon); margin-bottom: 6px;
}
.rc-desc {
    font-family: var(--font-marathi);
    font-size: 13px; color: var(--text-soft);
    line-height: 1.85; margin: 0;
}

/* ══════════════════════════════════════════════════
   UDDESHA — Timeline + RIGHT PANEL with SVG
══════════════════════════════════════════════════ */
.uddesha-section {
    background: var(--white);
    padding: 34px 0;
    position: relative;
}

.uddesha-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: center;
    max-width: 1200px;
}

.uddesha-section .section-title { font-size: 26px; margin-bottom: 5px; }
.uddesha-section .section-sub   { font-size: 14px; margin-bottom: 20px; }

.uddesha-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
/* Timeline vertical line */
.uddesha-list::before {
    content: '';
    position: absolute;
    left: 17px; top: 18px; bottom: 18px;
    width: 3px;
    background: linear-gradient(180deg, var(--saffron) 0%, var(--maroon) 60%, var(--gold) 100%);
    border-radius: 3px;
}

.ud-item {
    padding: 8px 0 8px 56px;
    display: flex;
    gap: 0;
    align-items: flex-start;
    position: relative;
    transition: background 0.2s;
    border-radius: 14px;
}
.ud-item:hover {
    background: linear-gradient(90deg, rgba(200,82,10,0.04) 0%, transparent 80%);
}

/* Timeline dot */
.ud-num {
    position: absolute;
    left: 0; top: 10px;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-marathi);
    font-size: 14px; font-weight: 800;
    color: white; z-index: 2;
    flex-shrink: 0;
    transition: transform 0.25s, box-shadow 0.25s;
}
/* Unique dot color per item */
.ud-item:nth-child(1) .ud-num { background: var(--saffron); box-shadow: 0 0 0 4px rgba(200,82,10,0.15); }
.ud-item:nth-child(2) .ud-num { background: var(--maroon);  box-shadow: 0 0 0 4px rgba(122,31,31,0.15); }
.ud-item:nth-child(3) .ud-num { background: #1A6B6B;        box-shadow: 0 0 0 4px rgba(26,107,107,0.15); }
.ud-item:nth-child(4) .ud-num { background: #1A5A8A;        box-shadow: 0 0 0 4px rgba(26,90,138,0.15); }
.ud-item:nth-child(5) .ud-num { background: var(--gold);    box-shadow: 0 0 0 4px rgba(232,150,26,0.15); }

.ud-item:hover .ud-num {
    transform: scale(1.18);
}

/* Content bubble */
.ud-bubble {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ud-item:nth-child(1):hover .ud-bubble { border-color: var(--saffron); background: #FFF8F2; box-shadow: 0 4px 16px rgba(200,82,10,0.10); }
.ud-item:nth-child(2):hover .ud-bubble { border-color: var(--maroon);  background: #FFF4F4; box-shadow: 0 4px 16px rgba(122,31,31,0.10); }
.ud-item:nth-child(3):hover .ud-bubble { border-color: #1A6B6B; background: #F0FAFA; box-shadow: 0 4px 16px rgba(26,107,107,0.10); }
.ud-item:nth-child(4):hover .ud-bubble { border-color: #1A5A8A; background: #F0F4FF; box-shadow: 0 4px 16px rgba(26,90,138,0.10); }
.ud-item:nth-child(5):hover .ud-bubble { border-color: var(--gold); background: #FFFBF0; box-shadow: 0 4px 16px rgba(232,150,26,0.10); }

.ud-bubble-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 5px;
}
.ud-icon {
    font-size: 17px; color: var(--saffron);
}
.ud-item:nth-child(2) .ud-icon { color: var(--maroon); }
.ud-item:nth-child(3) .ud-icon { color: #1A6B6B; }
.ud-item:nth-child(4) .ud-icon { color: #1A5A8A; }
.ud-item:nth-child(5) .ud-icon { color: var(--gold); }

.ud-text {
    font-family: var(--font-marathi);
    font-size: 13.5px; color: var(--text-mid);
    line-height: 1.9; margin: 0;
}

/* RIGHT PANEL — decorative SVG */
.uddesha-right-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(160deg, #FFF8EE 0%, #FFE8C8 100%);
    border-radius: 24px;
    padding: 32px 24px;
    border: 2px solid var(--border);
    position: sticky;
    top: 80px;
    text-align: center;
}

.uddesha-panel-logo {
    width: 120px; height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(232,150,26,0.14);
}
.uddesha-panel-logo img { width: 100%; height: 100%; object-fit: cover; }

.uddesha-panel-title {
    font-family: var(--font-marathi);
    font-size: 15px; font-weight: 700;
    color: var(--maroon); line-height: 1.5;
}
.uddesha-panel-quote {
    font-family: var(--font-marathi);
    font-size: 12.5px; color: var(--text-soft);
    font-style: italic; line-height: 1.8;
    background: rgba(122,31,31,0.06);
    border-radius: 12px;
    padding: 10px 14px;
}

/* SVG mandala decoration */
.uddesha-mandala {
    opacity: 0.60;
}

/* Stats inside panel */
.uddesha-panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.ups-item {
    background: white;
    border-radius: 12px;
    padding: 10px 8px;
    border: 1.5px solid var(--border);
    text-align: center;
}
.ups-num {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800;
    color: var(--saffron); line-height: 1;
}
.ups-label {
    font-family: var(--font-marathi);
    font-size: 10px; color: var(--text-soft);
    margin-top: 3px;
}

/* ══════════════════════════════════════════════════
   KARYA PADDHATI — Flip-style feature cards
   Top: green gradient with large icon
   Bottom: white text
══════════════════════════════════════════════════ */
.karya-section {
    background: linear-gradient(135deg, #F0FAF0 0%, #D8F0D8 100%);
    padding: 34px 0;
    position: relative; overflow: hidden;
}
.karya-section::after {
    content: '';
    position: absolute;
    left: 2%; bottom: 5%;
    width: 200px; height: 200px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.05; border-radius: 50%; pointer-events: none;
}
.karya-section .section-title { font-size: 26px; margin-bottom: 5px; }
.karya-section .section-sub   { font-size: 14px; margin-bottom: 20px; }

.karya-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative; z-index: 1;
}

.karya-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 3px 16px rgba(20,110,20,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex; flex-direction: column;
}
.karya-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(20,110,20,0.16);
}

/* Unique gradient banner per karya card */
.karya-card:nth-child(1) .karya-icon-banner { background: linear-gradient(135deg, #E8F8E8, #A8E8A8); }
.karya-card:nth-child(2) .karya-icon-banner { background: linear-gradient(135deg, #E8F0FF, #A8C8FF); }
.karya-card:nth-child(3) .karya-icon-banner { background: linear-gradient(135deg, #FFF0E8, #FFD0A8); }
.karya-card:nth-child(4) .karya-icon-banner { background: linear-gradient(135deg, #FFF8E8, #FFE8A0); }

.karya-icon-banner {
    padding: 5px 10px 5px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.karya-icon {
    width: 52px; height: 52px;
    border-radius: 15px;
    background: rgba(255,255,255,0.65);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: transform 0.28s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.karya-card:nth-child(1) .karya-icon { color: #1A6B1A; }
.karya-card:nth-child(2) .karya-icon { color: #1A5A8A; }
.karya-card:nth-child(3) .karya-icon { color: #8A4010; }
.karya-card:nth-child(4) .karya-icon { color: #8A6800; }

.karya-card:hover .karya-icon { transform: scale(1.12) rotate(-5deg); }

.karya-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 800;
    color: rgba(0,0,0,0.10); line-height: 1;
}

.karya-body { padding: 16px 20px 20px; flex: 1; }
.karya-text {
    font-family: var(--font-marathi);
    font-size: 14px; color: var(--text-mid);
    line-height: 2; margin: 0;
}

/* ── JOIN CTA ─────────────────────────────────────── */
.section-join-cta {
    background: linear-gradient(135deg, #FEF0CC 0%, #FFD880 100%);
    padding: 40px 0;
    position: relative; overflow: hidden;
}
.section-join-cta::before {
    content: '';
    position: absolute;
    right: 4%; top: 50%;
    transform: translateY(-50%);
    width: 200px; height: 200px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.07; border-radius: 50%; pointer-events: none;
}
.section-join-cta::after {
    content: '';
    position: absolute;
    left: 4%; top: 50%;
    transform: translateY(-50%);
    width: 140px; height: 140px;
    background: url('/images/logo.jpg') center/contain no-repeat;
    opacity: 0.05; border-radius: 50%; pointer-events: none;
}
.section-join-cta .section-title { font-size: 28px; margin-bottom: 8px; }
.section-join-cta .section-sub   { font-size: 14.5px; margin-bottom: 22px; }
.section-join-cta > div { position: relative; z-index: 1; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
    .uddesha-layout { grid-template-columns: 1fr; }
    .uddesha-right-panel { position: static; }
}
@media (max-width: 768px) {
    .founder-about-grid     { grid-template-columns: 1fr; }
    .founder-about-content  { padding: 26px 20px; }
    .founder-about-img-wrap { padding: 28px 20px; }
    .founder-about-circle   { width: 160px; height: 160px; }
    .rachana-grid           { grid-template-columns: 1fr; }
    .karya-grid             { grid-template-columns: 1fr; }
    .about-hero .section-title { font-size: 24px; }
}